orquestra-qiskit
is a Zapata library holding modules for integrating qiskit with Orquestra.
Even though it's intended to be used with Orquestra, orquestra-qiskit
can be also used as a Python module.
Just run pip install .
from the main directory.
orquestra-qiskit
is a Python module that exposes Qiskit's simulators as an orquestra
QuantumSimulator
. It can be imported with:
from orquestra.integrations.qiskit.simulator import QiskitSimulator
It also exposes Qiskit's quantum backends as a QiskitBackend
which implements the orquestra.quantum.api.backend.QuantumBackend
interface.
It can be imported with:
from orquestra.integrations.qiskit.backend import QiskitBackend
In addition, it also provides converters that allow switching between qiskit
circuits and those of orquestra
.
The module can be used directly in Python or in an Orquestra workflow. For more details, see the Orquestra Core docs.
For more information regarding Orquestra and resources, please refer to the Orquestra documentation.
You can find the development guidelines in the orquestra-quantum
repository.