PyQIR parses, generates and evaluates the Quantum Intermediate Representation.
Project description
PyQIR
The pyqir
package provides the ability to generate
QIR as well as an easy way to
parse and analyze QIR.
QIR generation is intended to be used by code automating translation processes enabling the conversion in some format to QIR via Python; i.e., this is a low-level API intended to be used as a bridge to existing Python frameworks enabling the generation of QIR rather than directly consumed by an end-user. It is not intended to be used as a framework for algorithm and application development.
Installation
The package is released on PyPI and can be installed via pip:
pip install pyqir
Examples
PyQIR examples can be found in this repository's examples folder.
Generation
The following code creates QIR for a Bell pair before measuring each qubit and returning the result. The unoptimized QIR is displayed in the terminal when executed:
from pyqir import BasicQisBuilder, SimpleModule
module = SimpleModule("Bell", num_qubits=2, num_results=2)
qis = BasicQisBuilder(module.builder)
qis.h(module.qubits[0])
qis.cx(module.qubits[0], module.qubits[1])
qis.mz(module.qubits[0], module.results[0])
qis.mz(module.qubits[1], module.results[1])
print(module.ir())
The QIR output will look like:
; ModuleID = 'Bell'
source_filename = "Bell"
%Qubit = type opaque
%Result = type opaque
define void @main() #0 {
entry:
call void @__quantum__qis__h__body(%Qubit* null)
call void @__quantum__qis__cnot__body(%Qubit* null, %Qubit* inttoptr (i64 1 to %Qubit*))
call void @__quantum__qis__mz__body(%Qubit* null, %Result* null)
call void @__quantum__qis__mz__body(%Qubit* inttoptr (i64 1 to %Qubit*), %Result* inttoptr (i64 1 to %Result*))
ret void
}
declare void @__quantum__qis__h__body(%Qubit*)
declare void @__quantum__qis__cnot__body(%Qubit*, %Qubit*)
declare void @__quantum__qis__mz__body(%Qubit*, %Result* writeonly) #1
attributes #0 = { "entry_point" "num_required_qubits"="2" "num_required_results"="2" "output_labeling_schema" "qir_profiles"="custom" }
attributes #1 = { "irreversible" }
!llvm.module.flags = !{!0, !1, !2, !3}
!0 = !{i32 1, !"qir_major_version", i32 1}
!1 = !{i32 7, !"qir_minor_version", i32 0}
!2 = !{i32 1, !"dynamic_qubit_management", i1 false}
!3 = !{i32 1, !"dynamic_result_management", i1 false}
Contributing
There are many ways in which you can contribute to PyQIR, whether by contributing a feature or by engaging in discussions; we value contributions in all shapes and sizes! We refer to this document for guidelines and ideas for how you can get involved.
Contributing a pull request to this repo requires to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. A CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately. Simply follow the instructions provided by the bot. You will only need to do this once.
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 Distributions
Built Distributions
Hashes for pyqir-0.8.0-cp37-abi3-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | de864c681575690e8551982df407833168fb4efb1748571df2905de76ad5c2b6 |
|
MD5 | 02a7f56e6e8bf77f1b4177d9499c5a70 |
|
BLAKE2b-256 | 4436504311426128e25364a6b04c569e24801f64981e268c97f199b6d43313a5 |
Hashes for pyqir-0.8.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad5e51c95bb712601d603910d88f9bc23b24f4d700d08b7cbf24c5c85aab5875 |
|
MD5 | 39142c433f8793df72a999a87328467b |
|
BLAKE2b-256 | baf382ab07344cc03d522ce2db342e21dc50641b2752609a14c86ad606599cf2 |
Hashes for pyqir-0.8.0-cp37-abi3-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a94c3bf093be9bc93ba056b3ed8ef2c15893b1af113c82fc3c33781f823ebb4 |
|
MD5 | d2522a39a5332d451e0643599b501a6f |
|
BLAKE2b-256 | cf13b96aa34c57dbca9992014c1dd626f5588e2ecf2dcb2f1d89467e1f35a0f8 |
Hashes for pyqir-0.8.0-cp37-abi3-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58f562e56064bc7dcc955f61464933c7dfb03e9a1fa00820c729081d84f1a9bf |
|
MD5 | c25fe7a690302cad53a83a0cfafe606d |
|
BLAKE2b-256 | c6f4e584bd009d88810a7e54c6f3ba8456a7328adf626a1e6b7d0ffa9dbcd527 |