Home

Awesome

QGL2 Compiler

Build Status Coverage Status

This is the QGL2 language compiler. QGL2 is a python-like language for programming quantum computers. It is a "low-level language" in the sense that programs directly specify gates at the physical layer, but with many of the niceties of a high-level programming language provided by the python host language.

Documentation on the QGL2 compiler and language, including current known limitations, is in doc.

Examples

For usage examples, see the sample Jupyter notebooks in the sample notebooks directory.

For code samples, see the Basic Sequences.

For an example of compiling a QGL2 program from the command-line, see the docs README.

QGL2 directly parses the Python syntax to give natural looking qubit sequences and control flow. measurement results to variables and control flow statements. For example:

@qgl2decl
def RabiAmp(qubit: qreg, amps, phase=0):
    """Variable amplitude Rabi nutation experiment."""
    for amp in amps:
        init(qubit)
        Utheta(qubit, amp=amp, phase=phase)
        MEAS(qubit)

Once a function is decorated with `@qgl2decl` it can act as the `main` for
compiling a QGL2 program. If the `RabiAmp` function is placed in a Python module
then it can be compiled with something like:

```python
from pyqgl2.main import compile_function
from pyqgl2.qreg import QRegister
import numpy as np
q = QRegister(1)
qgl1Function = compile_function(filename, "RabiAmp", (q, np.linspace(0, 1, 1), 0))

The result is a function, whose execution generates a QGL sequence.

# Run the compiled function. Note that the generated function takes no arguments itself
seq = qgl1Function()

That sequence can then be examined or compiled to hardware, as described in the QGL documentation.

QGL2 uses type annotations in function calls to mark quantum and classical values. Encapsulating subroutines makes it possible to write tidy compact code using natural pythonic iteration tools.

# multi-qubit QFT
from qgl2.qgl2 import qgl2decl, qreg, QRegister
from qgl2.qgl1 import Id, X90, Y90, X, Y, Ztheta, MEAS, CNOT

from math import pi

@qgl2decl
def hadamard(q: qreg):
    Y90(q)
    X(q)

@qgl2decl
def CZ_k(c: qreg, t: qreg, k):
    theta = 2 * pi / 2**k
    Ztheta(t, angle=theta/2)
    CNOT(c, t)
    Ztheta(t, angle=-theta/2)
    CNOT(c, t)

@qgl2decl
def qft(qs: qreg):
    for i in range(len(qs)):
        hadamard(qs[i])
        for j in range(i+1, len(qs)):
            CZ_k(qs[i], qs[j], j-i)
    MEAS(qs)

By embedding in Python, powerful metaprogramming of sequences is possible. For example process tomography on a two qubit sequence becomes a function.

@qgl2decl
def tomo(f, q1: qreg, q2: qreg):
    fncs = [Id, X90, Y90, X]
    for prep in product(fncs, fncs):
        for meas in product(fncs, fncs):
            init(q1, q2)
            for p, q in zip(prep, (q1,q2)):
                p(q)
            f(q1, q2)
            for m, q in zip(meas, (q1, q2)):
                m(q)
            for q in (q1, q2):
                MEAS(q)

Installation

Current instructions

<!-- Be sure to keep this in sync with .travis.yml and setup.py -->
config:
  AWGDir: /tmp/awg
  KernelDir: /tmp/kern
  LogDir: /tmp/alog

Dependencies

<!-- Be sure to keep this in sync with .travis.yml and setup.py -->

Sample install using Anaconda

# install anaconda python3
conda install future
conda install -c ecpy atom watchdog
pip install meta
git clone --recurse-submodules git@github.com:BBN-Q/QGL
cd QGL
pip install -e .
git lfs install
cd ..
git clone https://github.com/BBN-Q/auspex.git
cd auspex
pip install -e .
cd ..
git clone git@qiplab.bbn.com:buq-lab/pyqgl2.git

License

Apache License v2.0

Funding

This software is based in part upon work supported by the Office of the Director of National Intelligence (ODNI), Intelligence Advanced Research Projects Activity (IARPA), through the Army Research Office contract Nos. W911NF-10-1-0324 and W911NF-16-1-0114. All statements of fact, opinion or conclusions contained herein are those of the authors and should not be construed as representing the official views or policies of IARPA, the ODNI, or the U.S. Government.