Coder Social home page Coder Social logo

stjordanis / pyqgl2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bbn-q/pyqgl2

1.0 3.0 0.0 1.93 MB

An imperative Quantum Gate Language (QGL) embedded in python.

License: Apache License 2.0

Jupyter Notebook 5.09% Python 94.83% Shell 0.01% Dockerfile 0.07%

pyqgl2's Introduction

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

  • Most any OS should be OK. Instructions tested on Ubuntu 18.04
  • Install git and buildessentials packages
  • git-lfs is now required: See https://git-lfs.github.com/
  • Download it & unpack and run install.sh
  • Install python 3.6; easiest done using Anaconda
  • See below for sample installation given an Anaconda install
  • You will need python 3 compatible atom (either atom 1.0.0-dev or ecpy channel atom 0.4)
  • Install QGL
  • Install QGL dependencies: cd QGL; pip install -e .
  • From within the QGL git clone, set up git lfs: <QGL>$ git lfs install
  • Add QGL to your .bashrc: export PYTHONPATH=$QHOME/QGL:$QHOME/pyqgl2/src/python
  • Then: pip install meta and pip install watchdog
  • Optional: pip install pep8 and pip install pylint
  • For typical usage, you also need Auspex
  • See install instructions at https://auspex.readthedocs.io/en/latest/
  • Download or clone, then cd auspex; pip install -e .
  • Put Auspex/src on your PYTHONPATH as in above
  • Install bbndb as well (if not installed by QGL): git clone [email protected]:BBN-Q/bbndb.git
  • Put the bbndb directory on your PYTHONPATH
  • pip install -e .
  • ?Optional: Get the BBN Adapt module as well
  • [email protected]:BBN-Q/Adapt.git
  • Put Adapt/src on your PYTHONPATH as in above
  • Create a measurement file, typically eg QHOME/test_measure.yml, containing:
config:
  AWGDir: /tmp/awg
  KernelDir: /tmp/kern
  LogDir: /tmp/alog
  • Set an environment variable to point to it in your .bashrc: export BBN_MEAS_FILE=$QHOME/test_measure.yml
  • Optional: Install coveralls (i.e. for CI)
  • Download pyqgl2 source from git (https://github.com/BBN-Q/pyqgl2)
  • Test: cd pyqgl2; python -m unittest discover. Should see 80+ tests run without errors (warnings are OK).

Dependencies

  • Working QGL installation (including networkx, numpy, scipy, bqplot, sqlalchemy)
  • Python 3.6
  • watchdog and meta
  • PYTHONPATH includes <QGL2 install directory>/src/python

Sample install using Anaconda

# install anaconda python3
conda install future
conda install -c ecpy atom watchdog
pip install meta
git clone --recurse-submodules [email protected]: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 [email protected]: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.

pyqgl2's People

Contributors

dellard avatar ahelsing avatar blakejohnson avatar caryan avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.