Skip to main content

A framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.

Project description

Cirq

Cirq is a Python library for writing, manipulating, and optimizing quantum circuits and running them against quantum computers and simulators.

Build Status https://badge.fury.io/py/cirq.svg Documentation Status

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

See here or jump into the tutorial.

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

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

cirq-0.5.0.dev20190226205529-py3-none-any.whl (640.7 kB view details)

Uploaded Python 3

cirq-0.5.0.dev20190226205529-py2-none-any.whl (644.7 kB view details)

Uploaded Python 2

File details

Details for the file cirq-0.5.0.dev20190226205529-py3-none-any.whl.

File metadata

  • Download URL: cirq-0.5.0.dev20190226205529-py3-none-any.whl
  • Upload date:
  • Size: 640.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.4rc1

File hashes

Hashes for cirq-0.5.0.dev20190226205529-py3-none-any.whl
Algorithm Hash digest
SHA256 6e6bf58d84b4b83e12e8be555fc75dc0ed8d2a1af39f2748d165d197b6d12340
MD5 5f0371576622d22fbdf2d068c503a473
BLAKE2b-256 78ed7106154531d6229b25211a935c1129b0c7c89ade99ca2bc044c019b6c41a

See more details on using hashes here.

File details

Details for the file cirq-0.5.0.dev20190226205529-py2-none-any.whl.

File metadata

  • Download URL: cirq-0.5.0.dev20190226205529-py2-none-any.whl
  • Upload date:
  • Size: 644.7 kB
  • Tags: Python 2
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.4rc1

File hashes

Hashes for cirq-0.5.0.dev20190226205529-py2-none-any.whl
Algorithm Hash digest
SHA256 943ea9646231585da2c3f357ff0166c90c1dd4c9c89ee5d2ac3cd3b9eff98121
MD5 70f0a621a477e11b6c3662eff8d1cd93
BLAKE2b-256 0e4395a28435b6c9a97404f96e0914dbe0be62c5df03b9f3ac708c8ae87fb929

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page