Skip to content
/ pyquil Public
forked from rigetti/pyquil

A Python library for quantum programming using Quil.

License

Notifications You must be signed in to change notification settings

vlimant/pyquil

 
 

Repository files navigation

PyQuil: Quantum programming in Python

pipeline status build status docs status pypi downloads pypi version conda-forge version slack workspace

PyQuil is a Python library for quantum programming using Quil, the quantum instruction language developed at Rigetti Computing. PyQuil serves three main functions:

PyQuil has a ton of other features, which you can learn more about in the docs. However, you can also keep reading below to get started with running your first quantum program!

Installation

Please Note: PyQuil, along with quilc, the QVM, and other libraries, make up what is called the Forest SDK. To make full use of pyQuil's functionality, you will need to additionally have installed quilc and the QVM. This can be done by following their respective READMEs, or by downloading them as binaries from here.

PyQuil can be installed using conda, pip, or directly from source.

To install pyQuil as a conda package from the conda-forge channel (recommended), do the following:

conda install -c conda-forge pyquil

To instead install pyQuil as a PyPI package, do the following:

pip install pyquil

Finally, if you would prefer to install pyQuil directly from source, do the following from within the repository after cloning it:

pip install -e .

If you choose to use pip, we highly recommend installing pyQuil within a virtual environment.

Getting Started

In just a few lines, we can use pyQuil with the Forest SDK to simulate a Bell state!

from pyquil import get_qc, Program
from pyquil.gates import CNOT, H, MEASURE
 
qvm = get_qc('2q-qvm')
 
p = Program()
p += H(0)
p += CNOT(0, 1)
ro = p.declare('ro', 'BIT', 2)
p += MEASURE(0, ro[0])
p += MEASURE(1, ro[1])
p.wrap_in_numshots_loop(10)
 
qvm.run(p).tolist()

The output of the above program should look something like the following, the statistics of which are consistent with a two-qubit entangled state.

[[0, 0],
 [1, 1],
 [1, 1],
 [1, 1],
 [1, 1],
 [0, 0],
 [0, 0],
 [1, 1],
 [0, 0],
 [0, 0]]

Running on the QPU

Using the Forest SDK, you can simulate the operation of a real quantum processor. If you would like to run on the real QPUs in our lab in Berkeley, you can sign up for an account on Quantum Cloud Services!

Joining the Forest Community

Join the public Forest Slack channel at http://slack.rigetti.com.

The following projects have been contributed by community members:

Contributing to pyQuil

To make changes to PyQuil itself see DEVELOPMENT.md for instructions on development and testing.

To see a list of all the past changes, check out CHANGELOG.md.

Citing pyQuil and Forest

If you use pyQuil, Grove, or other parts of the Rigetti Forest stack in your research, please cite it as follows:

BibTeX:

@misc{1608.03355,
  title={A Practical Quantum Instruction Set Architecture},
  author={Smith, Robert S and Curtis, Michael J and Zeng, William J},
  journal={arXiv preprint arXiv:1608.03355},
  year={2016}
}

Text:

R. Smith, M. J. Curtis and W. J. Zeng, "A Practical Quantum Instruction Set Architecture," (2016), 
  arXiv:1608.03355 [quant-ph], https://arxiv.org/abs/1608.03355

License

PyQuil is licensed under the Apache License 2.0.

About

A Python library for quantum programming using Quil.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.3%
  • ANTLR 0.7%