A framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.
Project description
Cirq is a Python library for writing, manipulating, and optimizing quantum circuits and running them against quantum computers and simulators.
Installation
Follow these instructions.
Hello Qubit
A simple example to get you up and running:
import cirq
# Pick a qubit.
qubit = cirq.GridQubit(0, 0)
# Create a circuit
circuit = cirq.Circuit.from_ops(
cirq.X(qubit)**0.5, # Square root of NOT.
cirq.measure(qubit, key='m') # Measurement.
)
print("Circuit:")
print(circuit)
# Simulate the circuit several times.
simulator = cirq.Simulator()
result = simulator.run(circuit, repetitions=20)
print("Results:")
print(result)
Example output:
Circuit:
(0, 0): ───X^0.5───M('m')───
Results:
m=11000111111011001000
Documentation
Contributing
We welcome contributions. Please follow these guidelines.
We use Github issues for tracking requests and bugs. Please post questions to the Quantum Computing Stack Exchange with a ‘cirq’ tag.
See Also
For those interested in using quantum computers to solve problems in chemistry and materials science, we encourage exploring OpenFermion and its sister library for compiling quantum simulation algorithms in Cirq, OpenFermion-Cirq.
Alpha Disclaimer
Cirq is currently in alpha. We are still making breaking changes. We will break your code when we make new releases. We recommend that you target a specific version of Cirq, and periodically bump to the latest release. That way you have control over when a breaking change affects you.
Cirq is not an official Google product. Copyright 2018 The Cirq Developers
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 cirq-0.5.0.dev20190226175505-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | aea853afad5fe54e341017536d97cc87b03f19746f22a0d18e4321d81e514390 |
|
MD5 | 7faa3d63046eaa57e15dfe0f75122661 |
|
BLAKE2b-256 | 22f10502127f5645aed67a5baf3728abff55b2b07f5c2c9dbc03d12d68583ff4 |
Hashes for cirq-0.5.0.dev20190226175505-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1487ec0b8c858ea9d3333c5bdd6e2e82a3dea1ba8325e4d8662a323e0223d6fa |
|
MD5 | 6bb759ec46573bb96a47eefd00d15ac6 |
|
BLAKE2b-256 | 5ea7416bb67050a359c88dadac4abb64beb54945095527af2a4c23d18acee2d1 |