Skip to main content

Aer - High performance simulators for Qiskit

Project description

Aer - high performance quantum circuit simulation for Qiskit

License Build Tests

Aer is a high performance simulator for quantum circuits written in Qiskit, that includes realistic noise models.

Installation

We encourage installing Aer via the pip tool (a python package manager):

pip install 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® 11.2 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

The package above is for CUDA&reg 12, so if your system has CUDA® 11 installed, install separate package:

pip install qiskit-aer-gpu-cu11

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 Qiskit circuit with Aer

Now that you have Aer installed, you can start simulating quantum circuits using primitives and noise models. Here is a basic example:

$ python
from qiskit import transpile
from qiskit.circuit.library import RealAmplitudes
from qiskit.quantum_info import SparsePauliOp
from qiskit_aer import AerSimulator

sim = AerSimulator()
# --------------------------
# Simulating using estimator
#---------------------------
from qiskit_aer.primitives import EstimatorV2

psi1 = transpile(RealAmplitudes(num_qubits=2, reps=2), sim, optimization_level=0)
psi2 = transpile(RealAmplitudes(num_qubits=2, reps=3), sim, optimization_level=0)

H1 = SparsePauliOp.from_list([("II", 1), ("IZ", 2), ("XI", 3)])
H2 = SparsePauliOp.from_list([("IZ", 1)])
H3 = SparsePauliOp.from_list([("ZI", 1), ("ZZ", 1)])

theta1 = [0, 1, 1, 2, 3, 5]
theta2 = [0, 1, 1, 2, 3, 5, 8, 13]
theta3 = [1, 2, 3, 4, 5, 6]

estimator = EstimatorV2()

# calculate [ [<psi1(theta1)|H1|psi1(theta1)>,
#              <psi1(theta3)|H3|psi1(theta3)>],
#             [<psi2(theta2)|H2|psi2(theta2)>] ]
job = estimator.run(
    [
        (psi1, [H1, H3], [theta1, theta3]),
        (psi2, H2, theta2)
    ],
    precision=0.01
)
result = job.result()
print(f"expectation values : psi1 = {result[0].data.evs}, psi2 = {result[1].data.evs}")

# --------------------------
# Simulating using sampler
# --------------------------
from qiskit_aer.primitives import SamplerV2
from qiskit import QuantumCircuit

# create a Bell circuit
bell = QuantumCircuit(2)
bell.h(0)
bell.cx(0, 1)
bell.measure_all()

# create two parameterized circuits
pqc = RealAmplitudes(num_qubits=2, reps=2)
pqc.measure_all()
pqc = transpile(pqc, sim, optimization_level=0)
pqc2 = RealAmplitudes(num_qubits=2, reps=3)
pqc2.measure_all()
pqc2 = transpile(pqc2, sim, optimization_level=0)

theta1 = [0, 1, 1, 2, 3, 5]
theta2 = [0, 1, 2, 3, 4, 5, 6, 7]

# initialization of the sampler
sampler = SamplerV2()

# collect 128 shots from the Bell circuit
job = sampler.run([bell], shots=128)
job_result = job.result()
print(f"counts for Bell circuit : {job_result[0].data.meas.get_counts()}")
 
# run a sampler job on the parameterized circuits
job2 = sampler.run([(pqc, theta1), (pqc2, theta2)])
job_result = job2.result()
print(f"counts for parameterized circuit : {job_result[0].data.meas.get_counts()}")

# --------------------------------------------------
# Simulating with noise model from actual hardware
# --------------------------------------------------
from qiskit_ibm_runtime import QiskitRuntimeService
provider = QiskitRuntimeService(channel='ibm_quantum', token="set your own token here")
backend = provider.get_backend("ibm_kyoto")

# create sampler from the actual backend
sampler = SamplerV2.from_backend(backend)

# run a sampler job on the parameterized circuits with noise model of the actual hardware
bell_t = transpile(bell, AerSimulator(basis_gates=["ecr", "id", "rz", "sx"]), optimization_level=0)
job3 = sampler.run([bell_t], shots=128)
job_result = job3.result()
print(f"counts for Bell circuit w/noise: {job_result[0].data.meas.get_counts()}")

Contribution Guidelines

If you'd like to contribute to Aer, please take a look at our contribution guidelines. This project adheres to Qiskit's code of conduct. By participating, you are expected to uphold 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 the Aer documentation.

Authors and Citation

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.16.1.tar.gz (6.6 MB view details)

Uploaded Source

Built Distributions

qiskit_aer-0.16.1-cp313-cp313-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.13 Windows x86-64

qiskit_aer-0.16.1-cp313-cp313-win32.whl (6.9 MB view details)

Uploaded CPython 3.13 Windows x86

qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (7.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

qiskit_aer-0.16.1-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

qiskit_aer-0.16.1-cp313-cp313-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

qiskit_aer-0.16.1-cp312-cp312-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

qiskit_aer-0.16.1-cp312-cp312-win32.whl (6.9 MB view details)

Uploaded CPython 3.12 Windows x86

qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

qiskit_aer-0.16.1-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

qiskit_aer-0.16.1-cp312-cp312-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

qiskit_aer-0.16.1-cp311-cp311-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

qiskit_aer-0.16.1-cp311-cp311-win32.whl (6.9 MB view details)

Uploaded CPython 3.11 Windows x86

qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

qiskit_aer-0.16.1-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

qiskit_aer-0.16.1-cp311-cp311-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

qiskit_aer-0.16.1-cp310-cp310-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

qiskit_aer-0.16.1-cp310-cp310-win32.whl (6.9 MB view details)

Uploaded CPython 3.10 Windows x86

qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

qiskit_aer-0.16.1-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

qiskit_aer-0.16.1-cp310-cp310-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

qiskit_aer-0.16.1-cp39-cp39-win_amd64.whl (9.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

qiskit_aer-0.16.1-cp39-cp39-win32.whl (6.9 MB view details)

Uploaded CPython 3.9 Windows x86

qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (7.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

qiskit_aer-0.16.1-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

qiskit_aer-0.16.1-cp39-cp39-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

Details for the file qiskit_aer-0.16.1.tar.gz.

File metadata

  • Download URL: qiskit_aer-0.16.1.tar.gz
  • Upload date:
  • Size: 6.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for qiskit_aer-0.16.1.tar.gz
Algorithm Hash digest
SHA256 cf58dd8b32d86fc78153ebd5eebdd2ffe8a40b07105cf321b49375b0ccbd6275
MD5 f8cead98fe13af8e4afc103df2ede8a9
BLAKE2b-256 83024ebc2bc5afdc0e41815e78cbc026e2b4eaf118c7510e4ccc42b4567d2860

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1.tar.gz:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9f893c633513f1f0c9137ba5f642ee7e2ab38513e25c06b0967f5499871ff6a6
MD5 1385c20f2c4e04e6073a3b8c8ce52e61
BLAKE2b-256 4cc0fd316df941c9e568db58fd6fdab7d4b4bdc39dc76504b4ec33cb07e761b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: qiskit_aer-0.16.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for qiskit_aer-0.16.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b9eb2251fd855696fbb2e733a3a2bf50b058e71b97588ca24e4242acac1dc39f
MD5 619ee0657e31dea5901ebca3c7d8e6b4
BLAKE2b-256 e8b11fb6fd20294c05f5d9b77e9fad07193541fc30324b902180bc2e04f5c328

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp313-cp313-win32.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 301098b862d33f8176421d173d6903e22ec2339b0b1919c980e4f55aa7874298
MD5 d577ce858865423b22834ef111a6b138
BLAKE2b-256 53d06e25e6b8d89e939d24b5d3da69a33e42e5e7ddbc69b6d30fb9dee4a51b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d94b87a7c0753826d0f0376d7dd7377ee2cc45994b4b88dd2f1747c8a0aa99a
MD5 ff8bfc03f24508798cada3590b0950ff
BLAKE2b-256 2e0f8b87a56db7ad5f550d5c2776b4f91e0960045a391b7b3e6e59d871622cea

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86ea3c09fa14dbffafac29265ff161c89d0c72616822ec8c117012801fd76cff
MD5 a74e31ff34076846d3b8dc01346261e2
BLAKE2b-256 794930e95fb22cd6d351af438b01c96e61415b26b2ed9cf19e77329e29430191

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 881f79961d77ce101f6d2c18ed5b2f070ce63e6b01ee9b36b96bf2dc66acfe1b
MD5 a3b3c2ccacfeecfabed6b1a5bdff647e
BLAKE2b-256 970fcdea0383cb6613bfd79b1bdd2b11617526ffa3a19d2e386047d510b17ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 de1709d99a800b99e9fa0f49a6990cce7bdb6ce32bf1655049487b7754646196
MD5 5191e7a2beb28d260deb0b0dca5c2a4a
BLAKE2b-256 52e3a055627842c09d06a9f8f104fdbc1b8feee8a3b5b0d36efc1f096e396bb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: qiskit_aer-0.16.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for qiskit_aer-0.16.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ccc325acd4daa302293dab950850f5d6ff00404c24e47aed4134967e472c31c2
MD5 2015cd98161836109f39a45299a53204
BLAKE2b-256 fbe809332835c4d4716fe0c41fd26c5607233bab30f8ff952f9c4e2c95820688

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp312-cp312-win32.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffa2f27730ed2dd471ed73ade8f97a90c1b6f681f3d5a8e4d0c51dce855b353d
MD5 b0de6b09852261fda944cd3a7d3dea04
BLAKE2b-256 da37481851bb36837f2611dbf51df519ab8f4974adeff570944ba701b9b1a228

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d0c853b226664238aafb57f0111aa795e42732dcf1ca973b48a7cd0bb317596
MD5 04df70a96d8eb9b6b106a09c258c83ae
BLAKE2b-256 0e7ce7b721feecbcb16713176a61322e9dff7e69b65ac26aef102d2a8a471147

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6fd5a5692ac0efbb63885dca9c30ade2dc7da739f513a19ca2fbef84a366eb8
MD5 29f3a1d224b918dac67f8f9c55b83a81
BLAKE2b-256 7afadfa2969459b805b92480ace888a94414e91040343faeca952ec217dbb5c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d0d1eb71c7e276af4e7a4f98cd416559e34b3d3103a0d459c2c6a94bff42179
MD5 8a787d4941bc4c7929cd00d2cbd166c9
BLAKE2b-256 343f0db3d8eb873cf29f6987946f1de97f10f75e8b10ca3d8b25c20ba00aa167

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8783c200170789f6804ce323d696febe80293ed6dd9f748211803dbcab743aff
MD5 fb82609f51c4d3219d5d09f33ecf27bf
BLAKE2b-256 a451f8191450439943658b83dfe89a2e0f9452dd264fe47c238dd963e0e4ef46

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 966097010edf1e77f605d06100cabb013396c1f2c1f6d457f55334fb3b2cdfd9
MD5 464a1db7aacbb217d4af48b99fda66f7
BLAKE2b-256 8cfacbdca1405655d3381d7e2c02cd7ad39704eeb3bf3e0e7d25a2235308c982

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: qiskit_aer-0.16.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for qiskit_aer-0.16.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b1c18c151d87385a702459e92fd19f4d1f0c95e582ee6519d070ca8231650d2b
MD5 ca17a019b01585d0d7bd00343c46af55
BLAKE2b-256 ebc9c1535d39cd97d07720a54789d5faa50e414fad3399f59138d66bf9ef2f66

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp311-cp311-win32.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80b7c02c3d6fd48e6efa22b76c8599860bcc284eda2e74ab286abf60a1603e76
MD5 9cefa0fcca25403d7c92518f78dc89da
BLAKE2b-256 00e33c1525c65ac9c4a47656ed63667c9dfd51c3ce0f35a6e3135cfadcbeb178

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8e48505e64f29a913088a966935567429f115cf9ef91a58c2ea72beca286982
MD5 8313454ba549cc12c15c6ccce3223b47
BLAKE2b-256 c4c4b639e06bf90ee905fd8981aaebee7da5638e16b0ef60d2f7599287f518ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a896064100f0d88720af42bfc903bf26110f4eab9f84deff7269e1dabfba1f6
MD5 1495935796e408cbfd6f6ecc77ee50ba
BLAKE2b-256 0cb4b6e6401615e242951bca8424a834ea47005a8d8d9ff3de7e76bad375ef1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb77963775c70d29c4772275e485bf947f95f63ce30edbe09e3467600bae0752
MD5 822f74058f7a9e83dc251b21323b6217
BLAKE2b-256 def3a8ec687aa138441c1970fc274d09eb2d19132ced41b4ce02ed444c91a7b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a16c1ac16d129cffb4188147c1327a58119161f592bc44f4e5f74bacefe6dc4e
MD5 bc2c41de65629666eb220dd03d5627ba
BLAKE2b-256 d6a32d7fc11f37977e1ddd9776e95ada88af897422f315b5b3c763703ad206dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8a71c08221c516796e430fab452b7e7b7d0409250ab283c80c478a4b15e9cf0
MD5 893c66187e3605251abd2125e26ad852
BLAKE2b-256 701324dc1f29c6fb1c81ef7fd46c440b4ac1b4e7223d193797039ba266798bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp310-cp310-win_amd64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: qiskit_aer-0.16.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for qiskit_aer-0.16.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ba2f3bb1c4aa2b47a4275e23d1ba872fb100fa3e41a6442fb442c254f94cac5d
MD5 ba4ce66cdd8896386c854841aec103fa
BLAKE2b-256 38716e1aff51e06275d1bb672ce5b890d07c66330e80f3fb103665d8eb3c5061

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp310-cp310-win32.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4633b95ed9809c048fd1d27ba9b8a2da2bdf12a483c34a8e15ad07da570faf0
MD5 f7bdd4365e41d3772299c71e86bc6072
BLAKE2b-256 2c0b576a21923f9b1286cff449b65289a2c9c1628a030cf31d6da4a3279a9163

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 621263fa1f48aa586557991cef5da3b2cb9c9689f6b35022ea4ee3eadf98d131
MD5 53d64a02917dcac4adbfc205f24831cf
BLAKE2b-256 42876557ec9a8f459a3d981f269589fafe90f8e5727d2aeda8089861f27d07f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33b3244afea7d25b46c0eab43e6246c907de93baa59eb4fafc51655edda38025
MD5 b22f3b1c9b91a762fc09feb5cfca4333
BLAKE2b-256 b034a515be06c5d79bd96fb93b3afaaaedefb230698b8cee552c6eab88d64feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a84d7790b7f97a6a00927c900a302701bfcb41dff4dfe82f6d1812f8fe27656
MD5 cf945c6cb1f11e5e87596f1a95b37a31
BLAKE2b-256 29749d6e4e47f5352de6f6fb0addeb8b305c73b56ab1c1fb92e73aa9b98522f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f76d8fcde50b46b23a9b5c261b1234e41f4510d9fc9e41cd92c4173cd4d18752
MD5 01eb23954d03f99c4166fb9b8b401dc4
BLAKE2b-256 b69d6d297c895d51bf7cb47ad0c2807d5d883a4fb975d79a1a09aec2a119b68c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 db397e8e5eb20ec3e080b64c03b897297b6bb8130fac7f06acfdd4ca81638dc4
MD5 040727814ec07c9ecb0de38d6c386c0f
BLAKE2b-256 d98269eb3976bc46665b830eb38be5040b296411a272ec0db93b3ef51933d889

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp39-cp39-win_amd64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: qiskit_aer-0.16.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for qiskit_aer-0.16.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3a51e85b41f635cff2289d497bec02ab436e9e87725894802de10bb976b66eb3
MD5 a39b698663ad6cdd700c6cc586635155
BLAKE2b-256 96f34aeb1547b3d7f4bd3c5f9d5c80531e5582bfd654fd5129358f2b4faf2938

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp39-cp39-win32.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 274c6818b490a074e24135c19cf4a56d821b87622d93131e0c9c44846e380b5d
MD5 578aac01eb878f5f0663f679d55a90ff
BLAKE2b-256 51ba913145b0e27818864a9b9dfdcf6acf35c7051ce08c0f22c54c2a220353a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d31c8d2be2dd6bc1b10b2ae3df28a8f33b4eab6c267aada9e28f01c204911dba
MD5 de51b6b92be776cc56456c89926fcdc3
BLAKE2b-256 e0924528a4264c999f0e65709d044e9a8b82a71d092fa9c4d94b101a2da58193

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66fdba57effe8f2975afac54255a3d9cc30381efb05141145407fe5a5f1b8886
MD5 914423437e1d8801f42e8b58fd688506
BLAKE2b-256 d303324957b6f34128e987468358bee114ddba07131a0e63bc8f1bb113987afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c553e90d83586e0ef240b930eed72dfeacc139d93d4565c5863ef139de5ba57
MD5 4a331c9312e8debd1cf5489fe8b5171e
BLAKE2b-256 67e56ed56907c98a4ca617d872c483973895912e4e1d07d8802f88efc1bfdb1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qiskit_aer-0.16.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for qiskit_aer-0.16.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34418878d18b654a0c6a03477aa34d6d13dcd18774e3c24fa25443e3aa30ad26
MD5 58fcdd2bab55731dc4cf284ef91138eb
BLAKE2b-256 7f0810815f647b3f985a3fb1f3e3b53a95365a3134238cf26c83a8a0733fdea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for qiskit_aer-0.16.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: deploy.yml on Qiskit/qiskit-aer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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