qiskit-aer


Nameqiskit-aer JSON
Version 0.15.1 PyPI version JSON
download
home_pagehttps://github.com/Qiskit/qiskit-aer
SummaryAer - High performance simulators for Qiskit
upload_time2024-09-13 10:32:17
maintainerNone
docs_urlNone
authorAER Development Team
requires_python>=3.7
licenseApache 2.0
keywords qiskit simulator quantum computing backend
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Aer - high performance quantum circuit simulation for Qiskit

[![License](https://img.shields.io/github/license/Qiskit/qiskit-aer.svg?style=popout-square)](https://opensource.org/licenses/Apache-2.0)
[![Build](https://github.com/Qiskit/qiskit-aer/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/Qiskit/qiskit-aer/actions/workflows/build.yml)
[![Tests](https://github.com/Qiskit/qiskit-aer/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/Qiskit/qiskit-aer/actions/workflows/tests.yml)
[![](https://img.shields.io/github/release/Qiskit/qiskit-aer.svg?style=popout-square)](https://github.com/Qiskit/qiskit-aer/releases)
[![](https://img.shields.io/pypi/dm/qiskit-aer.svg?style=popout-square)](https://pypi.org/project/qiskit-aer/)

**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):

```bash
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](CONTRIBUTING.md).

## 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](https://www.nvidia.com/drivers).

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

```bash
pip install qiskit-aer-gpu
```

The package above is for CUDA&reg 12, so if your system has CUDA® 11 installed, install separate package:
```bash
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](CONTRIBUTING.md#building-with-gpu-support)
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
```

```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](CONTRIBUTING.md). This project adheres to Qiskit's [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.

We use [GitHub issues](https://github.com/Qiskit/qiskit-aer/issues) for tracking requests and bugs. Please use our [slack](https://qiskit.slack.com) for discussion and simple questions. To join our Slack community use the [link](https://qiskit.slack.com/join/shared_invite/zt-fybmq791-hYRopcSH6YetxycNPXgv~A#/). For questions that are more suited for a forum, we use the Qiskit tag in the [Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit).

## Next Steps

Now you're set up and ready to check out some of the other examples from the [Aer documentation](https://qiskit.github.io/qiskit-aer/).

## Authors and Citation

Aer is the work of [many people](https://github.com/Qiskit/qiskit-aer/graphs/contributors) who contribute to the project at different levels.
If you use Qiskit, please cite as per the included [BibTeX file](https://github.com/Qiskit/qiskit/blob/main/CITATION.bib).

## License

[Apache License 2.0](LICENSE.txt)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Qiskit/qiskit-aer",
    "name": "qiskit-aer",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "qiskit, simulator, quantum computing, backend",
    "author": "AER Development Team",
    "author_email": "qiskit@us.ibm.com",
    "download_url": "https://files.pythonhosted.org/packages/37/39/044e35f1da0011fe44a3b2729b347851a452fc85e701b102dbdfbbbf6bd1/qiskit-aer-0.15.1.tar.gz",
    "platform": null,
    "description": "# Aer - high performance quantum circuit simulation for Qiskit\n\n[![License](https://img.shields.io/github/license/Qiskit/qiskit-aer.svg?style=popout-square)](https://opensource.org/licenses/Apache-2.0)\n[![Build](https://github.com/Qiskit/qiskit-aer/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/Qiskit/qiskit-aer/actions/workflows/build.yml)\n[![Tests](https://github.com/Qiskit/qiskit-aer/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/Qiskit/qiskit-aer/actions/workflows/tests.yml)\n[![](https://img.shields.io/github/release/Qiskit/qiskit-aer.svg?style=popout-square)](https://github.com/Qiskit/qiskit-aer/releases)\n[![](https://img.shields.io/pypi/dm/qiskit-aer.svg?style=popout-square)](https://pypi.org/project/qiskit-aer/)\n\n**Aer** is a high performance simulator for quantum circuits written in Qiskit, that includes realistic noise models.\n\n## Installation\n\nWe encourage installing Aer via the pip tool (a python package manager):\n\n```bash\npip install qiskit-aer\n```\n\nPip will handle all dependencies automatically for us, and you will always install the latest (and well-tested) version.\n\nTo install from source, follow the instructions in the [contribution guidelines](CONTRIBUTING.md).\n\n## Installing GPU support\n\nIn order to install and run the GPU supported simulators on Linux, you need CUDA&reg; 11.2 or newer previously installed.\nCUDA&reg; itself would require a set of specific GPU drivers. Please follow CUDA&reg; installation procedure in the NVIDIA&reg; [web](https://www.nvidia.com/drivers).\n\nIf you want to install our GPU supported simulators, you have to install this other package:\n\n```bash\npip install qiskit-aer-gpu\n```\n\nThe package above is for CUDA&reg 12, so if your system has CUDA&reg; 11 installed, install separate package:\n```bash\npip install qiskit-aer-gpu-cu11\n```\n\nThis will overwrite your current `qiskit-aer` package installation giving you\nthe same functionality found in the canonical `qiskit-aer` package, plus the\nability to run the GPU supported simulators: statevector, density matrix, and unitary.\n\n**Note**: This package is only available on x86_64 Linux. For other platforms\nthat have CUDA support, you will have to build from source. You can refer to\nthe [contributing guide](CONTRIBUTING.md#building-with-gpu-support)\nfor instructions on doing this.\n\n## Simulating your first Qiskit circuit with Aer\nNow that you have Aer installed, you can start simulating quantum circuits using primitives and noise models. Here is a basic example:\n\n```\n$ python\n```\n\n```python\nfrom qiskit import transpile\nfrom qiskit.circuit.library import RealAmplitudes\nfrom qiskit.quantum_info import SparsePauliOp\nfrom qiskit_aer import AerSimulator\n\nsim = AerSimulator()\n# --------------------------\n# Simulating using estimator\n#---------------------------\nfrom qiskit_aer.primitives import EstimatorV2\n\npsi1 = transpile(RealAmplitudes(num_qubits=2, reps=2), sim, optimization_level=0)\npsi2 = transpile(RealAmplitudes(num_qubits=2, reps=3), sim, optimization_level=0)\n\nH1 = SparsePauliOp.from_list([(\"II\", 1), (\"IZ\", 2), (\"XI\", 3)])\nH2 = SparsePauliOp.from_list([(\"IZ\", 1)])\nH3 = SparsePauliOp.from_list([(\"ZI\", 1), (\"ZZ\", 1)])\n\ntheta1 = [0, 1, 1, 2, 3, 5]\ntheta2 = [0, 1, 1, 2, 3, 5, 8, 13]\ntheta3 = [1, 2, 3, 4, 5, 6]\n\nestimator = EstimatorV2()\n\n# calculate [ [<psi1(theta1)|H1|psi1(theta1)>,\n#              <psi1(theta3)|H3|psi1(theta3)>],\n#             [<psi2(theta2)|H2|psi2(theta2)>] ]\njob = estimator.run(\n    [\n        (psi1, [H1, H3], [theta1, theta3]),\n        (psi2, H2, theta2)\n    ],\n    precision=0.01\n)\nresult = job.result()\nprint(f\"expectation values : psi1 = {result[0].data.evs}, psi2 = {result[1].data.evs}\")\n\n# --------------------------\n# Simulating using sampler\n# --------------------------\nfrom qiskit_aer.primitives import SamplerV2\nfrom qiskit import QuantumCircuit\n\n# create a Bell circuit\nbell = QuantumCircuit(2)\nbell.h(0)\nbell.cx(0, 1)\nbell.measure_all()\n\n# create two parameterized circuits\npqc = RealAmplitudes(num_qubits=2, reps=2)\npqc.measure_all()\npqc = transpile(pqc, sim, optimization_level=0)\npqc2 = RealAmplitudes(num_qubits=2, reps=3)\npqc2.measure_all()\npqc2 = transpile(pqc2, sim, optimization_level=0)\n\ntheta1 = [0, 1, 1, 2, 3, 5]\ntheta2 = [0, 1, 2, 3, 4, 5, 6, 7]\n\n# initialization of the sampler\nsampler = SamplerV2()\n\n# collect 128 shots from the Bell circuit\njob = sampler.run([bell], shots=128)\njob_result = job.result()\nprint(f\"counts for Bell circuit : {job_result[0].data.meas.get_counts()}\")\n \n# run a sampler job on the parameterized circuits\njob2 = sampler.run([(pqc, theta1), (pqc2, theta2)])\njob_result = job2.result()\nprint(f\"counts for parameterized circuit : {job_result[0].data.meas.get_counts()}\")\n\n# --------------------------------------------------\n# Simulating with noise model from actual hardware\n# --------------------------------------------------\nfrom qiskit_ibm_runtime import QiskitRuntimeService\nprovider = QiskitRuntimeService(channel='ibm_quantum', token=\"set your own token here\")\nbackend = provider.get_backend(\"ibm_kyoto\")\n\n# create sampler from the actual backend\nsampler = SamplerV2.from_backend(backend)\n\n# run a sampler job on the parameterized circuits with noise model of the actual hardware\nbell_t = transpile(bell, AerSimulator(basis_gates=[\"ecr\", \"id\", \"rz\", \"sx\"]), optimization_level=0)\njob3 = sampler.run([bell_t], shots=128)\njob_result = job3.result()\nprint(f\"counts for Bell circuit w/noise: {job_result[0].data.meas.get_counts()}\")\n```\n\n## Contribution Guidelines\n\nIf you'd like to contribute to Aer, please take a look at our\n[contribution guidelines](CONTRIBUTING.md). This project adheres to Qiskit's [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.\n\nWe use [GitHub issues](https://github.com/Qiskit/qiskit-aer/issues) for tracking requests and bugs. Please use our [slack](https://qiskit.slack.com) for discussion and simple questions. To join our Slack community use the [link](https://qiskit.slack.com/join/shared_invite/zt-fybmq791-hYRopcSH6YetxycNPXgv~A#/). For questions that are more suited for a forum, we use the Qiskit tag in the [Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit).\n\n## Next Steps\n\nNow you're set up and ready to check out some of the other examples from the [Aer documentation](https://qiskit.github.io/qiskit-aer/).\n\n## Authors and Citation\n\nAer is the work of [many people](https://github.com/Qiskit/qiskit-aer/graphs/contributors) who contribute to the project at different levels.\nIf you use Qiskit, please cite as per the included [BibTeX file](https://github.com/Qiskit/qiskit/blob/main/CITATION.bib).\n\n## License\n\n[Apache License 2.0](LICENSE.txt)\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Aer - High performance simulators for Qiskit",
    "version": "0.15.1",
    "project_urls": {
        "Homepage": "https://github.com/Qiskit/qiskit-aer"
    },
    "split_keywords": [
        "qiskit",
        " simulator",
        " quantum computing",
        " backend"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "872934e5590ecb593602a75e6f07957797fd930d69d0543ad3de7fe097af70bf",
                "md5": "15aec243c68d375ed55583ece9dd0933",
                "sha256": "d8c403b4895ac3f00fe55e72473b3f4e4fbc8840f93c75d4a33da5de4230dfef"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15aec243c68d375ed55583ece9dd0933",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2468132,
            "upload_time": "2024-09-13T18:08:08",
            "upload_time_iso_8601": "2024-09-13T18:08:08.062565Z",
            "url": "https://files.pythonhosted.org/packages/87/29/34e5590ecb593602a75e6f07957797fd930d69d0543ad3de7fe097af70bf/qiskit_aer-0.15.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2e97decb0a806b7576a2b6cfb05529df40570b713870f744bea6b0c39ec2ebc",
                "md5": "2c46c7225ae2d0ad92a41807c9e285cc",
                "sha256": "0ad6cf30554cde3ae27850082c3673113385a5ee40b387557d306f35576c5d44"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2c46c7225ae2d0ad92a41807c9e285cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2155999,
            "upload_time": "2024-09-13T18:08:10",
            "upload_time_iso_8601": "2024-09-13T18:08:10.461094Z",
            "url": "https://files.pythonhosted.org/packages/b2/e9/7decb0a806b7576a2b6cfb05529df40570b713870f744bea6b0c39ec2ebc/qiskit_aer-0.15.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ab1dad4be1c1f2e23d3fafe3325164c91f13bc8f2f49816fa67773dde32bf52",
                "md5": "5c14b92686b41d2a7a1612e1055d54b1",
                "sha256": "02e2af134eb72bf3cde1fd959701655a392a53236d9bb9658278cba520a83aae"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5c14b92686b41d2a7a1612e1055d54b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6421853,
            "upload_time": "2024-09-13T19:31:05",
            "upload_time_iso_8601": "2024-09-13T19:31:05.841246Z",
            "url": "https://files.pythonhosted.org/packages/8a/b1/dad4be1c1f2e23d3fafe3325164c91f13bc8f2f49816fa67773dde32bf52/qiskit_aer-0.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebcab40163b287015cf464cf4514a3dfe14bc8f63488b57cbd8acbd8b214095d",
                "md5": "f9a9417b9a3011d8b82d8ccab8bd5d0f",
                "sha256": "5083333de4838da9436ceb76b6f964fb3184a8756561586bde03a4aa5fccf723"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f9a9417b9a3011d8b82d8ccab8bd5d0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7933314,
            "upload_time": "2024-09-13T10:31:10",
            "upload_time_iso_8601": "2024-09-13T10:31:10.313804Z",
            "url": "https://files.pythonhosted.org/packages/eb/ca/b40163b287015cf464cf4514a3dfe14bc8f63488b57cbd8acbd8b214095d/qiskit_aer-0.15.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79854422797e0097c679992422406ba73ecaa766572bae5c50750b5142be4050",
                "md5": "740dcd0ada9d698ff420eeb5ef2ede60",
                "sha256": "d42260fad7c81d71a12870f2269a959e1c782bc72ba14c85cf107d87e53a13ce"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "740dcd0ada9d698ff420eeb5ef2ede60",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7884238,
            "upload_time": "2024-09-13T08:36:36",
            "upload_time_iso_8601": "2024-09-13T08:36:36.166892Z",
            "url": "https://files.pythonhosted.org/packages/79/85/4422797e0097c679992422406ba73ecaa766572bae5c50750b5142be4050/qiskit_aer-0.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "462107222b2690dff882fe42870fabf9068f105b863a73382a6d29b9f9c46322",
                "md5": "00f8af40c417a1ca36e0778d683c30de",
                "sha256": "f07b6f937bde64cb88d037e8805cdd3b6e2985231ac7dd18f27a7af4aa653a2c"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00f8af40c417a1ca36e0778d683c30de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 12337820,
            "upload_time": "2024-09-13T10:31:12",
            "upload_time_iso_8601": "2024-09-13T10:31:12.669770Z",
            "url": "https://files.pythonhosted.org/packages/46/21/07222b2690dff882fe42870fabf9068f105b863a73382a6d29b9f9c46322/qiskit_aer-0.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e239f33c8f32a68f073c0bc3a9cb92db2066d2733ee73d361572feab5c8a2401",
                "md5": "8c384633807e6c922488e65897a341ab",
                "sha256": "354dd010928cf2f72a92a133ff906c5d173262e6d25d06bb5823d869e2fded93"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "8c384633807e6c922488e65897a341ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6895115,
            "upload_time": "2024-09-13T18:08:13",
            "upload_time_iso_8601": "2024-09-13T18:08:13.561942Z",
            "url": "https://files.pythonhosted.org/packages/e2/39/f33c8f32a68f073c0bc3a9cb92db2066d2733ee73d361572feab5c8a2401/qiskit_aer-0.15.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d74f015acab5231f6a93416dd96cb0fb316b1231044eeaa9b51cc60ca21b4d3",
                "md5": "ebb701feedcfd9a076b64bd35cfd6cb7",
                "sha256": "3d5948c3f910a3f4b7e997ce8e80ca7376715b1f3556244da0c84bd7d2e4b081"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ebb701feedcfd9a076b64bd35cfd6cb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 9516934,
            "upload_time": "2024-09-13T18:08:17",
            "upload_time_iso_8601": "2024-09-13T18:08:17.066780Z",
            "url": "https://files.pythonhosted.org/packages/8d/74/f015acab5231f6a93416dd96cb0fb316b1231044eeaa9b51cc60ca21b4d3/qiskit_aer-0.15.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5661dd66527afd727d2530e0f634e3ee7b870d753dfdd4bd70403b53c9c4fb6",
                "md5": "d9a1893c75a261115c6bbc6590c4b18d",
                "sha256": "6613f1238fba954e744a16e10c61732765541fde42f17029038d0d96b78ba6ee"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9a1893c75a261115c6bbc6590c4b18d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2469674,
            "upload_time": "2024-09-13T18:08:19",
            "upload_time_iso_8601": "2024-09-13T18:08:19.504023Z",
            "url": "https://files.pythonhosted.org/packages/a5/66/1dd66527afd727d2530e0f634e3ee7b870d753dfdd4bd70403b53c9c4fb6/qiskit_aer-0.15.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b7cddb8380c58bbcc56a4fd9e427532885ce49dbb95ecd3d044bdf98ee536fa",
                "md5": "a7f89dfd77298419dcd3265ee6ddd0ca",
                "sha256": "83198f4a7b9949008297675725e9fec01ba47e9d7eec3f755c3eb720aaf78932"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a7f89dfd77298419dcd3265ee6ddd0ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2157425,
            "upload_time": "2024-09-13T18:08:21",
            "upload_time_iso_8601": "2024-09-13T18:08:21.654411Z",
            "url": "https://files.pythonhosted.org/packages/0b/7c/ddb8380c58bbcc56a4fd9e427532885ce49dbb95ecd3d044bdf98ee536fa/qiskit_aer-0.15.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c320546057cdc043c25ea87e30219ec281ca2f43723ca9f5b8c21fd71e74760",
                "md5": "30b2a36274f480a7aed42991cafb4151",
                "sha256": "196c8de494ff26195ef6fb40f5c9672b6281ab3fd768dc1f1866e7b3968c4d98"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "30b2a36274f480a7aed42991cafb4151",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6424933,
            "upload_time": "2024-09-13T19:31:08",
            "upload_time_iso_8601": "2024-09-13T19:31:08.302175Z",
            "url": "https://files.pythonhosted.org/packages/2c/32/0546057cdc043c25ea87e30219ec281ca2f43723ca9f5b8c21fd71e74760/qiskit_aer-0.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "358a773e0b32d008fd47ee68a2cb20afa3bd4c280826b79d749418b37f975fb8",
                "md5": "95d7cb4bcdf3a2124ba6aca4986d504b",
                "sha256": "334f8b323dd06793b11ad8aa8c7bcd56819e696017ce421db3cdc3c48f9da53e"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "95d7cb4bcdf3a2124ba6aca4986d504b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7933205,
            "upload_time": "2024-09-13T10:31:14",
            "upload_time_iso_8601": "2024-09-13T10:31:14.898387Z",
            "url": "https://files.pythonhosted.org/packages/35/8a/773e0b32d008fd47ee68a2cb20afa3bd4c280826b79d749418b37f975fb8/qiskit_aer-0.15.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ade7625f792de490e14084ddae7e4be06c41127526328728b41e5b72b40d161a",
                "md5": "491702af5e943fdead3e757b2af83401",
                "sha256": "a4cb7d606808d7b437b783d1d9ded20063ce86e463736b7d6201a93caccf050e"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "491702af5e943fdead3e757b2af83401",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7885508,
            "upload_time": "2024-09-13T08:36:38",
            "upload_time_iso_8601": "2024-09-13T08:36:38.331155Z",
            "url": "https://files.pythonhosted.org/packages/ad/e7/625f792de490e14084ddae7e4be06c41127526328728b41e5b72b40d161a/qiskit_aer-0.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c617cb8571a1f767e08511617c8e2ffc8284b1e512a3081807bea54772e58bc",
                "md5": "045ad15520c7e0d287a97a5066fa8b22",
                "sha256": "aabe19cfe9a93b76801da31e81b12671a301e0873d7eaf077d06c92e11394136"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "045ad15520c7e0d287a97a5066fa8b22",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 12337954,
            "upload_time": "2024-09-13T10:31:17",
            "upload_time_iso_8601": "2024-09-13T10:31:17.961146Z",
            "url": "https://files.pythonhosted.org/packages/0c/61/7cb8571a1f767e08511617c8e2ffc8284b1e512a3081807bea54772e58bc/qiskit_aer-0.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9bbf714b936b3556ad64be962ffd610cc42547befc3d26dfca352db8ebd77f6",
                "md5": "83fa9e2ef8d1009ce41794a86924ee9a",
                "sha256": "601ee3ad01a2aeef489f146ed0baf62965465b47324786ba88d80a1293740ac2"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "83fa9e2ef8d1009ce41794a86924ee9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6896059,
            "upload_time": "2024-09-13T18:08:23",
            "upload_time_iso_8601": "2024-09-13T18:08:23.912706Z",
            "url": "https://files.pythonhosted.org/packages/f9/bb/f714b936b3556ad64be962ffd610cc42547befc3d26dfca352db8ebd77f6/qiskit_aer-0.15.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a34af40f4655010b104e4e98a89f13e960fb6f02f2b2ceb6ecf73762bce86d22",
                "md5": "defd4f995e06b7b7aaf7ca658808e73b",
                "sha256": "8d8685f23b844352a3f8f2991adaba91a43515e8883cd1cbdc654b4c61d104a9"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "defd4f995e06b7b7aaf7ca658808e73b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 9517615,
            "upload_time": "2024-09-13T18:08:27",
            "upload_time_iso_8601": "2024-09-13T18:08:27.329053Z",
            "url": "https://files.pythonhosted.org/packages/a3/4a/f40f4655010b104e4e98a89f13e960fb6f02f2b2ceb6ecf73762bce86d22/qiskit_aer-0.15.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fe6f2611ada4690bacac3073873865d29eed15244d4f4a76c44a5da3855ac3d",
                "md5": "d6eccfaa68a1d065cf0256ef85680762",
                "sha256": "df16643006cf25a1ed477a120b6146859f09e8dee09ca720befb3a1febee9546"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6eccfaa68a1d065cf0256ef85680762",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2475586,
            "upload_time": "2024-09-13T18:08:29",
            "upload_time_iso_8601": "2024-09-13T18:08:29.754435Z",
            "url": "https://files.pythonhosted.org/packages/9f/e6/f2611ada4690bacac3073873865d29eed15244d4f4a76c44a5da3855ac3d/qiskit_aer-0.15.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e45f35bc0971f7333cfeed6e28dc53d1c8a371f2177474176ce1c9585fa6d7d",
                "md5": "270dbfeb6f6f08460d91ff74dd4dd07a",
                "sha256": "1d22c96bae21dbe4b97c30785ead2c2b53f897938da49bca6b4ef29d187765a6"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "270dbfeb6f6f08460d91ff74dd4dd07a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2158945,
            "upload_time": "2024-09-13T18:08:31",
            "upload_time_iso_8601": "2024-09-13T18:08:31.760436Z",
            "url": "https://files.pythonhosted.org/packages/7e/45/f35bc0971f7333cfeed6e28dc53d1c8a371f2177474176ce1c9585fa6d7d/qiskit_aer-0.15.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cc0c418189d92f92e713d6e096b9b5ead3b49d956465e7a952795b1763a80b3",
                "md5": "1b08ee8651c5d69b54120bed4fc47c96",
                "sha256": "1288fd5c36235f5fedfc228956049e87bdd804cbc2b3a487a4453d9e7e72f420"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b08ee8651c5d69b54120bed4fc47c96",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6420353,
            "upload_time": "2024-09-13T19:31:10",
            "upload_time_iso_8601": "2024-09-13T19:31:10.706623Z",
            "url": "https://files.pythonhosted.org/packages/9c/c0/c418189d92f92e713d6e096b9b5ead3b49d956465e7a952795b1763a80b3/qiskit_aer-0.15.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9992fde09045179e7a5e2bae4185f311fde9ab9ef843440ff4bc69742de59a86",
                "md5": "9d44706d82578f1f87a7c9d07632edcf",
                "sha256": "ca0783607942c724329172e21b53354c9d569420e02dbfd06c407ed588833cf6"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9d44706d82578f1f87a7c9d07632edcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 7939163,
            "upload_time": "2024-09-13T10:31:20",
            "upload_time_iso_8601": "2024-09-13T10:31:20.235333Z",
            "url": "https://files.pythonhosted.org/packages/99/92/fde09045179e7a5e2bae4185f311fde9ab9ef843440ff4bc69742de59a86/qiskit_aer-0.15.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caa7baa91866f9468322ec212508dd5629f15a08a374800dfb75dc25ae409590",
                "md5": "31a1409952d3ca1091f9ecbbbbf46c54",
                "sha256": "cbad79290e4b850dca163b7960769a1a8db6d44abf232ecf0a6ce88740c83ab9"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "31a1409952d3ca1091f9ecbbbbf46c54",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 7887094,
            "upload_time": "2024-09-13T08:36:41",
            "upload_time_iso_8601": "2024-09-13T08:36:41.057929Z",
            "url": "https://files.pythonhosted.org/packages/ca/a7/baa91866f9468322ec212508dd5629f15a08a374800dfb75dc25ae409590/qiskit_aer-0.15.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80ae85e51a211b387af4cb7526fac6e7850ec1a7f674e4a16ba623c46dbc61ac",
                "md5": "eda1c78b5c520a9b68adfe9bbfaa4ef4",
                "sha256": "f2257b4828df8cb3f37e153c220cd72f54a81d89875711efbc3ac2f265e0ae4a"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eda1c78b5c520a9b68adfe9bbfaa4ef4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 12339245,
            "upload_time": "2024-09-13T10:31:22",
            "upload_time_iso_8601": "2024-09-13T10:31:22.773574Z",
            "url": "https://files.pythonhosted.org/packages/80/ae/85e51a211b387af4cb7526fac6e7850ec1a7f674e4a16ba623c46dbc61ac/qiskit_aer-0.15.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ab4b171b94f276ca8a853a0fc1acb38515936ca55d09e2118b90c1a9b839fdf",
                "md5": "f42ea75d0c63d1116b05c42c6b38ca5a",
                "sha256": "0f8a3f97f1bbeabb7d229879f7a0b6b8709f864fbc13ae78ec1569a65033ea3b"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "f42ea75d0c63d1116b05c42c6b38ca5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6896779,
            "upload_time": "2024-09-13T18:08:34",
            "upload_time_iso_8601": "2024-09-13T18:08:34.248962Z",
            "url": "https://files.pythonhosted.org/packages/1a/b4/b171b94f276ca8a853a0fc1acb38515936ca55d09e2118b90c1a9b839fdf/qiskit_aer-0.15.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7eb284cedc9cdeecd139939db70cf875806ca5df977d5af21e6fa09f1d82a8e",
                "md5": "a4aa49bee3783ebb6b716f04ef2bd5be",
                "sha256": "af6501808b584b764e959af7a1edb2ef890c9a78f1ce418921dbdf6fd09ce0fc"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a4aa49bee3783ebb6b716f04ef2bd5be",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 9519513,
            "upload_time": "2024-09-13T18:08:37",
            "upload_time_iso_8601": "2024-09-13T18:08:37.774399Z",
            "url": "https://files.pythonhosted.org/packages/a7/eb/284cedc9cdeecd139939db70cf875806ca5df977d5af21e6fa09f1d82a8e/qiskit_aer-0.15.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57458c2cbf7acd52cad93c0eebf1477bebf655052c87d696eee820dbe59cd409",
                "md5": "d2d26533ecda9f7227892af0a1b85047",
                "sha256": "adf939bfd5997043ce9910ffe9025b471f535df961ec58cf3de1627c6937eb2b"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2d26533ecda9f7227892af0a1b85047",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2467788,
            "upload_time": "2024-09-13T18:08:41",
            "upload_time_iso_8601": "2024-09-13T18:08:41.039136Z",
            "url": "https://files.pythonhosted.org/packages/57/45/8c2cbf7acd52cad93c0eebf1477bebf655052c87d696eee820dbe59cd409/qiskit_aer-0.15.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a7a1a8df7204c0688c3a56c7a19f083b64cbacbbcc1f5cbb3d674ebab1b2587",
                "md5": "aab34e755ec102017f3fc16d814be963",
                "sha256": "1d3442bd809ca825a3f94d39ec0a3a2d2b32518c20dba4b80d365aebbee455b8"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aab34e755ec102017f3fc16d814be963",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6420131,
            "upload_time": "2024-09-13T19:31:12",
            "upload_time_iso_8601": "2024-09-13T19:31:12.509767Z",
            "url": "https://files.pythonhosted.org/packages/8a/7a/1a8df7204c0688c3a56c7a19f083b64cbacbbcc1f5cbb3d674ebab1b2587/qiskit_aer-0.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4cc4e18dc50d7616f0452619df7ee90fac5672e766733fdadd7194ca4c9440d",
                "md5": "9af547529b11934d565f1ff2d07c1682",
                "sha256": "d346e8ee8df20fafb60158e843fac3c86f5b427ae5fc2fbfac9d48f99374abeb"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9af547529b11934d565f1ff2d07c1682",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7933254,
            "upload_time": "2024-09-13T10:31:25",
            "upload_time_iso_8601": "2024-09-13T10:31:25.038705Z",
            "url": "https://files.pythonhosted.org/packages/c4/cc/4e18dc50d7616f0452619df7ee90fac5672e766733fdadd7194ca4c9440d/qiskit_aer-0.15.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05442c74deab63c8230fff48b019829d7391ee3658e00544a745e3d1551015a2",
                "md5": "f66586bffa7a4efdc6a4d08db1290bcf",
                "sha256": "1ff845bc0fd290e5ea931fc0f359016cc1a31de6cf5bc21618968db8f8c7b295"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f66586bffa7a4efdc6a4d08db1290bcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7881807,
            "upload_time": "2024-09-13T08:36:42",
            "upload_time_iso_8601": "2024-09-13T08:36:42.755968Z",
            "url": "https://files.pythonhosted.org/packages/05/44/2c74deab63c8230fff48b019829d7391ee3658e00544a745e3d1551015a2/qiskit_aer-0.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afd064afb3a72227eaf93922a4709870bcbfca63ff3a0d019ebf61c20d626755",
                "md5": "fb01f1462b6a9bfd7008504a8da0122e",
                "sha256": "91fbcdf34aa2dccc4424c7a3cae609b8b11cb6ee31bff33f4b54fd05f36d2f00"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb01f1462b6a9bfd7008504a8da0122e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 12337935,
            "upload_time": "2024-09-13T10:31:26",
            "upload_time_iso_8601": "2024-09-13T10:31:26.889877Z",
            "url": "https://files.pythonhosted.org/packages/af/d0/64afb3a72227eaf93922a4709870bcbfca63ff3a0d019ebf61c20d626755/qiskit_aer-0.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7ce375fc8996b08577bcaddeb3631eed88e710372ae026c633f1150e7b65125",
                "md5": "d8d9391e21b559b5c3fb6076b361c0c4",
                "sha256": "45ef73adf280205e4a48b3be18b5d8d4e9d89ab5ac57a76daa58f6fa684c5c30"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "d8d9391e21b559b5c3fb6076b361c0c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6894978,
            "upload_time": "2024-09-13T18:08:43",
            "upload_time_iso_8601": "2024-09-13T18:08:43.665196Z",
            "url": "https://files.pythonhosted.org/packages/a7/ce/375fc8996b08577bcaddeb3631eed88e710372ae026c633f1150e7b65125/qiskit_aer-0.15.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f478b6da29ec75bcae24091b673da297d5476aa2e092f72852a609d550865be1",
                "md5": "ade7fca3bf03720f4e82ba6b1f8739de",
                "sha256": "4d32d6a90598e0ce529637622af077860ebc09d50b3b3ce0474a1659f9651f13"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ade7fca3bf03720f4e82ba6b1f8739de",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 9516997,
            "upload_time": "2024-09-13T18:08:46",
            "upload_time_iso_8601": "2024-09-13T18:08:46.890416Z",
            "url": "https://files.pythonhosted.org/packages/f4/78/b6da29ec75bcae24091b673da297d5476aa2e092f72852a609d550865be1/qiskit_aer-0.15.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c121d1b9e84ad1c6fc3fdf6dfba979df896674302849061a82b239f6d7b2cf7",
                "md5": "2e723d7b6d9825c1f215993dc47bdb0d",
                "sha256": "0eb19c9cc3ff0293a6967ff0a36479383d1b15f5e20d4a63d01bc7804c62b580"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e723d7b6d9825c1f215993dc47bdb0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2468214,
            "upload_time": "2024-09-13T18:08:49",
            "upload_time_iso_8601": "2024-09-13T18:08:49.529547Z",
            "url": "https://files.pythonhosted.org/packages/5c/12/1d1b9e84ad1c6fc3fdf6dfba979df896674302849061a82b239f6d7b2cf7/qiskit_aer-0.15.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e2eb43312d367e387d8bea6c6b1a6e6a570ba67deb3179fa7eb6d0269fb5e79",
                "md5": "18723329fd0eacccb1d3bd3e94acdfc3",
                "sha256": "00a26359b34bfe070549b3bf6b5a4c51d9cc16d47381a4f55bc886a55dd101f9"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "18723329fd0eacccb1d3bd3e94acdfc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2156037,
            "upload_time": "2024-09-13T18:08:51",
            "upload_time_iso_8601": "2024-09-13T18:08:51.385589Z",
            "url": "https://files.pythonhosted.org/packages/8e/2e/b43312d367e387d8bea6c6b1a6e6a570ba67deb3179fa7eb6d0269fb5e79/qiskit_aer-0.15.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "355a63c14f9806db1c447d9e634331f262e17c1fca60b65b16b4cdcdfc360348",
                "md5": "f296b627cb15b739696106c9f163ae22",
                "sha256": "2f655025da0326bf2ac86757ab75db83922cdcfd67d062e345745fa9b1273aae"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f296b627cb15b739696106c9f163ae22",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6421291,
            "upload_time": "2024-09-13T19:31:14",
            "upload_time_iso_8601": "2024-09-13T19:31:14.172562Z",
            "url": "https://files.pythonhosted.org/packages/35/5a/63c14f9806db1c447d9e634331f262e17c1fca60b65b16b4cdcdfc360348/qiskit_aer-0.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64b734a4abc62aa0f94e3185865b4e051859a7f8a75e38a99fb52a7040840a6c",
                "md5": "86e70fdae0fce91fcf66f14b1e3e6dcc",
                "sha256": "9a77fa5ff6c3f6210bc46de61b407c928ff3ed47c0ea6eabe94a5ba714eeff76"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "86e70fdae0fce91fcf66f14b1e3e6dcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7933278,
            "upload_time": "2024-09-13T10:31:29",
            "upload_time_iso_8601": "2024-09-13T10:31:29.282205Z",
            "url": "https://files.pythonhosted.org/packages/64/b7/34a4abc62aa0f94e3185865b4e051859a7f8a75e38a99fb52a7040840a6c/qiskit_aer-0.15.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a895d48d4c2913d0b2706274db218a63e031cd5d5dc655586f7e643d1943ee70",
                "md5": "cbb7a4e9fb02ead677985d545af03bdf",
                "sha256": "ad0c9982705a7bff81cd6edd157f9bbd907ab5256a6d6a3203a4a2759467ddc8"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cbb7a4e9fb02ead677985d545af03bdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7882739,
            "upload_time": "2024-09-13T08:36:44",
            "upload_time_iso_8601": "2024-09-13T08:36:44.375186Z",
            "url": "https://files.pythonhosted.org/packages/a8/95/d48d4c2913d0b2706274db218a63e031cd5d5dc655586f7e643d1943ee70/qiskit_aer-0.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3681d4ac589bf91c4763420e0f4921daeb7ee98184b47a9fadce42a5db31e16f",
                "md5": "32ba1d5bd6843a001930e1e07f9c1f2c",
                "sha256": "1cdd2f74ac62b197a18b6846c3f1c90a85d6aa3daa7889ec380dfa3a10473627"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32ba1d5bd6843a001930e1e07f9c1f2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 12346524,
            "upload_time": "2024-09-13T10:31:32",
            "upload_time_iso_8601": "2024-09-13T10:31:32.545408Z",
            "url": "https://files.pythonhosted.org/packages/36/81/d4ac589bf91c4763420e0f4921daeb7ee98184b47a9fadce42a5db31e16f/qiskit_aer-0.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a5f9d6e508a938aad48ed28fbb39bac547841fde783865123d97d79d8d9dd02",
                "md5": "6ebd7014f89cd17a13ecd2100f5de66d",
                "sha256": "347ce7c735b926a9cd9cb8e7cfa9446d7b46f0ea7f236ddb16d96445651f2fc1"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "6ebd7014f89cd17a13ecd2100f5de66d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6895068,
            "upload_time": "2024-09-13T18:08:53",
            "upload_time_iso_8601": "2024-09-13T18:08:53.387147Z",
            "url": "https://files.pythonhosted.org/packages/1a/5f/9d6e508a938aad48ed28fbb39bac547841fde783865123d97d79d8d9dd02/qiskit_aer-0.15.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da6e721defe0c18fc1f2dac6b255e1c5b8d75f71988436a028e7b626de8663dd",
                "md5": "b14c7200f9ec853921a9f94eb8af0892",
                "sha256": "c97db2386e4236643c63b6ffa922aa7be8764746a6fd89158012d9947dabdcbb"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.15.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b14c7200f9ec853921a9f94eb8af0892",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 9505077,
            "upload_time": "2024-09-13T18:08:56",
            "upload_time_iso_8601": "2024-09-13T18:08:56.038573Z",
            "url": "https://files.pythonhosted.org/packages/da/6e/721defe0c18fc1f2dac6b255e1c5b8d75f71988436a028e7b626de8663dd/qiskit_aer-0.15.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3739044e35f1da0011fe44a3b2729b347851a452fc85e701b102dbdfbbbf6bd1",
                "md5": "687d48bac93ec4a501c8a62f01745619",
                "sha256": "45f320790c9239bbe781a1ee14a329a20ad08878f01746fe405c836d202b2560"
            },
            "downloads": -1,
            "filename": "qiskit-aer-0.15.1.tar.gz",
            "has_sig": false,
            "md5_digest": "687d48bac93ec4a501c8a62f01745619",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6550165,
            "upload_time": "2024-09-13T10:32:17",
            "upload_time_iso_8601": "2024-09-13T10:32:17.850095Z",
            "url": "https://files.pythonhosted.org/packages/37/39/044e35f1da0011fe44a3b2729b347851a452fc85e701b102dbdfbbbf6bd1/qiskit-aer-0.15.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-13 10:32:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Qiskit",
    "github_project": "qiskit-aer",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "qiskit-aer"
}
        
Elapsed time: 0.59504s