Warning
This page is under construction. The content may be incomplete or incorrect. Submit an issue on GitHub if you need help or want to contribute.
QASM2 and its extensions
Bloqade provides a set of dialects (missing link) for QASM2 and our custom extensions to model parallel gates in neutral atom architectures.
Quick Example
When programming with QASM2, the most common usage is via the qasm2.extended
decorator, e.g the following Quantum Fourier Transform (QFT) circuit:
import math
from bloqade import qasm2
pi = math.pi
@qasm2.extended
def qft(qreg: qasm2.QReg, n: int):
if n == 0:
return qreg
qasm2.h(qreg[0])
for i in range(1, n):
qasm2.cu1(qreg[i], qreg[0], 2 * pi / 2**i)
qft(qreg, n - 1)
return qreg
While the syntax is similar to Python, the qasm2.extended
decorator actually compiles the qft
function
into lower-level intermediate representation (IR) code that can be later executed on a simulator (available via PyQrack) or a real quantum computer (not yet available).
You can inspect the initial IR code by calling the pretty printer:
qft.print()
Running simulations
The program can be executed via a simulator backend, e.g. PyQrack, you can install it via
pip install bloqade[pyqrack]
# or if you want to use the CPU only version
pip install bloqade[pyqrack-cpu]
@qasm2.extended
def main():
return qft(qasm2.qreg(3), 3)
device = PyQrack()
qreg = device.run(main)
print(qreg)
Emitting QASM2 code
You can also emit QASM2 code from the IR code:
from bloqade.qasm2.emit import QASM2 # the QASM2 target
from bloqade.qasm2.parse import pprint # the QASM2 pretty printer
target = QASM2()
ast = target.emit(main)
pprint(ast)
Understanding the compilation process
The compilation process is divided into several stages:
- Lowering: the decorator
qasm2.extended
takes Python Abstract Syntax Tree (AST) and lowers it into Kirin IR in the Static Single Assignment (SSA) form. - Interpretation: when invoking the PyQrack backend, the IR code is interpreted via Kirin's IR interpreter (missing link) with the PyQrack runtime backend.
- Target code generation: when emitting QASM2 code:
- The IR code gets aggressively inlined and all constant expressions are evaluated.
- All loops and control flow are unrolled.
- All compatible Python expressions (e.g
sin
, arithmetics) are translated into QASM2 expression. - The QASM2 code is emitted as QASM2 AST for pretty printing.
In fact, the decorator qasm2.extended
is a group of smaller dialects:
extended = structural_no_opt.union(
[
inline,
uop,
glob,
noise,
parallel,
core,
]
)
where structural_no_opt
is the base dialect group that provides the basic control flow, common Python expressions (but not all), then:
core
provides the core QASM2 operations such as register allocation, measurement and reset.uop
provides the unary operations, such as standard Pauli gates, rotation gates, etc.
The following dialects are specific to neutral atom quantum computing as an extension:
glob
provides the global gates (Rydberg specific)noise
provides the noise channelsparallel
provides the parallel gate support (Rydberg specific).inline
dialect provides the inline QASM string