qiskit-aer


Nameqiskit-aer JSON
Version 0.14.1 PyPI version JSON
download
home_pagehttps://github.com/Qiskit/qiskit-aer
SummaryAer - High performance simulators for Qiskit
upload_time2024-04-30 05:13:53
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.from_backend(backend)

# run a sampler job on the parameterized circuits with noise model of the actual hardware
job3 = sampler.run([(pqc, theta1), (pqc2, theta2)])
job_result = job3.result()
print(f"Parameterized 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": null,
    "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.from_backend(backend)\n\n# run a sampler job on the parameterized circuits with noise model of the actual hardware\njob3 = sampler.run([(pqc, theta1), (pqc2, theta2)])\njob_result = job3.result()\nprint(f\"Parameterized for Bell circuit w/noise: {job_result[0].data.meas.get_counts()}\")\n\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.14.1",
    "project_urls": {
        "Homepage": "https://github.com/Qiskit/qiskit-aer"
    },
    "split_keywords": [
        "qiskit",
        " simulator",
        " quantum computing",
        " backend"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cee2121a140f8deff793b422037b3c7d236aff6f93c53d1dd837b3be88a159bd",
                "md5": "e688b9530328c52bf40033236290f6da",
                "sha256": "93dfc1fc8c854c1a5888ba6917fe784416720a72e7c6265997d69af108ffc892"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e688b9530328c52bf40033236290f6da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2471766,
            "upload_time": "2024-04-30T05:13:53",
            "upload_time_iso_8601": "2024-04-30T05:13:53.695570Z",
            "url": "https://files.pythonhosted.org/packages/ce/e2/121a140f8deff793b422037b3c7d236aff6f93c53d1dd837b3be88a159bd/qiskit_aer-0.14.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3c2a8d310bd50d8d89e848aa258143515cbe5cddcf0dbf93bb022c4e03a7c5e",
                "md5": "10cde162a1d44d214d919e8e318f6fcf",
                "sha256": "d21dd2cd5b85cf54ddc3a0faaf2908a7c6ce6730dbcb53f97749a0c0f3987876"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "10cde162a1d44d214d919e8e318f6fcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2159264,
            "upload_time": "2024-04-30T05:13:56",
            "upload_time_iso_8601": "2024-04-30T05:13:56.598260Z",
            "url": "https://files.pythonhosted.org/packages/d3/c2/a8d310bd50d8d89e848aa258143515cbe5cddcf0dbf93bb022c4e03a7c5e/qiskit_aer-0.14.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c54e30b2cfdeabb91c43e045e7bec664482f8f6092923ebf22ed400c2e7da6a5",
                "md5": "08ccb18da7b6cc9a13292f2c0aee9f27",
                "sha256": "2237902bd0cb353e15e732955e57ff382e3eba922dd3cdddaa1679745cea2940"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "08ccb18da7b6cc9a13292f2c0aee9f27",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6431696,
            "upload_time": "2024-04-30T04:11:53",
            "upload_time_iso_8601": "2024-04-30T04:11:53.222504Z",
            "url": "https://files.pythonhosted.org/packages/c5/4e/30b2cfdeabb91c43e045e7bec664482f8f6092923ebf22ed400c2e7da6a5/qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8c23a003a9d8f79448355e7258359106231fffee613d6158d3f0e26dcd55f78",
                "md5": "5f39cab8984ee23ba50edaff3ee70b7b",
                "sha256": "60b67b4974ec596179a02d71384f8d8ff8e385ea1b5a3d1481b9119d94a3af2e"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5f39cab8984ee23ba50edaff3ee70b7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7954475,
            "upload_time": "2024-04-30T05:13:59",
            "upload_time_iso_8601": "2024-04-30T05:13:59.367118Z",
            "url": "https://files.pythonhosted.org/packages/a8/c2/3a003a9d8f79448355e7258359106231fffee613d6158d3f0e26dcd55f78/qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08f5b6236f4fb17cbe4717a91b6fec5d19e008109505405c851812136a99155a",
                "md5": "9d1da835c9f7d15a1fde21504b567a3a",
                "sha256": "2b1c21093b0e69834c4cbc9f5cc2ae7fdd6de0e17b290c27496835264b9cc895"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9d1da835c9f7d15a1fde21504b567a3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7886347,
            "upload_time": "2024-04-30T03:56:28",
            "upload_time_iso_8601": "2024-04-30T03:56:28.795494Z",
            "url": "https://files.pythonhosted.org/packages/08/f5/b6236f4fb17cbe4717a91b6fec5d19e008109505405c851812136a99155a/qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6570a3145f6125b78b955e81992de66386aca8b85ef897104b6efcbfbb2393c",
                "md5": "becd1eaa580851ccd67673b4332dbf14",
                "sha256": "493d34203bb7fb9be4442011d51c6d48cc34c0378f5eaad0abe0c7f9824e3a78"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "becd1eaa580851ccd67673b4332dbf14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6872808,
            "upload_time": "2024-04-30T04:09:55",
            "upload_time_iso_8601": "2024-04-30T04:09:55.301778Z",
            "url": "https://files.pythonhosted.org/packages/a6/57/0a3145f6125b78b955e81992de66386aca8b85ef897104b6efcbfbb2393c/qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0ef1d2d9e18d8a735876fe862408248e850cd264769eebb307c7de52f10abdc",
                "md5": "9acd155608da3b6037a98f1198130a31",
                "sha256": "42e4b2bd68bc1f68c02a1f01e0bb250c3ca2d43a76911c0e2df579e7470a7e46"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9acd155608da3b6037a98f1198130a31",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 12349880,
            "upload_time": "2024-04-30T05:14:03",
            "upload_time_iso_8601": "2024-04-30T05:14:03.424455Z",
            "url": "https://files.pythonhosted.org/packages/a0/ef/1d2d9e18d8a735876fe862408248e850cd264769eebb307c7de52f10abdc/qiskit_aer-0.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d66a773191ad7c60594018c18be47100934b3788ba3160ea4bdec1494ad650dd",
                "md5": "253ec28e568a56cccf07d107e4192df1",
                "sha256": "ecbb2488edb13cf2b10dbe076e86efc7084d641be6790744d90faca4545c0d4d"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "253ec28e568a56cccf07d107e4192df1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6890298,
            "upload_time": "2024-04-30T05:14:06",
            "upload_time_iso_8601": "2024-04-30T05:14:06.841036Z",
            "url": "https://files.pythonhosted.org/packages/d6/6a/773191ad7c60594018c18be47100934b3788ba3160ea4bdec1494ad650dd/qiskit_aer-0.14.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15a52cd00f0bf18beba5cdb00673c8c063783cbc6ef88ada319d8c4a566775a3",
                "md5": "10741358ed769c7039b21e27563398f8",
                "sha256": "a0a3600b07053642a0c531f70259539059a6e1b9b912d402dceecaeca50a2557"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "10741358ed769c7039b21e27563398f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 9513351,
            "upload_time": "2024-04-30T05:14:09",
            "upload_time_iso_8601": "2024-04-30T05:14:09.835271Z",
            "url": "https://files.pythonhosted.org/packages/15/a5/2cd00f0bf18beba5cdb00673c8c063783cbc6ef88ada319d8c4a566775a3/qiskit_aer-0.14.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "440edc02eb52f3026cf3052f0b939beb4baa260b87f0d2bd4c8289b2bbb1ea21",
                "md5": "3956806acdfdb23d44c67b5cbb622ea1",
                "sha256": "1506c3541e0a5d277526fee5698cf367e22b775f3422d3afc425f50839e7000a"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3956806acdfdb23d44c67b5cbb622ea1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2472710,
            "upload_time": "2024-04-30T05:14:13",
            "upload_time_iso_8601": "2024-04-30T05:14:13.146536Z",
            "url": "https://files.pythonhosted.org/packages/44/0e/dc02eb52f3026cf3052f0b939beb4baa260b87f0d2bd4c8289b2bbb1ea21/qiskit_aer-0.14.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d5d2a8f90aefff232bdcfadace2d2461c785766eab5484fcb2e6413e7c1b4ed",
                "md5": "16c86f5f6b12cc0d84dc37b450365979",
                "sha256": "87b718b56e789ea2aa16507b8e9a77164c3bfb9c37e2ea64fe504b0a841d3190"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "16c86f5f6b12cc0d84dc37b450365979",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2160132,
            "upload_time": "2024-04-30T05:14:15",
            "upload_time_iso_8601": "2024-04-30T05:14:15.598132Z",
            "url": "https://files.pythonhosted.org/packages/6d/5d/2a8f90aefff232bdcfadace2d2461c785766eab5484fcb2e6413e7c1b4ed/qiskit_aer-0.14.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5875f17e1405181ef124de3e2abc9fd912e2e40deef99d8fd5177eaf0e02088a",
                "md5": "80785be6a29be419cdc6f5d56dbe2aea",
                "sha256": "51aeae6739ca98791f6f2ecc1dfa9d8e0639da67cae067242e69293737325c40"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "80785be6a29be419cdc6f5d56dbe2aea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6432932,
            "upload_time": "2024-04-30T04:11:55",
            "upload_time_iso_8601": "2024-04-30T04:11:55.789622Z",
            "url": "https://files.pythonhosted.org/packages/58/75/f17e1405181ef124de3e2abc9fd912e2e40deef99d8fd5177eaf0e02088a/qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffead3418993281303efd4975751ef05aae69777a0246453caaef6a3317f0ec0",
                "md5": "ae3e2c63d9d77523b7b10c754d3b010c",
                "sha256": "2b31e206e5b8434ec01821000e2734bcdd20af2c5ea468b905031aaa11906542"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ae3e2c63d9d77523b7b10c754d3b010c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7954991,
            "upload_time": "2024-04-30T05:14:18",
            "upload_time_iso_8601": "2024-04-30T05:14:18.825855Z",
            "url": "https://files.pythonhosted.org/packages/ff/ea/d3418993281303efd4975751ef05aae69777a0246453caaef6a3317f0ec0/qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3a6b8a701a51d36bcaebb85669e38984135aae81cf892eb199a83bf134e3f4e",
                "md5": "f42b93700733716977e92ffb646f7442",
                "sha256": "db331dec02f0852519105b5d3b0ce6bcba6b9611d69b9fef3772158c3e5201dc"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f42b93700733716977e92ffb646f7442",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7888698,
            "upload_time": "2024-04-30T03:56:31",
            "upload_time_iso_8601": "2024-04-30T03:56:31.766107Z",
            "url": "https://files.pythonhosted.org/packages/b3/a6/b8a701a51d36bcaebb85669e38984135aae81cf892eb199a83bf134e3f4e/qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd62268fe79c77d9944e81e6d073138013e1dc259f7291adc081834189a3453f",
                "md5": "7f356a19a8686874609c8dfb527060e6",
                "sha256": "e6d3b122c278d121d87c246a547b692f19b014f8f934549e7862e334ed321bf0"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7f356a19a8686874609c8dfb527060e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6878363,
            "upload_time": "2024-04-30T04:09:57",
            "upload_time_iso_8601": "2024-04-30T04:09:57.711925Z",
            "url": "https://files.pythonhosted.org/packages/dd/62/268fe79c77d9944e81e6d073138013e1dc259f7291adc081834189a3453f/qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6026df7b23feef593fb3236b0a20b129d8894d7d99a2bc4e0cfa61eb86af42cd",
                "md5": "22960352599b9a4883e059e10645c50f",
                "sha256": "ecb95020e693fb8b7bc674d20f70eeb9eb24dd4fbc2f4b390f2519b885c08886"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22960352599b9a4883e059e10645c50f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 12358139,
            "upload_time": "2024-04-30T05:14:21",
            "upload_time_iso_8601": "2024-04-30T05:14:21.927139Z",
            "url": "https://files.pythonhosted.org/packages/60/26/df7b23feef593fb3236b0a20b129d8894d7d99a2bc4e0cfa61eb86af42cd/qiskit_aer-0.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56397d0b81b2047aed1d1418a776c12fe8336ab501320075a652bb24ca691a2a",
                "md5": "4c93ea87ce653afb8e7250ebad5d57da",
                "sha256": "fc3dad2e2cd45168cecf5cc9ddb63bf20e6b7611341552b664e122a2d9dfd57f"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "4c93ea87ce653afb8e7250ebad5d57da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6891191,
            "upload_time": "2024-04-30T05:14:25",
            "upload_time_iso_8601": "2024-04-30T05:14:25.252925Z",
            "url": "https://files.pythonhosted.org/packages/56/39/7d0b81b2047aed1d1418a776c12fe8336ab501320075a652bb24ca691a2a/qiskit_aer-0.14.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09e868126e8af307b56c58a98cc53043e4eb13e48aae7cafa44ab949c9bb97f9",
                "md5": "5e69bc497cef1c680ef61fada8638046",
                "sha256": "3d4558de7eb2c1351e81d1e7689ad95faf94fef803331049ca3debbe3562d501"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5e69bc497cef1c680ef61fada8638046",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 9514347,
            "upload_time": "2024-04-30T05:14:28",
            "upload_time_iso_8601": "2024-04-30T05:14:28.227585Z",
            "url": "https://files.pythonhosted.org/packages/09/e8/68126e8af307b56c58a98cc53043e4eb13e48aae7cafa44ab949c9bb97f9/qiskit_aer-0.14.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5437f820062ba6e0a7425c8251b4c7e58855486dfd121612ebfa73a374f0248e",
                "md5": "4d958c360204b92516aa12b4e8077243",
                "sha256": "41e2917afd33eaf5c534f0f81118bdaa50d033f298e2055ec9ca4e010123f49b"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d958c360204b92516aa12b4e8077243",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2477199,
            "upload_time": "2024-04-30T05:14:31",
            "upload_time_iso_8601": "2024-04-30T05:14:31.268257Z",
            "url": "https://files.pythonhosted.org/packages/54/37/f820062ba6e0a7425c8251b4c7e58855486dfd121612ebfa73a374f0248e/qiskit_aer-0.14.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "508747658705dee72afeea29b65d4440a4722dc1f76d85452a0c9ce856add0e8",
                "md5": "122a0ec99ff3e856727840f040561912",
                "sha256": "3274960b4c843639c5546b268f06387088c47c2fca2a5ef1a8ff203acfa53ff5"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "122a0ec99ff3e856727840f040561912",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2161527,
            "upload_time": "2024-04-30T05:14:33",
            "upload_time_iso_8601": "2024-04-30T05:14:33.839378Z",
            "url": "https://files.pythonhosted.org/packages/50/87/47658705dee72afeea29b65d4440a4722dc1f76d85452a0c9ce856add0e8/qiskit_aer-0.14.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7641a04cc3d5f6824405a97988816431a415a5af98a78bf060a11225e5bf05e",
                "md5": "e89a8a5a4b094b6348c31e9359edc745",
                "sha256": "aa147acaae4a974a10aed6a79659d601d51616ef88b2edb3c834558e6ca22420"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e89a8a5a4b094b6348c31e9359edc745",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6433969,
            "upload_time": "2024-04-30T04:11:58",
            "upload_time_iso_8601": "2024-04-30T04:11:58.877521Z",
            "url": "https://files.pythonhosted.org/packages/e7/64/1a04cc3d5f6824405a97988816431a415a5af98a78bf060a11225e5bf05e/qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80f339c61d1b88115c5242418d59ba1e8fc3680e49c0812e45f807a5cdbc2da4",
                "md5": "b816bcf85d4f8487d7d7a22ce043b7b2",
                "sha256": "612005456407415e9b060fb1516011539c8a54d46acf7ad1b54b9b02b5ee9680"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b816bcf85d4f8487d7d7a22ce043b7b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 7964384,
            "upload_time": "2024-04-30T05:14:36",
            "upload_time_iso_8601": "2024-04-30T05:14:36.548424Z",
            "url": "https://files.pythonhosted.org/packages/80/f3/39c61d1b88115c5242418d59ba1e8fc3680e49c0812e45f807a5cdbc2da4/qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ac38eea9edb46607d33e54f23c8b41f908058abe8ebd171ae9a2cda6dfd20b6",
                "md5": "fc513c5edc1e70a10499ce91dec6b4fd",
                "sha256": "718f8fb7e75daed35f87e98d3ade8c164f18f9091ce3cbdd3b3eb40d18f88698"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fc513c5edc1e70a10499ce91dec6b4fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 7888212,
            "upload_time": "2024-04-30T03:56:33",
            "upload_time_iso_8601": "2024-04-30T03:56:33.475765Z",
            "url": "https://files.pythonhosted.org/packages/7a/c3/8eea9edb46607d33e54f23c8b41f908058abe8ebd171ae9a2cda6dfd20b6/qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b4154af94b57bf21b932de1408bdbda73bafe65a1d30dba1f20708a010560b4",
                "md5": "5e2fcc78133d4e6e95255bf7c004513c",
                "sha256": "789bec876e1f2fb48f36a7866329bc0f8a7698376e027bcbbd8389a770b4e90a"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5e2fcc78133d4e6e95255bf7c004513c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6879996,
            "upload_time": "2024-04-30T04:10:00",
            "upload_time_iso_8601": "2024-04-30T04:10:00.194818Z",
            "url": "https://files.pythonhosted.org/packages/8b/41/54af94b57bf21b932de1408bdbda73bafe65a1d30dba1f20708a010560b4/qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36c434ff643088269bea1016b27228acc670de9803ff864614a7fb4d3307cf12",
                "md5": "dce9f9780163178113ad9936059fab03",
                "sha256": "3ef491db80349aa2c79439b8781a9e0bb8e1a39689cf763902c3cd3d6ee47728"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dce9f9780163178113ad9936059fab03",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 12351398,
            "upload_time": "2024-04-30T05:14:39",
            "upload_time_iso_8601": "2024-04-30T05:14:39.930570Z",
            "url": "https://files.pythonhosted.org/packages/36/c4/34ff643088269bea1016b27228acc670de9803ff864614a7fb4d3307cf12/qiskit_aer-0.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72d7efc88101a651c474fd4a151607231d62a95092d8c5f49246ecd57d8edfe3",
                "md5": "e6dec7cd06b2403aa841c6d5bde01b7c",
                "sha256": "9bc14f44bd8ddacfa7a94c519fc2ed7e377854b9d07003ed18c615ed3f9ad2af"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "e6dec7cd06b2403aa841c6d5bde01b7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6892726,
            "upload_time": "2024-04-30T05:14:43",
            "upload_time_iso_8601": "2024-04-30T05:14:43.907712Z",
            "url": "https://files.pythonhosted.org/packages/72/d7/efc88101a651c474fd4a151607231d62a95092d8c5f49246ecd57d8edfe3/qiskit_aer-0.14.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58b2f3be8f2b862c28d079db2c330725ae0ffba1109db02f7c5eb9bb95d55b2b",
                "md5": "a357990aa8de72f77a99a9e0626fba22",
                "sha256": "501e22338b35ef94804c2439e6d11dcf785630c11e0deccd29686a6ce8c5dc14"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a357990aa8de72f77a99a9e0626fba22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 9516154,
            "upload_time": "2024-04-30T05:14:46",
            "upload_time_iso_8601": "2024-04-30T05:14:46.701713Z",
            "url": "https://files.pythonhosted.org/packages/58/b2/f3be8f2b862c28d079db2c330725ae0ffba1109db02f7c5eb9bb95d55b2b/qiskit_aer-0.14.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58fd3125cbdd0c1d5788ba939634ea8e76b826fc7d62eea0b359b0f54cfdce9b",
                "md5": "3d1ffdbe6ef0a7bc73f53b64f9aa81f6",
                "sha256": "1cb5a8348df2444185a01481c0809f8f3ca27b7aa9e78f40670b759f027c2878"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d1ffdbe6ef0a7bc73f53b64f9aa81f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2471698,
            "upload_time": "2024-04-30T05:14:49",
            "upload_time_iso_8601": "2024-04-30T05:14:49.108054Z",
            "url": "https://files.pythonhosted.org/packages/58/fd/3125cbdd0c1d5788ba939634ea8e76b826fc7d62eea0b359b0f54cfdce9b/qiskit_aer-0.14.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11f7c5884be6bf0738a86c9cc517b2b8c6fc6ca46cc89f04361fe51b774dc401",
                "md5": "ce0df2749cec5956a64fc9dccf4cf306",
                "sha256": "f6848f00f8127e1bb18978357395167cfa8f68f6f82ee87a3a503bf1b8489b4c"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ce0df2749cec5956a64fc9dccf4cf306",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6434073,
            "upload_time": "2024-04-30T04:12:01",
            "upload_time_iso_8601": "2024-04-30T04:12:01.025440Z",
            "url": "https://files.pythonhosted.org/packages/11/f7/c5884be6bf0738a86c9cc517b2b8c6fc6ca46cc89f04361fe51b774dc401/qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0092b0fe92fbd75cc2d8ae9a117ee39e0516d1545a7869515250af5762278e1d",
                "md5": "c63a0051b7e542e95ed9358f95517834",
                "sha256": "a3b370b443c3bd960f402233f8a7574f2625d20228b6bb31800880548dd9f24a"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c63a0051b7e542e95ed9358f95517834",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7953947,
            "upload_time": "2024-04-30T05:14:51",
            "upload_time_iso_8601": "2024-04-30T05:14:51.178748Z",
            "url": "https://files.pythonhosted.org/packages/00/92/b0fe92fbd75cc2d8ae9a117ee39e0516d1545a7869515250af5762278e1d/qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbc2ccba8d5341aa7f1809c36b7fd4cacc92e9e59d8e3a84580498abd1668bb7",
                "md5": "5b91e6035a53c79008159703f82acdca",
                "sha256": "99efb6edacf4811c74e360b536f77e88a960b75022959162a679384145d50fbc"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5b91e6035a53c79008159703f82acdca",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7887161,
            "upload_time": "2024-04-30T03:56:35",
            "upload_time_iso_8601": "2024-04-30T03:56:35.764797Z",
            "url": "https://files.pythonhosted.org/packages/bb/c2/ccba8d5341aa7f1809c36b7fd4cacc92e9e59d8e3a84580498abd1668bb7/qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "378cbcc875c156ca7b2df5f6b35724157861d023a581ec3456eed65cfd1350ee",
                "md5": "b0ac1790e4ba1bb8e5b3a90097a4610d",
                "sha256": "4d25d06210727227f309deca76fb2a54bb12f0878b2741f5f39a81ac8e97bb9e"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b0ac1790e4ba1bb8e5b3a90097a4610d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6878184,
            "upload_time": "2024-04-30T04:10:02",
            "upload_time_iso_8601": "2024-04-30T04:10:02.420058Z",
            "url": "https://files.pythonhosted.org/packages/37/8c/bcc875c156ca7b2df5f6b35724157861d023a581ec3456eed65cfd1350ee/qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1eab5d581dc02af9384a2fc4888e29643ee7a729d473a79266ea0b51de0c50d4",
                "md5": "455ef860b30aaaa8fc2486b9da6ae17f",
                "sha256": "969950877d6f4438342e2209d7a1a299b5e1093c676c6b3367d9e758aaa3e731"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "455ef860b30aaaa8fc2486b9da6ae17f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 12356934,
            "upload_time": "2024-04-30T05:14:53",
            "upload_time_iso_8601": "2024-04-30T05:14:53.378980Z",
            "url": "https://files.pythonhosted.org/packages/1e/ab/5d581dc02af9384a2fc4888e29643ee7a729d473a79266ea0b51de0c50d4/qiskit_aer-0.14.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60a85cd77a976f2efcfda371659af39d9d7478672ad6605b43a6e652c68d5a9a",
                "md5": "9a7fe88d5907f32d50cdf1a1b817220e",
                "sha256": "d44edff6187826960ce219d14483b8fd5d5c6d7742682dcac2c724984ff2f48a"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "9a7fe88d5907f32d50cdf1a1b817220e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6890255,
            "upload_time": "2024-04-30T05:14:56",
            "upload_time_iso_8601": "2024-04-30T05:14:56.697495Z",
            "url": "https://files.pythonhosted.org/packages/60/a8/5cd77a976f2efcfda371659af39d9d7478672ad6605b43a6e652c68d5a9a/qiskit_aer-0.14.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f6bb67125d1fe3dfff6b6d59d49046e3eb08233efbc95aeaea77dee6b9d2ced",
                "md5": "b37802786090aaf1cbead065b2e77fd0",
                "sha256": "7aa2e6339b3d1a4ace0570cdb6230a872787db3b01f130ea91a5c01b9b4634ca"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b37802786090aaf1cbead065b2e77fd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 9513255,
            "upload_time": "2024-04-30T05:14:59",
            "upload_time_iso_8601": "2024-04-30T05:14:59.596605Z",
            "url": "https://files.pythonhosted.org/packages/1f/6b/b67125d1fe3dfff6b6d59d49046e3eb08233efbc95aeaea77dee6b9d2ced/qiskit_aer-0.14.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24405625d1528fc6f2b6a89349e415fe893abf7ce86c09bcd5210aad52d9b042",
                "md5": "79eb4cc3d8292ef21c37075c2509420e",
                "sha256": "d4f0273bc52efcd0992cb1cfd1e4ad220e105bd59c5c7b9cf4061b62f537d416"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79eb4cc3d8292ef21c37075c2509420e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2471791,
            "upload_time": "2024-04-30T05:15:02",
            "upload_time_iso_8601": "2024-04-30T05:15:02.202356Z",
            "url": "https://files.pythonhosted.org/packages/24/40/5625d1528fc6f2b6a89349e415fe893abf7ce86c09bcd5210aad52d9b042/qiskit_aer-0.14.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d7d211a46df1642b643515433a3cdb617b05d62cc38078107bd261084efba28",
                "md5": "caacbc426b0f8d46b1c8cd5d67d1e25e",
                "sha256": "8b9f26417b725428e66541f24cff6c71e4fc2c74a02328c5be7d33d4b600b3f0"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "caacbc426b0f8d46b1c8cd5d67d1e25e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6431989,
            "upload_time": "2024-04-30T04:12:03",
            "upload_time_iso_8601": "2024-04-30T04:12:03.519136Z",
            "url": "https://files.pythonhosted.org/packages/0d/7d/211a46df1642b643515433a3cdb617b05d62cc38078107bd261084efba28/qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4556f3e371a6b69539c0ab121725959b695133f5b0938886ab3dd0293a7d3db6",
                "md5": "b885343b34526ae9922809bfb4fefa06",
                "sha256": "53db2ca21f0cb084a6b04fc8c48d8e337e0931d2377b5d08dc0773314e5a4523"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b885343b34526ae9922809bfb4fefa06",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7956542,
            "upload_time": "2024-04-30T05:15:04",
            "upload_time_iso_8601": "2024-04-30T05:15:04.564887Z",
            "url": "https://files.pythonhosted.org/packages/45/56/f3e371a6b69539c0ab121725959b695133f5b0938886ab3dd0293a7d3db6/qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3d3fcec5d9de3252f2af240893c6d1f172b033c77fd81e1cf2fb9480dfd47f5",
                "md5": "b1748f14194c158345382b9db8ec3b0b",
                "sha256": "4b816d60628312ad72d2713fb3baf237e9ae1383428448db465b51110915af4a"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b1748f14194c158345382b9db8ec3b0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7885745,
            "upload_time": "2024-04-30T03:56:37",
            "upload_time_iso_8601": "2024-04-30T03:56:37.770611Z",
            "url": "https://files.pythonhosted.org/packages/a3/d3/fcec5d9de3252f2af240893c6d1f172b033c77fd81e1cf2fb9480dfd47f5/qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8821ef6e8b33dff0768ceb98d4bce084e9cbcfd890530d724c6ef50fc6746cc7",
                "md5": "e98fcdb16423df1f9aa87a6a66d372dd",
                "sha256": "e4085a2217fd3c5e961a9ca53a6d80342a2d61694a1c2ff08f10d5dd162bdf6e"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e98fcdb16423df1f9aa87a6a66d372dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6879314,
            "upload_time": "2024-04-30T04:10:05",
            "upload_time_iso_8601": "2024-04-30T04:10:05.339486Z",
            "url": "https://files.pythonhosted.org/packages/88/21/ef6e8b33dff0768ceb98d4bce084e9cbcfd890530d724c6ef50fc6746cc7/qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "163588bda26f01509bbbf684944374c83a531083f90aa678524c275613f1f644",
                "md5": "f721189db8bb5e7b3bcbc6b639f6954a",
                "sha256": "7636ef9fb9b6864ec799559dcac4fe772363fe84d9dd51a6a10ff2308c63eb23"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f721189db8bb5e7b3bcbc6b639f6954a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 12358251,
            "upload_time": "2024-04-30T05:15:07",
            "upload_time_iso_8601": "2024-04-30T05:15:07.635320Z",
            "url": "https://files.pythonhosted.org/packages/16/35/88bda26f01509bbbf684944374c83a531083f90aa678524c275613f1f644/qiskit_aer-0.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d4d00de750bd8aa257eab768d169d689e37abd7da0a6677eb8ea2dab911e5e9",
                "md5": "dd33f868e75f9c203ccab6c7e9f9ba25",
                "sha256": "ccf949fafbbccbbf86b9fcad483d42272a19b1a2238fbe958f94775a188be242"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "dd33f868e75f9c203ccab6c7e9f9ba25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6890329,
            "upload_time": "2024-04-30T05:15:10",
            "upload_time_iso_8601": "2024-04-30T05:15:10.492310Z",
            "url": "https://files.pythonhosted.org/packages/3d/4d/00de750bd8aa257eab768d169d689e37abd7da0a6677eb8ea2dab911e5e9/qiskit_aer-0.14.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69503a11a7dfcbcb54115d4f6d55f9d5a60d9c02068fdc5ffe50262d008c384b",
                "md5": "42b17ab592147a85ac8a6ce970919c64",
                "sha256": "72dcec3d46610d003411b4fae552cc3c01b86e4e2e7c57bd33d73061a2f54883"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.14.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "42b17ab592147a85ac8a6ce970919c64",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 9502453,
            "upload_time": "2024-04-30T05:15:12",
            "upload_time_iso_8601": "2024-04-30T05:15:12.883961Z",
            "url": "https://files.pythonhosted.org/packages/69/50/3a11a7dfcbcb54115d4f6d55f9d5a60d9c02068fdc5ffe50262d008c384b/qiskit_aer-0.14.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-30 05:13:53",
    "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.25989s