qiskit-aer 0.17.2__cp314-cp314-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. qiskit_aer/VERSION.txt +1 -0
  2. qiskit_aer/__init__.py +89 -0
  3. qiskit_aer/aererror.py +30 -0
  4. qiskit_aer/aerprovider.py +119 -0
  5. qiskit_aer/backends/__init__.py +20 -0
  6. qiskit_aer/backends/aer_compiler.py +1085 -0
  7. qiskit_aer/backends/aer_simulator.py +1025 -0
  8. qiskit_aer/backends/aerbackend.py +679 -0
  9. qiskit_aer/backends/backend_utils.py +567 -0
  10. qiskit_aer/backends/backendconfiguration.py +395 -0
  11. qiskit_aer/backends/backendproperties.py +590 -0
  12. qiskit_aer/backends/compatibility.py +287 -0
  13. qiskit_aer/backends/controller_wrappers.cp314-win_amd64.pyd +0 -0
  14. qiskit_aer/backends/libopenblas.dll +0 -0
  15. qiskit_aer/backends/name_mapping.py +306 -0
  16. qiskit_aer/backends/qasm_simulator.py +925 -0
  17. qiskit_aer/backends/statevector_simulator.py +330 -0
  18. qiskit_aer/backends/unitary_simulator.py +316 -0
  19. qiskit_aer/jobs/__init__.py +35 -0
  20. qiskit_aer/jobs/aerjob.py +143 -0
  21. qiskit_aer/jobs/utils.py +66 -0
  22. qiskit_aer/library/__init__.py +204 -0
  23. qiskit_aer/library/control_flow_instructions/__init__.py +16 -0
  24. qiskit_aer/library/control_flow_instructions/jump.py +47 -0
  25. qiskit_aer/library/control_flow_instructions/mark.py +30 -0
  26. qiskit_aer/library/control_flow_instructions/store.py +29 -0
  27. qiskit_aer/library/default_qubits.py +44 -0
  28. qiskit_aer/library/instructions_table.csv +21 -0
  29. qiskit_aer/library/save_instructions/__init__.py +44 -0
  30. qiskit_aer/library/save_instructions/save_amplitudes.py +168 -0
  31. qiskit_aer/library/save_instructions/save_clifford.py +63 -0
  32. qiskit_aer/library/save_instructions/save_data.py +129 -0
  33. qiskit_aer/library/save_instructions/save_density_matrix.py +91 -0
  34. qiskit_aer/library/save_instructions/save_expectation_value.py +257 -0
  35. qiskit_aer/library/save_instructions/save_matrix_product_state.py +71 -0
  36. qiskit_aer/library/save_instructions/save_probabilities.py +156 -0
  37. qiskit_aer/library/save_instructions/save_stabilizer.py +70 -0
  38. qiskit_aer/library/save_instructions/save_state.py +79 -0
  39. qiskit_aer/library/save_instructions/save_statevector.py +120 -0
  40. qiskit_aer/library/save_instructions/save_superop.py +62 -0
  41. qiskit_aer/library/save_instructions/save_unitary.py +63 -0
  42. qiskit_aer/library/set_instructions/__init__.py +19 -0
  43. qiskit_aer/library/set_instructions/set_density_matrix.py +78 -0
  44. qiskit_aer/library/set_instructions/set_matrix_product_state.py +83 -0
  45. qiskit_aer/library/set_instructions/set_stabilizer.py +77 -0
  46. qiskit_aer/library/set_instructions/set_statevector.py +78 -0
  47. qiskit_aer/library/set_instructions/set_superop.py +78 -0
  48. qiskit_aer/library/set_instructions/set_unitary.py +78 -0
  49. qiskit_aer/noise/__init__.py +265 -0
  50. qiskit_aer/noise/device/__init__.py +25 -0
  51. qiskit_aer/noise/device/models.py +397 -0
  52. qiskit_aer/noise/device/parameters.py +202 -0
  53. qiskit_aer/noise/errors/__init__.py +30 -0
  54. qiskit_aer/noise/errors/base_quantum_error.py +119 -0
  55. qiskit_aer/noise/errors/pauli_error.py +283 -0
  56. qiskit_aer/noise/errors/pauli_lindblad_error.py +363 -0
  57. qiskit_aer/noise/errors/quantum_error.py +451 -0
  58. qiskit_aer/noise/errors/readout_error.py +355 -0
  59. qiskit_aer/noise/errors/standard_errors.py +498 -0
  60. qiskit_aer/noise/noise_model.py +1231 -0
  61. qiskit_aer/noise/noiseerror.py +30 -0
  62. qiskit_aer/noise/passes/__init__.py +18 -0
  63. qiskit_aer/noise/passes/local_noise_pass.py +160 -0
  64. qiskit_aer/noise/passes/relaxation_noise_pass.py +137 -0
  65. qiskit_aer/primitives/__init__.py +44 -0
  66. qiskit_aer/primitives/estimator.py +751 -0
  67. qiskit_aer/primitives/estimator_v2.py +159 -0
  68. qiskit_aer/primitives/sampler.py +361 -0
  69. qiskit_aer/primitives/sampler_v2.py +256 -0
  70. qiskit_aer/quantum_info/__init__.py +32 -0
  71. qiskit_aer/quantum_info/states/__init__.py +16 -0
  72. qiskit_aer/quantum_info/states/aer_densitymatrix.py +313 -0
  73. qiskit_aer/quantum_info/states/aer_state.py +525 -0
  74. qiskit_aer/quantum_info/states/aer_statevector.py +302 -0
  75. qiskit_aer/utils/__init__.py +44 -0
  76. qiskit_aer/utils/noise_model_inserter.py +66 -0
  77. qiskit_aer/utils/noise_transformation.py +431 -0
  78. qiskit_aer/version.py +86 -0
  79. qiskit_aer-0.17.2.dist-info/METADATA +209 -0
  80. qiskit_aer-0.17.2.dist-info/RECORD +83 -0
  81. qiskit_aer-0.17.2.dist-info/WHEEL +5 -0
  82. qiskit_aer-0.17.2.dist-info/licenses/LICENSE.txt +203 -0
  83. qiskit_aer-0.17.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,209 @@
1
+ Metadata-Version: 2.4
2
+ Name: qiskit-aer
3
+ Version: 0.17.2
4
+ Summary: Aer - High performance simulators for Qiskit
5
+ Home-page: https://github.com/Qiskit/qiskit-aer
6
+ Author: AER Development Team
7
+ Author-email: qiskit@us.ibm.com
8
+ License: Apache 2.0
9
+ Keywords: qiskit,simulator,quantum computing,backend
10
+ Classifier: Environment :: Console
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Operating System :: Microsoft :: Windows
15
+ Classifier: Operating System :: MacOS
16
+ Classifier: Operating System :: POSIX :: Linux
17
+ Classifier: Programming Language :: C++
18
+ Classifier: Programming Language :: Python :: 3 :: Only
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
24
+ Classifier: Topic :: Scientific/Engineering
25
+ Requires-Python: >=3.7
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE.txt
28
+ Requires-Dist: qiskit>=1.1.0
29
+ Requires-Dist: numpy>=1.16.3
30
+ Requires-Dist: scipy>=1.0
31
+ Requires-Dist: psutil>=5
32
+ Requires-Dist: python-dateutil>=2.8.0
33
+ Dynamic: author
34
+ Dynamic: author-email
35
+ Dynamic: classifier
36
+ Dynamic: description
37
+ Dynamic: description-content-type
38
+ Dynamic: home-page
39
+ Dynamic: keywords
40
+ Dynamic: license
41
+ Dynamic: license-file
42
+ Dynamic: requires-dist
43
+ Dynamic: requires-python
44
+ Dynamic: summary
45
+
46
+ # Aer - high performance quantum circuit simulation for Qiskit
47
+
48
+ [![License](https://img.shields.io/github/license/Qiskit/qiskit-aer.svg?style=popout-square)](https://opensource.org/licenses/Apache-2.0)
49
+ [![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)
50
+ [![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)
51
+ [![](https://img.shields.io/github/release/Qiskit/qiskit-aer.svg?style=popout-square)](https://github.com/Qiskit/qiskit-aer/releases)
52
+ [![](https://img.shields.io/pypi/dm/qiskit-aer.svg?style=popout-square)](https://pypi.org/project/qiskit-aer/)
53
+
54
+ **Aer** is a high performance simulator for quantum circuits written in Qiskit, that includes realistic noise models.
55
+
56
+ ## Installation
57
+
58
+ We encourage installing Aer via the pip tool (a python package manager):
59
+
60
+ ```bash
61
+ pip install qiskit-aer
62
+ ```
63
+
64
+ Pip will handle all dependencies automatically for us, and you will always install the latest (and well-tested) version.
65
+
66
+ To install from source, follow the instructions in the [contribution guidelines](CONTRIBUTING.md).
67
+
68
+ ## Installing GPU support
69
+
70
+ In order to install and run the GPU supported simulators on Linux, you need CUDA® 11.2 or newer previously installed.
71
+ CUDA® itself would require a set of specific GPU drivers. Please follow CUDA® installation procedure in the NVIDIA® [web](https://www.nvidia.com/drivers).
72
+
73
+ If you want to install our GPU supported simulators, you have to install this other package:
74
+
75
+ ```bash
76
+ pip install qiskit-aer-gpu
77
+ ```
78
+
79
+ The package above is for CUDA&reg 12, so if your system has CUDA® 11 installed, install separate package:
80
+ ```bash
81
+ pip install qiskit-aer-gpu-cu11
82
+ ```
83
+
84
+ This will overwrite your current `qiskit-aer` package installation giving you
85
+ the same functionality found in the canonical `qiskit-aer` package, plus the
86
+ ability to run the GPU supported simulators: statevector, density matrix, and unitary.
87
+
88
+ **Note**: This package is only available on x86_64 Linux. For other platforms
89
+ that have CUDA support, you will have to build from source. You can refer to
90
+ the [contributing guide](CONTRIBUTING.md#building-with-gpu-support)
91
+ for instructions on doing this.
92
+
93
+ ## Simulating your first Qiskit circuit with Aer
94
+ Now that you have Aer installed, you can start simulating quantum circuits using primitives and noise models. Here is a basic example:
95
+
96
+ ```
97
+ $ python
98
+ ```
99
+
100
+ ```python
101
+ from qiskit import transpile
102
+ from qiskit.circuit.library import RealAmplitudes
103
+ from qiskit.quantum_info import SparsePauliOp
104
+ from qiskit_aer import AerSimulator
105
+
106
+ sim = AerSimulator()
107
+ # --------------------------
108
+ # Simulating using estimator
109
+ #---------------------------
110
+ from qiskit_aer.primitives import EstimatorV2
111
+
112
+ psi1 = transpile(RealAmplitudes(num_qubits=2, reps=2), sim, optimization_level=0)
113
+ psi2 = transpile(RealAmplitudes(num_qubits=2, reps=3), sim, optimization_level=0)
114
+
115
+ H1 = SparsePauliOp.from_list([("II", 1), ("IZ", 2), ("XI", 3)])
116
+ H2 = SparsePauliOp.from_list([("IZ", 1)])
117
+ H3 = SparsePauliOp.from_list([("ZI", 1), ("ZZ", 1)])
118
+
119
+ theta1 = [0, 1, 1, 2, 3, 5]
120
+ theta2 = [0, 1, 1, 2, 3, 5, 8, 13]
121
+ theta3 = [1, 2, 3, 4, 5, 6]
122
+
123
+ estimator = EstimatorV2()
124
+
125
+ # calculate [ [<psi1(theta1)|H1|psi1(theta1)>,
126
+ # <psi1(theta3)|H3|psi1(theta3)>],
127
+ # [<psi2(theta2)|H2|psi2(theta2)>] ]
128
+ job = estimator.run(
129
+ [
130
+ (psi1, [H1, H3], [theta1, theta3]),
131
+ (psi2, H2, theta2)
132
+ ],
133
+ precision=0.01
134
+ )
135
+ result = job.result()
136
+ print(f"expectation values : psi1 = {result[0].data.evs}, psi2 = {result[1].data.evs}")
137
+
138
+ # --------------------------
139
+ # Simulating using sampler
140
+ # --------------------------
141
+ from qiskit_aer.primitives import SamplerV2
142
+ from qiskit import QuantumCircuit
143
+
144
+ # create a Bell circuit
145
+ bell = QuantumCircuit(2)
146
+ bell.h(0)
147
+ bell.cx(0, 1)
148
+ bell.measure_all()
149
+
150
+ # create two parameterized circuits
151
+ pqc = RealAmplitudes(num_qubits=2, reps=2)
152
+ pqc.measure_all()
153
+ pqc = transpile(pqc, sim, optimization_level=0)
154
+ pqc2 = RealAmplitudes(num_qubits=2, reps=3)
155
+ pqc2.measure_all()
156
+ pqc2 = transpile(pqc2, sim, optimization_level=0)
157
+
158
+ theta1 = [0, 1, 1, 2, 3, 5]
159
+ theta2 = [0, 1, 2, 3, 4, 5, 6, 7]
160
+
161
+ # initialization of the sampler
162
+ sampler = SamplerV2()
163
+
164
+ # collect 128 shots from the Bell circuit
165
+ job = sampler.run([bell], shots=128)
166
+ job_result = job.result()
167
+ print(f"counts for Bell circuit : {job_result[0].data.meas.get_counts()}")
168
+
169
+ # run a sampler job on the parameterized circuits
170
+ job2 = sampler.run([(pqc, theta1), (pqc2, theta2)])
171
+ job_result = job2.result()
172
+ print(f"counts for parameterized circuit : {job_result[0].data.meas.get_counts()}")
173
+
174
+ # --------------------------------------------------
175
+ # Simulating with noise model from actual hardware
176
+ # --------------------------------------------------
177
+ from qiskit_ibm_runtime import QiskitRuntimeService
178
+ provider = QiskitRuntimeService(channel='ibm_quantum', token="set your own token here")
179
+ backend = provider.get_backend("ibm_kyoto")
180
+
181
+ # create sampler from the actual backend
182
+ sampler = SamplerV2.from_backend(backend)
183
+
184
+ # run a sampler job on the parameterized circuits with noise model of the actual hardware
185
+ bell_t = transpile(bell, AerSimulator(basis_gates=["ecr", "id", "rz", "sx"]), optimization_level=0)
186
+ job3 = sampler.run([bell_t], shots=128)
187
+ job_result = job3.result()
188
+ print(f"counts for Bell circuit w/noise: {job_result[0].data.meas.get_counts()}")
189
+ ```
190
+
191
+ ## Contribution Guidelines
192
+
193
+ If you'd like to contribute to Aer, please take a look at our
194
+ [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.
195
+
196
+ 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).
197
+
198
+ ## Next Steps
199
+
200
+ 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/).
201
+
202
+ ## Authors and Citation
203
+
204
+ Aer is the work of [many people](https://github.com/Qiskit/qiskit-aer/graphs/contributors) who contribute to the project at different levels.
205
+ If you use Qiskit, please cite as per the included [BibTeX file](https://github.com/Qiskit/qiskit/blob/main/CITATION.bib).
206
+
207
+ ## License
208
+
209
+ [Apache License 2.0](LICENSE.txt)
@@ -0,0 +1,83 @@
1
+ qiskit_aer/VERSION.txt,sha256=iLg4JmJs8VgUZhur2Tz96sfuZdaEqMnhJOndMb1eIfU,8
2
+ qiskit_aer/__init__.py,sha256=Mq96mPi4lEE7SqLJ2e6U0_aKoumXN6OMf_Y7_RhyaQo,2280
3
+ qiskit_aer/aererror.py,sha256=I0J99HhcgBgCVfvBlmgrUCbzXw7DOmU4onVZapDwh-Q,935
4
+ qiskit_aer/aerprovider.py,sha256=_Rr5-Qut34PGDIPgc6lTdTe2diDv0kU9IeOIFoyzXx0,4741
5
+ qiskit_aer/version.py,sha256=3iFQbZH1inAiblXWT8W0ebcddgYjlEnoP2D52GZ6Wdg,2519
6
+ qiskit_aer/backends/__init__.py,sha256=KVmXby1IxtTVfO7XAntPmsT2qtvgfWuIk6avBwp6-cs,731
7
+ qiskit_aer/backends/aer_compiler.py,sha256=Wf1I5IjyiT_EclgH-I8mP0GLMyUumlsZCfrD4rZ6Jq4,43524
8
+ qiskit_aer/backends/aer_simulator.py,sha256=OO1ceEnfPQhKTEeJ8n1WfBedYXtuVRrrc2ayw-3Rxkk,44681
9
+ qiskit_aer/backends/aerbackend.py,sha256=BabBIStTWQX9oyW1-qtfcp1sW8GyoWpimyXQ4ZQNCUc,29067
10
+ qiskit_aer/backends/backend_utils.py,sha256=Zpj8xgpvV40ECbw8Jm3gTgUcBLSGorUFUoJWiTPO0UE,13537
11
+ qiskit_aer/backends/backendconfiguration.py,sha256=MLeMLROXy64myavbplK4yRe4LLi5_hvUzlDdaxiViUY,15235
12
+ qiskit_aer/backends/backendproperties.py,sha256=ggH7kqeCuKHwpkqr7WuWWLrPJnL88-yb45AFMbBItO0,20436
13
+ qiskit_aer/backends/compatibility.py,sha256=27kQTYyg4OexFRSUHyORW9O068w4sej_C875I-fiASg,10529
14
+ qiskit_aer/backends/controller_wrappers.cp314-win_amd64.pyd,sha256=zf988Ze4u_mfEkX49eS21qv4zThFzMFRZxuQ-BUzg2Y,3362304
15
+ qiskit_aer/backends/libopenblas.dll,sha256=NVDoFXxqzPEF8NNdwoGuDYx3V8IdnpCS9KzonUn60pU,36865400
16
+ qiskit_aer/backends/name_mapping.py,sha256=xPsjHIWt4NKWh85EP9BoTOwfnX_PTX-vs53R2xmGupo,8053
17
+ qiskit_aer/backends/qasm_simulator.py,sha256=W8iYv6ox9tHhKL93JsKA3jxXSxTYbwz9nf1G_piDZnY,35337
18
+ qiskit_aer/backends/statevector_simulator.py,sha256=wuE4PNxO67x5hTa7LW0upOgnzg48ymayGWyl_YmhMGk,12225
19
+ qiskit_aer/backends/unitary_simulator.py,sha256=rsqshoxMdhqjQHVvfX_961X9BrP5d3tcom7IUhkibBM,11877
20
+ qiskit_aer/jobs/__init__.py,sha256=ewrY1w2BRa8C0FhvAPmLxBiikKs7GeGGiiGuRbmbtvI,946
21
+ qiskit_aer/jobs/aerjob.py,sha256=_UoBZMCv1LfZy2NKXGeMZ7hdf4M1F3QiMCi_PJDDmkA,5179
22
+ qiskit_aer/jobs/utils.py,sha256=lGzpsP_OdQ2clw8-i9UcggoirUrQ6r0v7FsFMPHs0Uc,2145
23
+ qiskit_aer/library/__init__.py,sha256=jx_N_N0X6V88p2gfMvM3Eb51apasuUr5MFQwLgnms_Q,6125
24
+ qiskit_aer/library/default_qubits.py,sha256=ynxu9L6IW-I4hbPNDgihHzloyuNfwRk72cGZjfHrkHM,1461
25
+ qiskit_aer/library/instructions_table.csv,sha256=U2lEeXMD3kugRiK2a6fr5cI9swddI_wMLMbyqnkVZQQ,1229
26
+ qiskit_aer/library/control_flow_instructions/__init__.py,sha256=Hngu8pAeSbGtGqLhEzb7YfGC8q-2qsPJjoEcGxmNB1I,645
27
+ qiskit_aer/library/control_flow_instructions/jump.py,sha256=o01JyLc9HVTtw77tvTkR1EboRBCjdC72xRYuXwyqeRo,1460
28
+ qiskit_aer/library/control_flow_instructions/mark.py,sha256=to0hJlaIIQmB7PowyjWXilaDuPJz3soK6XjrUD7IN4o,930
29
+ qiskit_aer/library/control_flow_instructions/store.py,sha256=OCp1vp8loahD1PXXDl6UO2NblN9BOZ2WxalUY1ZOxKQ,945
30
+ qiskit_aer/library/save_instructions/__init__.py,sha256=uVwgxRk8ugHo_7uDHNtjF6NoMDXyQ-LaTQbRmGGT_jU,1574
31
+ qiskit_aer/library/save_instructions/save_amplitudes.py,sha256=GhbPJy_ZYgACd3Al2aggHptrczSBGxwlM5zThfVialw,6687
32
+ qiskit_aer/library/save_instructions/save_clifford.py,sha256=1EpL7nD5T_NFa4Vp4Utrf9mFnZjThagdUxsKShPlXpI,2291
33
+ qiskit_aer/library/save_instructions/save_data.py,sha256=JVJ3WRs982ks9zLIan7LObPFAX5eIuSAb3P87UfsiGY,4993
34
+ qiskit_aer/library/save_instructions/save_density_matrix.py,sha256=9ipIV_6JJnQKUtULqdF2-gYSaLFKfcMdEkp4uIyJepI,3623
35
+ qiskit_aer/library/save_instructions/save_expectation_value.py,sha256=Bz1PLvwqXjyQmO0var69GOTDh6LlyFQ383pA1MexliI,10147
36
+ qiskit_aer/library/save_instructions/save_matrix_product_state.py,sha256=H0-fCq5EahsEOMpg5Q6T9z2JlbJS9nyZUuo_5ZqrlEo,2755
37
+ qiskit_aer/library/save_instructions/save_probabilities.py,sha256=poyJXA03QuvmqsHFm6ifsjgSP4Gq3rd4XZLGOLKWis8,6153
38
+ qiskit_aer/library/save_instructions/save_stabilizer.py,sha256=VQ-9qKtQ5KyW3M8L9W2oMET3Qj07KUxf45AmeOZ8Efg,2788
39
+ qiskit_aer/library/save_instructions/save_state.py,sha256=tz33r3Re6IXKFQHZRMmZa7zNoPTIMSWNgitEeb9_KG4,3126
40
+ qiskit_aer/library/save_instructions/save_statevector.py,sha256=a2yR0uHqUGmGbGAbn9wJFhprhj3s_fnesgr3zp6SpVE,4848
41
+ qiskit_aer/library/save_instructions/save_superop.py,sha256=qJTKmcSmivBmCA-drf0rFYxCAI_VPUCMVDR1rqhbf20,2219
42
+ qiskit_aer/library/save_instructions/save_unitary.py,sha256=36UELIKLz8ehM2NdA6YaZeDJuY8dPkp8ioYJSRJWuqI,2235
43
+ qiskit_aer/library/set_instructions/__init__.py,sha256=iRdHLmSthlped1f9LtDeEqvvXJgkXgvuRa6RCMoyY-g,936
44
+ qiskit_aer/library/set_instructions/set_density_matrix.py,sha256=iS5ZXq-t2n-tKYGggPfrFemOJ1U7171CgceeLzx2iII,2690
45
+ qiskit_aer/library/set_instructions/set_matrix_product_state.py,sha256=nAKzfOt8ECYowfvRFGSEKofGdUvrLMRQf4mp-xj5M0A,3024
46
+ qiskit_aer/library/set_instructions/set_stabilizer.py,sha256=aNIkgMtWOH1FwQbsF0tW6icWhjJ0CfgQr6Kr_Rp6UL8,2616
47
+ qiskit_aer/library/set_instructions/set_statevector.py,sha256=dP7kWxkv8Okw43YscjduYPlXpcJXmWF3feEplhB1N48,2634
48
+ qiskit_aer/library/set_instructions/set_superop.py,sha256=-HkDurBuYiPR7_swgPCsNKrLPDIE5W5xRJrGyMFp7pw,2655
49
+ qiskit_aer/library/set_instructions/set_unitary.py,sha256=2NtAxwpv455F_DA1Ops0Cdw-p33OZbs_o3vb6goHiwg,2602
50
+ qiskit_aer/noise/__init__.py,sha256=G9YkydHEhi9DiW22kHfDogthm3GNB0-ygG8ePO4VF0o,8012
51
+ qiskit_aer/noise/noise_model.py,sha256=LHQJB_B0jXddcZv1_0DqiMohR2eS7xgQC4PrEpH__7c,51255
52
+ qiskit_aer/noise/noiseerror.py,sha256=a6ixeXj0LMtOR_4K08DH6f1dkTnpc-52Wkgi-b2J3m0,939
53
+ qiskit_aer/noise/device/__init__.py,sha256=X5QmdXJLTTExbrsUe5BTff44Ncp7dc5ze0BZGX9LPmY,920
54
+ qiskit_aer/noise/device/models.py,sha256=8pmyB-ahpS_WtFY2Ll3md7t6C4szbkgKLJEbkKu8EoA,16458
55
+ qiskit_aer/noise/device/parameters.py,sha256=PDVUmMrA4dHG-CHFPvhI7Gy0gYHEpKO5V_AbFwGbRFA,7433
56
+ qiskit_aer/noise/errors/__init__.py,sha256=JsVnCI5Bx2uHcuprELt1eylYVa70H7AmnedMXIoqtmI,1215
57
+ qiskit_aer/noise/errors/base_quantum_error.py,sha256=3sspjSAV7xDFNZN4aDtE2dXZYvIWAf4k0uog6j10ibI,4053
58
+ qiskit_aer/noise/errors/pauli_error.py,sha256=iqMnIRQ4dNH4GUVk4b24fLrpTLKVLaecoogKqCS7V7A,11656
59
+ qiskit_aer/noise/errors/pauli_lindblad_error.py,sha256=Pzbx8NAdN7T0cr8QUW5_gTLFqrBVRpw6LZTBJ44VXaA,15497
60
+ qiskit_aer/noise/errors/quantum_error.py,sha256=t3gqwBbnN47XXU42ZkZP2w3vi39cs7hZ_UNUxSmNzAE,18751
61
+ qiskit_aer/noise/errors/readout_error.py,sha256=Bg4u7GzfbG72x2r1PBYXaMVp34xSdarh_Cm02ta1hXA,12759
62
+ qiskit_aer/noise/errors/standard_errors.py,sha256=t2IpO3DddYmDgwHra9-X4P6Gs7ks6JqFYsLoWaZK-2A,17593
63
+ qiskit_aer/noise/passes/__init__.py,sha256=yHs9Xdx8gMCDW04d-nlAHBTc3kkeCqJA_qIOjsyf5o4,631
64
+ qiskit_aer/noise/passes/local_noise_pass.py,sha256=5hdw5h_qEse-rQm8YnHj3h4mlpGN-xJ4JcmpTZoNlaI,6820
65
+ qiskit_aer/noise/passes/relaxation_noise_pass.py,sha256=ueO4mSaBpPcwiGGD9ISwJaDsr0uJz5iu9AHvuU8R5F4,5664
66
+ qiskit_aer/primitives/__init__.py,sha256=abu-jscsHP7yMBSNQgTX6WGt0rPjbl0qrCofgtPz1FU,1185
67
+ qiskit_aer/primitives/estimator.py,sha256=VrZX1hgyxWT9gojUt-8uAmzG3pc8v3jjczLKPgPvycI,31004
68
+ qiskit_aer/primitives/estimator_v2.py,sha256=cYPr0ll_MtxDyR6JD9rK-MfacDgsymaz6d9ee2i6uFA,6274
69
+ qiskit_aer/primitives/sampler.py,sha256=Vd-mI0RCiCQL6Ne_vhgCicvE7i7I42vIRoBTew_dP0g,13458
70
+ qiskit_aer/primitives/sampler_v2.py,sha256=xVHgSA9b0sysU1lB6JDIAgsSg4VNAPVi2-ep9TW7QL8,8793
71
+ qiskit_aer/quantum_info/__init__.py,sha256=66i-PuhwGWLrSDjXWb_liP9ETgVccz-rAW6RVbDuahU,881
72
+ qiskit_aer/quantum_info/states/__init__.py,sha256=2pVnCLi0ptwcZnDdJmpjk_FKHaHqdl6WgCmubwvK57I,613
73
+ qiskit_aer/quantum_info/states/aer_densitymatrix.py,sha256=erww35cYAYnPOCZrIxlrghXWqN9bCvph6zq_slBPFOM,12644
74
+ qiskit_aer/quantum_info/states/aer_state.py,sha256=L8kpq63kIvPPLJbUTi4twl2sX6Ex4t2XT41oTMWTyK8,20678
75
+ qiskit_aer/quantum_info/states/aer_statevector.py,sha256=QaSU9CPj7th-3JrSh0jfLcx6MPQI_fX5Mv5-H0awUJQ,11835
76
+ qiskit_aer/utils/__init__.py,sha256=LUoE-clDRxrr6LLjp4t_BAXTrw3k_pHofocmgl8J4hs,1401
77
+ qiskit_aer/utils/noise_model_inserter.py,sha256=mpY8tczkyQPqEUNNLICt4akIMCXZcnTXrCW6o2oqRRc,3044
78
+ qiskit_aer/utils/noise_transformation.py,sha256=l4QxR4uzJaKbWRpfjpg0Kc0_qTzD4QHERNRE-zCKJNE,16805
79
+ qiskit_aer-0.17.2.dist-info/licenses/LICENSE.txt,sha256=xz1Ee4nZJSNFTjKk_otdNPXF2yQUz_Wm52cnF5LuvV8,11619
80
+ qiskit_aer-0.17.2.dist-info/METADATA,sha256=gvhL4hzkvpSBH0HTI16lO7-Dq3IlSrDD8xQ2YVHJv4c,8450
81
+ qiskit_aer-0.17.2.dist-info/WHEEL,sha256=lCMqTXlaEtt78xHU31d8Zd4HGN_cBUVXptBXjt73558,96
82
+ qiskit_aer-0.17.2.dist-info/top_level.txt,sha256=LZFDAyuS4KDSlM0n99oI4371iy0dxswiM7lZVW2GpCQ,11
83
+ qiskit_aer-0.17.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: skbuild 0.18.1
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-win_amd64
5
+
@@ -0,0 +1,203 @@
1
+ Copyright 2018 IBM and its contributors
2
+
3
+ Apache License
4
+ Version 2.0, January 2004
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction,
12
+ and distribution as defined by Sections 1 through 9 of this document.
13
+
14
+ "Licensor" shall mean the copyright owner or entity authorized by
15
+ the copyright owner that is granting the License.
16
+
17
+ "Legal Entity" shall mean the union of the acting entity and all
18
+ other entities that control, are controlled by, or are under common
19
+ control with that entity. For the purposes of this definition,
20
+ "control" means (i) the power, direct or indirect, to cause the
21
+ direction or management of such entity, whether by contract or
22
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
23
+ outstanding shares, or (iii) beneficial ownership of such entity.
24
+
25
+ "You" (or "Your") shall mean an individual or Legal Entity
26
+ exercising permissions granted by this License.
27
+
28
+ "Source" form shall mean the preferred form for making modifications,
29
+ including but not limited to software source code, documentation
30
+ source, and configuration files.
31
+
32
+ "Object" form shall mean any form resulting from mechanical
33
+ transformation or translation of a Source form, including but
34
+ not limited to compiled object code, generated documentation,
35
+ and conversions to other media types.
36
+
37
+ "Work" shall mean the work of authorship, whether in Source or
38
+ Object form, made available under the License, as indicated by a
39
+ copyright notice that is included in or attached to the work
40
+ (an example is provided in the Appendix below).
41
+
42
+ "Derivative Works" shall mean any work, whether in Source or Object
43
+ form, that is based on (or derived from) the Work and for which the
44
+ editorial revisions, annotations, elaborations, or other modifications
45
+ represent, as a whole, an original work of authorship. For the purposes
46
+ of this License, Derivative Works shall not include works that remain
47
+ separable from, or merely link (or bind by name) to the interfaces of,
48
+ the Work and Derivative Works thereof.
49
+
50
+ "Contribution" shall mean any work of authorship, including
51
+ the original version of the Work and any modifications or additions
52
+ to that Work or Derivative Works thereof, that is intentionally
53
+ submitted to Licensor for inclusion in the Work by the copyright owner
54
+ or by an individual or Legal Entity authorized to submit on behalf of
55
+ the copyright owner. For the purposes of this definition, "submitted"
56
+ means any form of electronic, verbal, or written communication sent
57
+ to the Licensor or its representatives, including but not limited to
58
+ communication on electronic mailing lists, source code control systems,
59
+ and issue tracking systems that are managed by, or on behalf of, the
60
+ Licensor for the purpose of discussing and improving the Work, but
61
+ excluding communication that is conspicuously marked or otherwise
62
+ designated in writing by the copyright owner as "Not a Contribution."
63
+
64
+ "Contributor" shall mean Licensor and any individual or Legal Entity
65
+ on behalf of whom a Contribution has been received by Licensor and
66
+ subsequently incorporated within the Work.
67
+
68
+ 2. Grant of Copyright License. Subject to the terms and conditions of
69
+ this License, each Contributor hereby grants to You a perpetual,
70
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71
+ copyright license to reproduce, prepare Derivative Works of,
72
+ publicly display, publicly perform, sublicense, and distribute the
73
+ Work and such Derivative Works in Source or Object form.
74
+
75
+ 3. Grant of Patent License. Subject to the terms and conditions of
76
+ this License, each Contributor hereby grants to You a perpetual,
77
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
+ (except as stated in this section) patent license to make, have made,
79
+ use, offer to sell, sell, import, and otherwise transfer the Work,
80
+ where such license applies only to those patent claims licensable
81
+ by such Contributor that are necessarily infringed by their
82
+ Contribution(s) alone or by combination of their Contribution(s)
83
+ with the Work to which such Contribution(s) was submitted. If You
84
+ institute patent litigation against any entity (including a
85
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
86
+ or a Contribution incorporated within the Work constitutes direct
87
+ or contributory patent infringement, then any patent licenses
88
+ granted to You under this License for that Work shall terminate
89
+ as of the date such litigation is filed.
90
+
91
+ 4. Redistribution. You may reproduce and distribute copies of the
92
+ Work or Derivative Works thereof in any medium, with or without
93
+ modifications, and in Source or Object form, provided that You
94
+ meet the following conditions:
95
+
96
+ (a) You must give any other recipients of the Work or
97
+ Derivative Works a copy of this License; and
98
+
99
+ (b) You must cause any modified files to carry prominent notices
100
+ stating that You changed the files; and
101
+
102
+ (c) You must retain, in the Source form of any Derivative Works
103
+ that You distribute, all copyright, patent, trademark, and
104
+ attribution notices from the Source form of the Work,
105
+ excluding those notices that do not pertain to any part of
106
+ the Derivative Works; and
107
+
108
+ (d) If the Work includes a "NOTICE" text file as part of its
109
+ distribution, then any Derivative Works that You distribute must
110
+ include a readable copy of the attribution notices contained
111
+ within such NOTICE file, excluding those notices that do not
112
+ pertain to any part of the Derivative Works, in at least one
113
+ of the following places: within a NOTICE text file distributed
114
+ as part of the Derivative Works; within the Source form or
115
+ documentation, if provided along with the Derivative Works; or,
116
+ within a display generated by the Derivative Works, if and
117
+ wherever such third-party notices normally appear. The contents
118
+ of the NOTICE file are for informational purposes only and
119
+ do not modify the License. You may add Your own attribution
120
+ notices within Derivative Works that You distribute, alongside
121
+ or as an addendum to the NOTICE text from the Work, provided
122
+ that such additional attribution notices cannot be construed
123
+ as modifying the License.
124
+
125
+ You may add Your own copyright statement to Your modifications and
126
+ may provide additional or different license terms and conditions
127
+ for use, reproduction, or distribution of Your modifications, or
128
+ for any such Derivative Works as a whole, provided Your use,
129
+ reproduction, and distribution of the Work otherwise complies with
130
+ the conditions stated in this License.
131
+
132
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
133
+ any Contribution intentionally submitted for inclusion in the Work
134
+ by You to the Licensor shall be under the terms and conditions of
135
+ this License, without any additional terms or conditions.
136
+ Notwithstanding the above, nothing herein shall supersede or modify
137
+ the terms of any separate license agreement you may have executed
138
+ with Licensor regarding such Contributions.
139
+
140
+ 6. Trademarks. This License does not grant permission to use the trade
141
+ names, trademarks, service marks, or product names of the Licensor,
142
+ except as required for reasonable and customary use in describing the
143
+ origin of the Work and reproducing the content of the NOTICE file.
144
+
145
+ 7. Disclaimer of Warranty. Unless required by applicable law or
146
+ agreed to in writing, Licensor provides the Work (and each
147
+ Contributor provides its Contributions) on an "AS IS" BASIS,
148
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
149
+ implied, including, without limitation, any warranties or conditions
150
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
151
+ PARTICULAR PURPOSE. You are solely responsible for determining the
152
+ appropriateness of using or redistributing the Work and assume any
153
+ risks associated with Your exercise of permissions under this License.
154
+
155
+ 8. Limitation of Liability. In no event and under no legal theory,
156
+ whether in tort (including negligence), contract, or otherwise,
157
+ unless required by applicable law (such as deliberate and grossly
158
+ negligent acts) or agreed to in writing, shall any Contributor be
159
+ liable to You for damages, including any direct, indirect, special,
160
+ incidental, or consequential damages of any character arising as a
161
+ result of this License or out of the use or inability to use the
162
+ Work (including but not limited to damages for loss of goodwill,
163
+ work stoppage, computer failure or malfunction, or any and all
164
+ other commercial damages or losses), even if such Contributor
165
+ has been advised of the possibility of such damages.
166
+
167
+ 9. Accepting Warranty or Additional Liability. While redistributing
168
+ the Work or Derivative Works thereof, You may choose to offer,
169
+ and charge a fee for, acceptance of support, warranty, indemnity,
170
+ or other liability obligations and/or rights consistent with this
171
+ License. However, in accepting such obligations, You may act only
172
+ on Your own behalf and on Your sole responsibility, not on behalf
173
+ of any other Contributor, and only if You agree to indemnify,
174
+ defend, and hold each Contributor harmless for any liability
175
+ incurred by, or claims asserted against, such Contributor by reason
176
+ of your accepting any such warranty or additional liability.
177
+
178
+ END OF TERMS AND CONDITIONS
179
+
180
+ APPENDIX: How to apply the Apache License to your work.
181
+
182
+ To apply the Apache License to your work, attach the following
183
+ boilerplate notice, with the fields enclosed by brackets "[]"
184
+ replaced with your own identifying information. (Don't include
185
+ the brackets!) The text should be enclosed in the appropriate
186
+ comment syntax for the file format. We also recommend that a
187
+ file or class name and description of purpose be included on the
188
+ same "printed page" as the copyright notice for easier
189
+ identification within third-party archives.
190
+
191
+ Copyright 2018 IBM and its contributors.
192
+
193
+ Licensed under the Apache License, Version 2.0 (the "License");
194
+ you may not use this file except in compliance with the License.
195
+ You may obtain a copy of the License at
196
+
197
+ http://www.apache.org/licenses/LICENSE-2.0
198
+
199
+ Unless required by applicable law or agreed to in writing, software
200
+ distributed under the License is distributed on an "AS IS" BASIS,
201
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
202
+ See the License for the specific language governing permissions and
203
+ limitations under the License.
@@ -0,0 +1 @@
1
+ qiskit_aer