Qiskit to QIR translator
Project description
qiskit-qir
Qiskit to QIR translator.
Example
from qiskit import QuantumCircuit
from qiskit_qir import to_qir_module
circuit = QuantumCircuit(3, 3, name="my-circuit")
circuit.h(0)
circuit.cx(0, 1)
circuit.cx(1, 2)
circuit.measure([0,1,2], [0, 1, 2])
module, entry_points = to_qir_module(circuit)
bitcode = module.bitcode
ir = str(module)
Installation
Install qiskit-qir
with pip
:
pip install qiskit-qir
Note: this will automatically install PyQIR if needed.
Development
Install from source
To install the package from source, clone the repo onto your machine, browse to the root directory and run
pip install -e .
Tests
First, install the development dependencies using
pip install -r requirements_dev.txt
To run the tests in your local environment, run
make test
To run the tests in virtual environments on supported Python versions, run
make test-all
Docs
To build the docs using Sphinx, run
make docs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
qiskit-qir-0.5.0.tar.gz
(33.4 kB
view details)
Built Distribution
File details
Details for the file qiskit-qir-0.5.0.tar.gz
.
File metadata
- Download URL: qiskit-qir-0.5.0.tar.gz
- Upload date:
- Size: 33.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5635837234974fdf6f1f6863231493f1fcdd571dc5283b480fe45ef69c9c86fd |
|
MD5 | b0f71dfb3ba0cc7a56ebc839643dfcef |
|
BLAKE2b-256 | 954f242d1fe01ff971895689c7fe9924e0f886df29b0bbf4f6334b013dee6ad4 |
File details
Details for the file qiskit_qir-0.5.0-py2.py3-none-any.whl
.
File metadata
- Download URL: qiskit_qir-0.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 19.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 646c924919d24562d4640973f0284d32e9e2e8c63b6352b12e98f1bce89b1e8e |
|
MD5 | 8466628ec1440326c67da7d26ff1482e |
|
BLAKE2b-256 | ebad359059ba1169a106fa9f0bfdd7068423ead0490aa313fb2361cb03116dde |