Skip to main content

Qiskit Aer - High performance simulators for Qiskit

Project description

Qiskit Aer

LicenseBuild Status

Qiskit is an open-source framework for working with noisy quantum computers at the level of pulses, circuits, and algorithms.

Qiskit is made up of elements that each work together to enable quantum computing. This element is Aer, which provides high-performance quantum computing simulators with realistic noise models.

Installation

We encourage installing Qiskit via the PIP tool (a python package manager), which installs all Qiskit elements, including this one.

pip install qiskit

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

To install from source, follow the instructions in the contribution guidelines.

Installing GPU support

In order to install and run the GPU supported simulators on Linux, you need CUDA® 10.1 or newer previously installed. CUDA® itself would require a set of specific GPU drivers. Please follow CUDA® installation procedure in the NVIDIA® web.

If you want to install our GPU supported simulators, you have to install this other package:

pip install qiskit-aer-gpu

This will overwrite your current qiskit-aer package installation giving you the same functionality found in the canonical qiskit-aer package, plus the ability to run the GPU supported simulators: statevector, density matrix, and unitary.

Note: This package is only available on x86_64 Linux. For other platforms that have CUDA support you will have to build from source. You can refer to the contributing guide for instructions on doing this.

Simulating your first quantum program with Qiskit Aer

Now that you have Qiskit Aer installed, you can start simulating quantum circuits with noise. Here is a basic example:

$ python
import qiskit
from qiskit import IBMQ
from qiskit.providers.aer import AerSimulator

# Generate 3-qubit GHZ state
circ = qiskit.QuantumCircuit(3)
circ.h(0)
circ.cx(0, 1)
circ.cx(1, 2)
circ.measure_all()

# Construct an ideal simulator
aersim = AerSimulator()

# Perform an ideal simulation
result_ideal = qiskit.execute(circ, aersim).result()
counts_ideal = result_ideal.get_counts(0)
print('Counts(ideal):', counts_ideal)
# Counts(ideal): {'000': 493, '111': 531}

# Construct a noisy simulator backend from an IBMQ backend
# This simulator backend will be automatically configured
# using the device configuration and noise model 
provider = IBMQ.load_account()
backend = provider.get_backend('ibmq_athens')
aersim_backend = AerSimulator.from_backend(backend)

# Perform noisy simulation
result_noise = qiskit.execute(circ, aersim_backend).result()
counts_noise = result_noise.get_counts(0)

print('Counts(noise):', counts_noise)
# Counts(noise): {'000': 492, '001': 6, '010': 8, '011': 14, '100': 3, '101': 14, '110': 18, '111': 469}

Contribution Guidelines

If you'd like to contribute to Qiskit, please take a look at our contribution guidelines. This project adheres to Qiskit's code of conduct. By participating, you are expect to uphold to this code.

We use GitHub issues for tracking requests and bugs. Please use our slack for discussion and simple questions. To join our Slack community use the link. For questions that are more suited for a forum we use the Qiskit tag in the Stack Exchange.

Next Steps

Now you're set up and ready to check out some of the other examples from our Qiskit IQX Tutorials or Qiskit Community Tutorials repositories.

Authors and Citation

Qiskit Aer 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.

License

Apache License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qiskit-aer-0.10.0.tar.gz (6.5 MB view hashes)

Uploaded Source

Built Distributions

qiskit_aer-0.10.0-cp39-cp39-win_amd64.whl (24.2 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

qiskit_aer-0.10.0-cp39-cp39-win32.whl (19.1 MB view hashes)

Uploaded CPython 3.9 Windows x86

qiskit_aer-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.2 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

qiskit_aer-0.10.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (18.0 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

qiskit_aer-0.10.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (15.1 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

qiskit_aer-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl (8.6 MB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

qiskit_aer-0.10.0-cp38-cp38-win_amd64.whl (24.2 MB view hashes)

Uploaded CPython 3.8 Windows x86-64

qiskit_aer-0.10.0-cp38-cp38-win32.whl (19.1 MB view hashes)

Uploaded CPython 3.8 Windows x86

qiskit_aer-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.2 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

qiskit_aer-0.10.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (18.0 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

qiskit_aer-0.10.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (15.1 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

qiskit_aer-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl (8.6 MB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

qiskit_aer-0.10.0-cp37-cp37m-win_amd64.whl (24.2 MB view hashes)

Uploaded CPython 3.7m Windows x86-64

qiskit_aer-0.10.0-cp37-cp37m-win32.whl (19.1 MB view hashes)

Uploaded CPython 3.7m Windows x86

qiskit_aer-0.10.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.2 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

qiskit_aer-0.10.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (18.0 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

qiskit_aer-0.10.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (15.1 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

qiskit_aer-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl (8.6 MB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

qiskit_aer-0.10.0-cp36-cp36m-win_amd64.whl (24.2 MB view hashes)

Uploaded CPython 3.6m Windows x86-64

qiskit_aer-0.10.0-cp36-cp36m-win32.whl (19.1 MB view hashes)

Uploaded CPython 3.6m Windows x86

qiskit_aer-0.10.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.2 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

qiskit_aer-0.10.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (18.0 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

qiskit_aer-0.10.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (15.1 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

qiskit_aer-0.10.0-cp36-cp36m-macosx_10_9_x86_64.whl (8.6 MB view hashes)

Uploaded CPython 3.6m macOS 10.9+ x86-64

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