Skip to main content

An open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.

Project description

Qiskit

License Release Downloads Coverage Status PyPI - Python Version Minimum rustc 1.64.0 Downloads DOI

Qiskit is an open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.

This library is the core component of Qiskit, which contains the building blocks for creating and working with quantum circuits, quantum operators, and primitive functions (sampler and estimator). It also contains a transpiler that supports optimizing quantum circuits and a quantum information toolbox for creating advanced quantum operators.

For more details on how to use Qiskit, refer to the documentation located here:

https://docs.quantum.ibm.com/

Installation

We encourage installing Qiskit via pip:

pip install qiskit

Pip will handle all dependencies automatically and you will always install the latest (and well-tested) version.

To install from source, follow the instructions in the documentation.

Create your first quantum program in Qiskit

Now that Qiskit is installed, it's time to begin working with Qiskit. The essential parts of a quantum program are:

  1. Define and build a quantum circuit that represents the quantum state
  2. Define the classical output by measurements or a set of observable operators
  3. Depending on the output, use the primitive function sampler to sample outcomes or the estimator to estimate values.

Create an example quantum circuit using the QuantumCircuit class:

import numpy as np
from qiskit import QuantumCircuit

# 1. A quantum circuit for preparing the quantum state |000> + i |111>
qc_example = QuantumCircuit(3)
qc_example.h(0)          # generate superpostion
qc_example.p(np.pi/2,0)  # add quantum phase
qc_example.cx(0,1)       # 0th-qubit-Controlled-NOT gate on 1st qubit
qc_example.cx(0,2)       # 0th-qubit-Controlled-NOT gate on 2nd qubit

This simple example makes an entangled state known as a GHZ state $(|000\rangle + i|111\rangle)/\sqrt{2}$. It uses the standard quantum gates: Hadamard gate (h), Phase gate (p), and CNOT gate (cx).

Once you've made your first quantum circuit, choose which primitive function you will use. Starting with sampler, we use measure_all(inplace=False) to get a copy of the circuit in which all the qubits are measured:

# 2. Add the classical output in the form of measurement of all qubits
qc_measured = qc_example.measure_all(inplace=False)

# 3. Execute using the Sampler primitive
from qiskit.primitives.sampler import Sampler
sampler = Sampler()
job = sampler.run(qc_measured, shots=1000)
result = job.result()
print(f" > Quasi probability distribution: {result.quasi_dists}")

Running this will give an outcome similar to {0: 0.497, 7: 0.503} which is 000 50% of the time and 111 50% of the time up to statistical fluctuations.
To illustrate the power of Estimator, we now use the quantum information toolbox to create the operator $XXY+XYX+YXX-YYY$ and pass it to the run() function, along with our quantum circuit. Note the Estimator requires a circuit without measurement, so we use the qc_example circuit we created earlier.

# 2. define the observable to be measured 
from qiskit.quantum_info import SparsePauliOp
operator = SparsePauliOp.from_list([("XXY", 1), ("XYX", 1), ("YXX", 1), ("YYY", -1)])

# 3. Execute using the Estimator primitive
from qiskit.primitives import Estimator
estimator = Estimator()
job = estimator.run(qc_example, operator, shots=1000)
result = job.result()
print(f" > Expectation values: {result.values}")

Running this will give the outcome 4. For fun, try to assign a value of +/- 1 to each single-qubit operator X and Y and see if you can achieve this outcome. (Spoiler alert: this is not possible!)

Using the Qiskit-provided qiskit.primitives.Sampler and qiskit.primitives.Estimator will not take you very far. The power of quantum computing cannot be simulated on classical computers and you need to use real quantum hardware to scale to larger quantum circuits. However, running a quantum circuit on hardware requires rewriting them to the basis gates and connectivity of the quantum hardware. The tool that does this is the transpiler and Qiskit includes transpiler passes for synthesis, optimization, mapping, and scheduling. However, it also includes a default compiler which works very well in most examples. The following code will map the example circuit to the basis_gates = ['cz', 'sx', 'rz'] and a linear chain of qubits $0 \rightarrow 1 \rightarrow 2$ with the coupling_map =[[0, 1], [1, 2]].

from qiskit import transpile
qc_transpiled = transpile(qc_example, basis_gates = ['cz', 'sx', 'rz'], coupling_map =[[0, 1], [1, 2]] , optimization_level=3)

For further examples of using Qiskit you can look at the tutorials in the documentation here:

https://qiskit.org/documentation/tutorials.html

Executing your code on real quantum hardware

Qiskit provides an abstraction layer that lets users run quantum circuits on hardware from any vendor that provides a compatible interface. The best way to use Qiskit is with a runtime environment that provides optimized implementations of sampler and estimator for a given hardware platform. This runtime may involve using pre- and post-processing, such as optimized transpiler passes with error suppression, error mitigation, and, eventually, error correction built in. A runtime implements qiskit.primitives.BaseSampler and qiskit.primitives.BaseEstimator interfaces. For example, some packages that provide implementations of a runtime primitive implementation are:

Qiskit also provides a lower-level abstract interface for describing quantum backends. This interface, located in qiskit.providers, defines an abstract BackendV2 class that providers can implement to represent their hardware or simulators to Qiskit. The backend class includes a common interface for executing circuits on the backends; however, in this interface each provider may perform different types of pre- and post-processing and return outcomes that are vendor-defined. Some examples of published provider packages that interface with real hardware are:

You can refer to the documentation of these packages for further instructions on how to get access and use these systems.

Contribution Guidelines

If you'd like to contribute to Qiskit, please take a look at our contribution guidelines. By participating, you are expected to uphold our code of conduct.

We use GitHub issues for tracking requests and bugs. Please join the Qiskit Slack community for discussion, comments, and questions. For questions related to running or using Qiskit, Stack Overflow has a qiskit. For questions on quantum computing with Qiskit, use the qiskit tag in the Quantum Computing Stack Exchange (please, read first the guidelines on how to ask in that forum).

Authors and Citation

Qiskit is the work of many people who contribute to the project at different levels. If you use Qiskit, please cite as per the included BibTeX file.

Changelog and Release Notes

The changelog for a particular release is dynamically generated and gets written to the release page on Github for each release. For example, you can find the page for the 0.9.0 release here:

https://github.com/Qiskit/qiskit-terra/releases/tag/0.9.0

The changelog for the current release can be found in the releases tab: Releases The changelog provides a quick overview of notable changes for a given release.

Additionally, as part of each release detailed release notes are written to document in detail what has changed as part of a release. This includes any documentation on potential breaking changes on upgrade and new features. For example, you can find the release notes for the 0.9.0 release in the Qiskit documentation here:

https://qiskit.org/documentation/release_notes.html#terra-0-9

Acknowledgements

We acknowledge partial support for Qiskit development from the DOE Office of Science National Quantum Information Science Research Centers, Co-design Center for Quantum Advantage (C2QA) under contract number DE-SC0012704.

License

Apache License 2.0

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 Distribution

qiskit-1.0.0b1.tar.gz (4.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

qiskit-1.0.0b1-cp38-abi3-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.8+Windows x86-64

qiskit-1.0.0b1-cp38-abi3-win32.whl (4.5 MB view details)

Uploaded CPython 3.8+Windows x86

qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.3 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ s390x

qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

qiskit-1.0.0b1-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl (5.7 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.12+ i686manylinux: glibc 2.17+ i686

qiskit-1.0.0b1-cp38-abi3-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

qiskit-1.0.0b1-cp38-abi3-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

qiskit-1.0.0b1-cp38-abi3-macosx_10_9_universal2.whl (5.8 MB view details)

Uploaded CPython 3.8+macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file qiskit-1.0.0b1.tar.gz.

File metadata

  • Download URL: qiskit-1.0.0b1.tar.gz
  • Upload date:
  • Size: 4.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for qiskit-1.0.0b1.tar.gz
Algorithm Hash digest
SHA256 0ae9186abe5e0948cb241ab507ab84a389556417dc8d634ddae047c21c269dd2
MD5 f29a507c53f9a7e446f0680e80cc247e
BLAKE2b-256 612011732eff5e9934db4836f023f29c92e68bceb3f7de8808e74aa2074560b2

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: qiskit-1.0.0b1-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 ac32384aec50bf4cd3732f63a806708f6b45a1c4cdcd460e1ec0b93805ff99e1
MD5 2e5846fb6be48c92139d4e45f145d670
BLAKE2b-256 2e3f3f572706c56308ff5866778f93db6cf07e20179264f3446c5b6640f3bcf5

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-win32.whl.

File metadata

  • Download URL: qiskit-1.0.0b1-cp38-abi3-win32.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 2e4289cb84f6ff3ee18ce06afbfd666cebb2b493043b78c380ac20fe32dd7be6
MD5 6f0b37e9feeea3d886bb3de50faadac0
BLAKE2b-256 ea83fbfaaca064986359d1970cd8cb44b780102db6bd0cada6bbc38d97782291

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0665b891e9766216a9f21eb1e129e13b97d182545c092edf2daf5afa5914b9da
MD5 eabc3c587682928eb1885456e6a03a6c
BLAKE2b-256 0a461118233d976e69b3d5ae183d1174af0f47fc183d599a2c9c80ac67edc59c

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90270c613d2deda2d312876852d9b519ed819520e0d2326bfed8f736b0139e37
MD5 9d47bdb490f69c14a6ea8bc801879b79
BLAKE2b-256 ddc515fdcfaa974fc1b78d1df8cd2d884ab59d6bda5e749c79cad7c3a0c241fd

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5906aff1ac3b48a8e803bf195b80aeb1a2c043a20b832e3b597914c4b57c01b7
MD5 974f84ec28492b3d09819254ffe62647
BLAKE2b-256 7c79a8edd702ce89a2d182d94e6aa644cf88d1bc67130f0365f10838b8b0ab33

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23ba4116b3c448e8fee0fd154a924362a1aabf064b33a3d6a1134780af7ac263
MD5 280450d72e5e779547b68c329b228d72
BLAKE2b-256 bcabf8822ed1fb7dd8ad0bbbbfc6c633b45f4be82516a4f9e40b00e4892bc312

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76d36ae8a5a3db1a2711fb878bda9e0120ca522f48a6afec61b58a766d1ddd8a
MD5 4b3dcefbbf31b892848b5bbfe6f229d2
BLAKE2b-256 75d6db16b21fd082e47bbfb86b3c10337c96a0a5c91ac03bcf88d8a49b0b6aec

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecb3bddf1fb61c14714fd625e7461ac6a7036c979039940bb2cc6f64383fd67a
MD5 9a8b22bb79f2c7ed1b615cb11860794c
BLAKE2b-256 ed8f9aeadd19e6ed2ffb5a3cbeda7949662560ed618d08d565d3dac3d6c1645b

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5722febc669531b9330f59c13a22bcca05982261e00f2eae86aeb2b4803d41b7
MD5 d9646ec0e6874fcc03ac38245705de8a
BLAKE2b-256 23855716d19430d67365a3b45c40b2e1ef6a74ea9e4aadf29adfd8204f1fc18e

See more details on using hashes here.

File details

Details for the file qiskit-1.0.0b1-cp38-abi3-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for qiskit-1.0.0b1-cp38-abi3-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 09fc65097e3a7d6599f23ff0f6ab497f235c657799ff06efbcd74194b1460cb9
MD5 ca93ac17d18c2a366e74c09faf734fdb
BLAKE2b-256 06482fa4083827f0f98ab59a6a768a4075a057af76baa946b97f80bfb8694033

See more details on using hashes here.

Supported by

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