Go to file
Matthew Treinish 4f959fd61d
Switch from relative to absolute imports in root qiskit_aer (#1696)
Previously the root of the qiskit_aer we were exporing certain modules
and objects using relative imports to do this. However, the qiskit
package sets up a metaimporter to redirect imports from
qiskit.providers.aer to qiskit_aer (for backwards compatibility with the
old aer name) the source package for these relative imports can get
confused on subsequent imports if something also uses the legacy name
(which qiskit itself does on it's optional imports to aer, so that it
supports >1 version). While all the code functions correctly in this
case Python emits a warning saying the package __spec__ doesn't match
anymore. The simplest way to address these warnings is to use an
absoulte import with the package name in it so there is no ambiguity in
the source package on imports.

This commit makes that change to the root of the pacakge which fixes the
warnings. The only thing I'm not sure of is if any other relative
imports elsewhere in the qiskit_aer package will have the same problem
or if this is fixed by just updating the root package. We might need to
do further testing to check.

Fixes #1692
2023-01-18 23:48:03 +09:00
.github Add support for Python 3.11 (#1642) 2022-11-18 16:29:14 +09:00
cmake Update spdlog from 1.5.0 to 1.9.2 (#1559) 2022-07-25 08:44:38 -04:00
contrib Use more gates for AerState to call state_controller (#1643) 2022-11-30 15:40:59 +09:00
docs Bump main version to 0.12 (#1602) 2022-09-14 23:34:17 +00:00
qiskit_aer Switch from relative to absolute imports in root qiskit_aer (#1696) 2023-01-18 23:48:03 +09:00
releasenotes Fix `Sampler` with multiple classical registers (#1680) 2023-01-06 12:58:50 +00:00
src Add ECR gate support to aer simulators (#1674) 2022-12-02 21:26:38 +00:00
test Fix `Sampler` with multiple classical registers (#1680) 2023-01-06 12:58:50 +00:00
tools Add support for Python 3.11 (#1642) 2022-11-18 16:29:14 +09:00
.clang-tidy Modernizing code (#338) 2019-09-26 09:56:15 -04:00
.gitignore Move Aer to its own package (#1526) 2022-08-31 10:33:59 +09:00
.mailmap Update garrison's name in .mailmap (#1444) 2022-02-02 10:15:06 +00:00
.mergify.yml Add mergify configuration (#1518) 2022-05-10 09:26:18 -04:00
.pylintrc Move Aer to its own package (#1526) 2022-08-31 10:33:59 +09:00
.stestr.conf Switch group regex to parallel-class 2019-11-14 14:47:30 -05:00
BENCHMARKING.md Prepare for renaming default branch to main (#1233) 2021-04-28 16:15:27 -04:00
CMakeLists.txt Fix CMakeList.txt to support cmake 3.18 or later (#1613) 2022-10-05 10:32:21 +00:00
CODE_OF_CONDUCT.md Qiskit projects point to main CoC (#1049) 2020-11-18 16:41:57 -05:00
CONTRIBUTING.md Fix for save_statevector and fix for global indexing for Thrust (#1569) 2022-08-09 05:23:22 +00:00
LICENSE.txt * Added Apache 2 license 2018-08-29 13:28:45 +02:00
MANIFEST.in Move Aer to its own package (#1526) 2022-08-31 10:33:59 +09:00
README.md Update pip install command to reference qiskit-aer (#1627) 2022-10-21 06:20:44 +00:00
constraints.txt Pin jinja2 in CI (#1490) 2022-03-25 14:23:06 +00:00
pyproject.toml Add support for Python 3.11 (#1642) 2022-11-18 16:29:14 +09:00
requirements-dev.txt Add support for Python 3.11 (#1642) 2022-11-18 16:29:14 +09:00
setup.py Specify package_data explicitly (#1677) 2022-12-05 19:36:27 +00:00
tox.ini Add support for Python 3.11 (#1642) 2022-11-18 16:29:14 +09:00

README.md

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). The following command installs the core Qiskit components, including Aer.

pip install qiskit qiskit-aer

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_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