azure-quantum 0.28.291394__py3-none-any.whl → 0.28.302656b1__py3-none-any.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.
@@ -6,4 +6,4 @@
6
6
  # Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
7
  # --------------------------------------------------------------------------
8
8
 
9
- VERSION = "0.28.291394"
9
+ VERSION = "0.28.302656b1"
@@ -128,7 +128,7 @@ class IonQQPUQirBackend(IonQQirBackendBase):
128
128
 
129
129
 
130
130
  class IonQAriaQirBackend(IonQQirBackendBase):
131
- backend_names = ("ionq.qpu.aria-1",)
131
+ backend_names = ("ionq.qpu.aria-1", "ionq.qpu.aria-2")
132
132
 
133
133
  def __init__(self, name: str, provider: "AzureQuantumProvider", **kwargs):
134
134
  """Base class for interfacing with an IonQ Aria QPU backend"""
@@ -316,7 +316,7 @@ class IonQQPUNativeBackend(IonQQPUBackend):
316
316
 
317
317
 
318
318
  class IonQAriaBackend(IonQBackend):
319
- backend_names = ("ionq.qpu.aria-1",)
319
+ backend_names = ("ionq.qpu.aria-1", "ionq.qpu.aria-2")
320
320
 
321
321
  def __init__(self, name: str, provider: "AzureQuantumProvider", **kwargs):
322
322
  """Base class for interfacing with an IonQ Aria QPU backend"""
@@ -90,8 +90,8 @@ class QuantinuumQirBackendBase(AzureQirBackend):
90
90
  class QuantinuumSyntaxCheckerQirBackend(QuantinuumQirBackendBase):
91
91
  backend_names = (
92
92
  # Note: Target names on the same line are equivalent.
93
- "quantinuum.hqs-lt-s1-apival", "quantinuum.sim.h1-1sc",
94
- "quantinuum.hqs-lt-s2-apival", "quantinuum.sim.h1-2sc",
93
+ "quantinuum.sim.h1-1sc",
94
+ "quantinuum.sim.h1-2sc",
95
95
  "quantinuum.sim.h2-1sc",
96
96
  )
97
97
 
@@ -128,8 +128,8 @@ class QuantinuumSyntaxCheckerQirBackend(QuantinuumQirBackendBase):
128
128
  class QuantinuumEmulatorQirBackend(QuantinuumQirBackendBase):
129
129
  backend_names = (
130
130
  # Note: Target names on the same line are equivalent.
131
- "quantinuum.hqs-lt-s1-sim", "quantinuum.sim.h1-1e",
132
- "quantinuum.hqs-lt-s2-sim", "quantinuum.sim.h1-2e",
131
+ "quantinuum.sim.h1-1e",
132
+ "quantinuum.sim.h1-2e",
133
133
  "quantinuum.sim.h2-1e",
134
134
  )
135
135
 
@@ -166,8 +166,8 @@ class QuantinuumEmulatorQirBackend(QuantinuumQirBackendBase):
166
166
  class QuantinuumQPUQirBackend(QuantinuumQirBackendBase):
167
167
  backend_names = (
168
168
  # Note: Target names on the same line are equivalent.
169
- "quantinuum.hqs-lt-s1", "quantinuum.qpu.h1-1",
170
- "quantinuum.hqs-lt-s2", "quantinuum.qpu.h1-2",
169
+ "quantinuum.qpu.h1-1",
170
+ "quantinuum.qpu.h1-2",
171
171
  "quantinuum.qpu.h2-1",
172
172
  )
173
173
 
@@ -258,8 +258,8 @@ class QuantinuumBackend(AzureBackend):
258
258
  class QuantinuumSyntaxCheckerBackend(QuantinuumBackend):
259
259
  backend_names = (
260
260
  # Note: Target names on the same line are equivalent.
261
- "quantinuum.hqs-lt-s1-apival", "quantinuum.sim.h1-1sc",
262
- "quantinuum.hqs-lt-s2-apival", "quantinuum.sim.h1-2sc",
261
+ "quantinuum.sim.h1-1sc",
262
+ "quantinuum.sim.h1-2sc",
263
263
  "quantinuum.sim.h2-1sc",
264
264
  )
265
265
 
@@ -296,8 +296,8 @@ class QuantinuumSyntaxCheckerBackend(QuantinuumBackend):
296
296
  class QuantinuumEmulatorBackend(QuantinuumBackend):
297
297
  backend_names = (
298
298
  # Note: Target names on the same line are equivalent.
299
- "quantinuum.hqs-lt-s1-sim", "quantinuum.sim.h1-1e",
300
- "quantinuum.hqs-lt-s2-sim", "quantinuum.sim.h1-2e",
299
+ "quantinuum.sim.h1-1e",
300
+ "quantinuum.sim.h1-2e",
301
301
  "quantinuum.sim.h2-1e",
302
302
  )
303
303
 
@@ -334,8 +334,8 @@ class QuantinuumEmulatorBackend(QuantinuumBackend):
334
334
  class QuantinuumQPUBackend(QuantinuumBackend):
335
335
  backend_names = (
336
336
  # Note: Target names on the same line are equivalent.
337
- "quantinuum.hqs-lt-s1", "quantinuum.qpu.h1-1",
338
- "quantinuum.hqs-lt-s2", "quantinuum.qpu.h1-2",
337
+ "quantinuum.qpu.h1-1",
338
+ "quantinuum.qpu.h1-2",
339
339
  "quantinuum.qpu.h2-1",
340
340
  )
341
341
 
@@ -12,19 +12,22 @@ from azure.quantum._client.models import CostEstimate, UsageEvent
12
12
  COST_1QUBIT_GATE_MAP = {
13
13
  "ionq.simulator" : 0.0,
14
14
  "ionq.qpu" : 0.00003,
15
- "ionq.qpu.aria-1" : 0.0002205
15
+ "ionq.qpu.aria-1" : 0.0002205,
16
+ "ionq.qpu.aria-2" : 0.0002205
16
17
  }
17
18
 
18
19
  COST_2QUBIT_GATE_MAP = {
19
20
  "ionq.simulator" : 0.0,
20
21
  "ionq.qpu" : 0.0003,
21
- "ionq.qpu.aria-1" : 0.00098
22
+ "ionq.qpu.aria-1" : 0.00098,
23
+ "ionq.qpu.aria-2" : 0.00098
22
24
  }
23
25
 
24
26
  MIN_PRICE_MAP = {
25
27
  "ionq.simulator" : 0.0,
26
28
  "ionq.qpu" : 1.0,
27
- "ionq.qpu.aria-1" : 1.0
29
+ "ionq.qpu.aria-1" : 97.5,
30
+ "ionq.qpu.aria-2" : 97.5
28
31
  }
29
32
 
30
33
  def int_to_bitstring(k: int, num_qubits: int, measured_qubit_ids: List[int]):
@@ -39,7 +42,8 @@ class IonQ(Target):
39
42
  target_names = (
40
43
  "ionq.qpu",
41
44
  "ionq.simulator",
42
- "ionq.qpu.aria-1"
45
+ "ionq.qpu.aria-1",
46
+ "ionq.qpu.aria-2"
43
47
  )
44
48
 
45
49
  def __init__(
@@ -132,7 +136,7 @@ class IonQ(Target):
132
136
 
133
137
  For the most current pricing details, see
134
138
  https://docs.microsoft.com/azure/quantum/provider-ionq#pricing
135
- Or find your workspace and view pricing options in the "Provider" tab
139
+ or find your workspace and view pricing options in the "Provider" tab
136
140
  of your workspace: https://aka.ms/aq/myworkspaces
137
141
 
138
142
  :param circuit: Quantum circuit in IonQ JSON format (for examples,
@@ -20,6 +20,15 @@ class HTMLWrapper:
20
20
 
21
21
 
22
22
  class MicrosoftEstimatorResult(dict):
23
+ """
24
+ Microsoft Resource Estimator result.
25
+
26
+ Job results from the `microsoft.estimator` target are represented by
27
+ instances of this class. The class represents simple resource estimation
28
+ results as well as batching resource estimation results. The latter can
29
+ be indexed by an integer index to access an individual result from the
30
+ batching result.
31
+ """
23
32
  MAX_DEFAULT_ITEMS_IN_TABLE = 5
24
33
 
25
34
  def __init__(self, data: Union[Dict, List]):
@@ -112,7 +121,7 @@ class MicrosoftEstimatorResult(dict):
112
121
  [xs, ys] = zip(*[
113
122
  (self.data(i)['physicalCounts']['runtime'],
114
123
  self.data(i)['physicalCounts']['physicalQubits'])
115
- for i in range(len(self))])
124
+ for i in range(len(self))])
116
125
 
117
126
  _ = plt.figure(figsize=(15, 8))
118
127
 
@@ -154,6 +163,102 @@ class MicrosoftEstimatorResult(dict):
154
163
  plt.legend(loc="upper left")
155
164
  plt.show()
156
165
 
166
+ @property
167
+ def call_graph(self):
168
+ """
169
+ Shows the call graph of a simple resource estimation result with
170
+ profiling information.
171
+ """
172
+ try:
173
+ import graphviz
174
+ except ImportError:
175
+ raise ImportError(
176
+ "Missing optional 'graphviz' dependency. To install run: "
177
+ "pip install graphviz"
178
+ )
179
+
180
+ if not self._is_simple:
181
+ raise ValueError("The `call_graph` method cannot be called on a "
182
+ "batching result, try indexing into the result "
183
+ "first")
184
+
185
+ if not hasattr(self, "_call_graph"):
186
+ from itertools import groupby
187
+
188
+ data = self.data().get("callGraph", None)
189
+
190
+ if data is None:
191
+ raise ValueError("The result does not contain any profiling "
192
+ "information. Set "
193
+ "`profiling.call_stack_depth` to some value")
194
+
195
+ g = graphviz.Digraph()
196
+ g.attr('node', shape='box', style='rounded, filled',
197
+ fontname='Arial', fontsize='10', margin='0.05,0.05',
198
+ height='0', width='0', fillcolor='#f6f6f6', color='#e3e3e3')
199
+ g.attr('edge', color='#d0d0d0')
200
+
201
+ nodes_indexed = [{**node, 'index': index}
202
+ for index, node in enumerate(data['nodes'])]
203
+
204
+ def sorter(node): return node['depth']
205
+ nodes_indexed.sort(key=sorter)
206
+ for _, nodes in groupby(nodes_indexed, sorter):
207
+ with g.subgraph() as s:
208
+ s.attr(rank='same')
209
+ for node in nodes:
210
+ s.node(str(node['index']), node['name'])
211
+
212
+ for edge in data['edges']:
213
+ g.edge(str(edge[0]), str(edge[1]))
214
+
215
+ self._call_graph = g
216
+
217
+ return self._call_graph
218
+
219
+ @property
220
+ def profile(self):
221
+ """
222
+ """
223
+ if not self._is_simple:
224
+ raise ValueError("The `call_graph` method cannot be called on a "
225
+ "batching result, try indexing into the result "
226
+ "first")
227
+
228
+ if not hasattr(self, "_profile"):
229
+ import base64
230
+ import json
231
+
232
+ profile = self.data().get("profile", None)
233
+
234
+ if profile is None:
235
+ raise ValueError("The result does not contain any profiling "
236
+ "information. Set "
237
+ "`profiling.call_stack_depth` to some value")
238
+
239
+ profile_encoded = json.dumps(profile).encode('utf-8')
240
+ data64 = base64.b64encode(profile_encoded).decode('utf-8')
241
+
242
+ self._profile = f"""
243
+ <a href="data:text/json;base64,{data64}" download="profile.json">
244
+ Download the profile</a> to your computer. Then open the profile
245
+ by dragging it into <a href="https://speedscope.app"
246
+ target="_blank">speedscope</a>.
247
+ """
248
+
249
+ return HTMLWrapper(self._profile)
250
+
251
+ @property
252
+ def json(self):
253
+ """
254
+ Returns a JSON representation of the resource estimation result data.
255
+ """
256
+ if not hasattr(self, "_json"):
257
+ import json
258
+ self._json = json.dumps(self._data)
259
+
260
+ return self._json
261
+
157
262
  def _summary_data_frame(self, **kwargs):
158
263
  try:
159
264
  import pandas as pd
@@ -261,6 +261,17 @@ class MicrosoftEstimatorConstraints(AutoValidatingParams):
261
261
  max_t_factories: Optional[int] = validating_field(at_least_one)
262
262
 
263
263
 
264
+ @dataclass
265
+ class MicrosoftEstimatorProfiling(AutoValidatingParams):
266
+ @staticmethod
267
+ def at_most_30(name, value):
268
+ if value < 0 or value > 30:
269
+ raise ValueError(f"{name} must be nonnegative and at most 30")
270
+
271
+ call_stack_depth: Optional[int] = validating_field(at_most_30)
272
+ inline_functions: Optional[bool] = None
273
+
274
+
264
275
  class MicrosoftEstimatorInputParamsItem(InputParamsItem):
265
276
  """
266
277
  Input params for microsoft.estimator target
@@ -278,6 +289,8 @@ class MicrosoftEstimatorInputParamsItem(InputParamsItem):
278
289
  self.distillation_unit_specifications = [] # type: List[DistillationUnitSpecification]
279
290
  self.constraints: MicrosoftEstimatorConstraints = \
280
291
  MicrosoftEstimatorConstraints()
292
+ self.profiling: MicrosoftEstimatorProfiling = \
293
+ MicrosoftEstimatorProfiling()
281
294
  self.error_budget: Optional[Union[float, ErrorBudgetPartition]] = None
282
295
 
283
296
  def as_dict(self, validate=True) -> Dict[str, Any]:
@@ -303,6 +316,10 @@ class MicrosoftEstimatorInputParamsItem(InputParamsItem):
303
316
  if len(constraints) != 0:
304
317
  result["constraints"] = constraints
305
318
 
319
+ profiling = self.profiling.as_dict(validate)
320
+ if len(profiling) != 0:
321
+ result["profiling"] = profiling
322
+
306
323
  if self.error_budget is not None:
307
324
  if isinstance(self.error_budget, float) or \
308
325
  isinstance(self.error_budget, int):
@@ -14,12 +14,12 @@ class Quantinuum(Target):
14
14
  """Quantinuum target."""
15
15
  target_names = (
16
16
  # Note: Target names on the same line are equivalent.
17
- "quantinuum.hqs-lt-s1", "quantinuum.qpu.h1-1",
18
- "quantinuum.hqs-lt-s1-apival", "quantinuum.sim.h1-1sc",
19
- "quantinuum.hqs-lt-s1-sim", "quantinuum.sim.h1-1e",
20
- "quantinuum.hqs-lt-s2", "quantinuum.qpu.h1-2",
21
- "quantinuum.hqs-lt-s2-apival", "quantinuum.sim.h1-2sc",
22
- "quantinuum.hqs-lt-s2-sim", "quantinuum.sim.h1-2e"
17
+ "quantinuum.qpu.h1-1",
18
+ "quantinuum.sim.h1-1sc",
19
+ "quantinuum.sim.h1-1e",
20
+ "quantinuum.qpu.h1-2",
21
+ "quantinuum.sim.h1-2sc",
22
+ "quantinuum.sim.h1-2e"
23
23
  "quantinuum.qpu.h2-1",
24
24
  "quantinuum.sim.h2-1sc",
25
25
  "quantinuum.sim.h2-1e",
azure/quantum/version.py CHANGED
@@ -5,4 +5,4 @@
5
5
  # Copyright (c) Microsoft Corporation. All rights reserved.
6
6
  # Licensed under the MIT License.
7
7
  ##
8
- __version__ = "0.28.291394"
8
+ __version__ = "0.28.302656b1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azure-quantum
3
- Version: 0.28.291394
3
+ Version: 0.28.302656b1
4
4
  Summary: Python client for Azure Quantum
5
5
  Home-page: https://github.com/microsoft/qdk-python
6
6
  Author: Microsoft
@@ -8,44 +8,46 @@ Classifier: Programming Language :: Python :: 3
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Operating System :: OS Independent
10
10
  Description-Content-Type: text/markdown
11
- Requires-Dist: azure-core (<2.0.0,>=1.26.2)
12
- Requires-Dist: azure-identity (<2.0.0,>=1.12.0)
13
- Requires-Dist: azure-storage-blob (<13.0.0,>=12.14.1)
14
- Requires-Dist: msrest (<1.0,>=0.7.1)
15
- Requires-Dist: numpy (<2.0,>=1.21.0)
16
- Requires-Dist: deprecated (<2.0,>=1.2.12)
17
- Requires-Dist: aiohttp (<4.0,>=3.7.0)
18
- Requires-Dist: aiofile (<4.0,>=3.7.2)
19
- Requires-Dist: Markdown (>=3.4.1)
20
- Requires-Dist: python-markdown-math (>=0.8)
11
+ Requires-Dist: azure-core <2.0.0,>=1.26.2
12
+ Requires-Dist: azure-identity <2.0.0,>=1.12.0
13
+ Requires-Dist: azure-storage-blob <13.0.0,>=12.14.1
14
+ Requires-Dist: msrest <1.0,>=0.7.1
15
+ Requires-Dist: numpy <2.0,>=1.21.0
16
+ Requires-Dist: deprecated <2.0,>=1.2.12
17
+ Requires-Dist: aiohttp <4.0,>=3.7.0
18
+ Requires-Dist: aiofile <4.0,>=3.7.2
19
+ Requires-Dist: Markdown >=3.4.1
20
+ Requires-Dist: python-markdown-math >=0.8
21
21
  Provides-Extra: all
22
- Requires-Dist: cirq-core (<2.0,>=1.1.0) ; extra == 'all'
23
- Requires-Dist: cirq-ionq (<2.0,>=1.1.0) ; extra == 'all'
24
- Requires-Dist: vcrpy (>=4.3.1) ; extra == 'all'
25
- Requires-Dist: azure-devtools (<2.0,>=1.2.0) ; extra == 'all'
26
- Requires-Dist: qiskit-ionq (<1.0,>=0.3.3) ; extra == 'all'
27
- Requires-Dist: qiskit-terra (<0.25.0,>=0.19.1) ; extra == 'all'
28
- Requires-Dist: qiskit-qir (<0.4,>=0.3.1) ; extra == 'all'
29
- Requires-Dist: Markdown (<4.0,>=3.4.1) ; extra == 'all'
30
- Requires-Dist: python-markdown-math (<1.0,>=0.8.0) ; extra == 'all'
31
- Requires-Dist: qsharp (>=0.28.263081) ; extra == 'all'
32
- Requires-Dist: pyquil (>=3.3.2) ; extra == 'all'
22
+ Requires-Dist: cirq-core <2.0,>=1.1.0 ; extra == 'all'
23
+ Requires-Dist: cirq-ionq <2.0,>=1.1.0 ; extra == 'all'
24
+ Requires-Dist: vcrpy >=4.3.1 ; extra == 'all'
25
+ Requires-Dist: azure-devtools <2.0,>=1.2.0 ; extra == 'all'
26
+ Requires-Dist: graphviz >=0.20.1 ; extra == 'all'
27
+ Requires-Dist: qiskit-ionq <1.0,>=0.3.3 ; extra == 'all'
28
+ Requires-Dist: qiskit-terra <0.25.0,>=0.19.1 ; extra == 'all'
29
+ Requires-Dist: qiskit-qir <0.4,>=0.3.1 ; extra == 'all'
30
+ Requires-Dist: Markdown <4.0,>=3.4.1 ; extra == 'all'
31
+ Requires-Dist: python-markdown-math <1.0,>=0.8.0 ; extra == 'all'
32
+ Requires-Dist: qsharp >=0.28.263081 ; extra == 'all'
33
+ Requires-Dist: pyquil >=3.3.2 ; extra == 'all'
33
34
  Provides-Extra: cirq
34
- Requires-Dist: cirq-core (<2.0,>=1.1.0) ; extra == 'cirq'
35
- Requires-Dist: cirq-ionq (<2.0,>=1.1.0) ; extra == 'cirq'
35
+ Requires-Dist: cirq-core <2.0,>=1.1.0 ; extra == 'cirq'
36
+ Requires-Dist: cirq-ionq <2.0,>=1.1.0 ; extra == 'cirq'
36
37
  Provides-Extra: dev
37
- Requires-Dist: vcrpy (>=4.3.1) ; extra == 'dev'
38
- Requires-Dist: azure-devtools (<2.0,>=1.2.0) ; extra == 'dev'
38
+ Requires-Dist: vcrpy >=4.3.1 ; extra == 'dev'
39
+ Requires-Dist: azure-devtools <2.0,>=1.2.0 ; extra == 'dev'
40
+ Requires-Dist: graphviz >=0.20.1 ; extra == 'dev'
39
41
  Provides-Extra: qiskit
40
- Requires-Dist: qiskit-ionq (<1.0,>=0.3.3) ; extra == 'qiskit'
41
- Requires-Dist: qiskit-terra (<0.25.0,>=0.19.1) ; extra == 'qiskit'
42
- Requires-Dist: qiskit-qir (<0.4,>=0.3.1) ; extra == 'qiskit'
43
- Requires-Dist: Markdown (<4.0,>=3.4.1) ; extra == 'qiskit'
44
- Requires-Dist: python-markdown-math (<1.0,>=0.8.0) ; extra == 'qiskit'
42
+ Requires-Dist: qiskit-ionq <1.0,>=0.3.3 ; extra == 'qiskit'
43
+ Requires-Dist: qiskit-terra <0.25.0,>=0.19.1 ; extra == 'qiskit'
44
+ Requires-Dist: qiskit-qir <0.4,>=0.3.1 ; extra == 'qiskit'
45
+ Requires-Dist: Markdown <4.0,>=3.4.1 ; extra == 'qiskit'
46
+ Requires-Dist: python-markdown-math <1.0,>=0.8.0 ; extra == 'qiskit'
45
47
  Provides-Extra: qsharp
46
- Requires-Dist: qsharp (>=0.28.263081) ; extra == 'qsharp'
48
+ Requires-Dist: qsharp >=0.28.263081 ; extra == 'qsharp'
47
49
  Provides-Extra: quil
48
- Requires-Dist: pyquil (>=3.3.2) ; extra == 'quil'
50
+ Requires-Dist: pyquil >=3.3.2 ; extra == 'quil'
49
51
 
50
52
  ![Azure Quantum logo](https://raw.githubusercontent.com/microsoft/qdk-python/main/azure-quantum/Azure-Quantum-logo.png)
51
53
 
@@ -125,6 +127,10 @@ job = target.submit(problem)
125
127
  result = job.get_results()
126
128
  ```
127
129
 
130
+ ## Examples ##
131
+
132
+ You can find example Python scripts that use the Azure Quantum Python API in the [examples](https://github.com/microsoft/qdk-python/tree/main/azure-quantum/examples) directory.
133
+
128
134
  ## Contributing ##
129
135
 
130
136
  For details on contributing to this package, see the [contributing guide](https://github.com/microsoft/qdk-python/blob/main/CONTRIBUTING.md).
@@ -1,6 +1,6 @@
1
1
  azure/quantum/__init__.py,sha256=NOaWt1VnPvQXbBsbtG8veadtp6LwBws9F1Rpla9kMAQ,414
2
2
  azure/quantum/storage.py,sha256=SOCq-OA3elO4VQMttl2o-72m58R4a5yS8dCkd6KsYMQ,12536
3
- azure/quantum/version.py,sha256=pBlz-J_5tNZf-pni_DXlgEod3HovaiyyvXJU6Zjujcg,241
3
+ azure/quantum/version.py,sha256=8dAGw8uSCnlfRduX4QaGAjyCJ4rQRqQwjQ0LGhyZxks,243
4
4
  azure/quantum/workspace.py,sha256=jedua4hNPcl69fOvKYRg7N_m7R_EMP9EFQY9DcrOOeE,19134
5
5
  azure/quantum/_authentication/__init__.py,sha256=bniNZlS0hMIjO_y7DevGBAS6MixyA5pbPHcdGipUWM4,236
6
6
  azure/quantum/_authentication/_chained.py,sha256=bs4w7auiCoRaNB0f86yAQU04Jgmd8VcKfy1wWmUxt6Q,5047
@@ -12,7 +12,7 @@ azure/quantum/_client/_configuration.py,sha256=bPbYqPE6tVIH1ApQ0X5GybMykYQs-hu2i
12
12
  azure/quantum/_client/_patch.py,sha256=YTV6yZ9bRfBBaw2z7v4MdzR-zeHkdtKkGb4SU8C25mE,694
13
13
  azure/quantum/_client/_serialization.py,sha256=CMxjYOWCILsk7kozMUGRsyeKUw-tkxI_k0EvYkqQZKU,80832
14
14
  azure/quantum/_client/_vendor.py,sha256=h8ByiyZ4cCQyFxqnuhTQdv1Rms3dVjKsrgZDzwMcSJ0,996
15
- azure/quantum/_client/_version.py,sha256=CgG9FP1TQbKCacCnFUVuQ8IFC1d48H0a3_INmk37Iqw,501
15
+ azure/quantum/_client/_version.py,sha256=b-AVFUAj7Hw8Sr7kShEy_KYdbusRAnj-q_g46sq3BZ0,503
16
16
  azure/quantum/_client/aio/__init__.py,sha256=r0S8arb5kqUXLSxN9P753lHQFc8aWyiZ6wshV3cNc0Y,840
17
17
  azure/quantum/_client/aio/_client.py,sha256=A2LBc5GRUWF2GmhpyE5wfYdEdcJ9mv26dzizbls854Y,6010
18
18
  azure/quantum/_client/aio/_configuration.py,sha256=6-TUFs0e-1CzyvdWetnjTxz9dyDAl2Rfsvk6NgO5lTs,4487
@@ -78,30 +78,30 @@ azure/quantum/qiskit/job.py,sha256=EjcIU4Ko_JzJQ1Dzr3QURzMZ2xDhHUda7Zf2DkQNJOs,1
78
78
  azure/quantum/qiskit/provider.py,sha256=PFgD8TqzGWggJGrk1RqrubDKnv15aHwF-L717HRdm38,9974
79
79
  azure/quantum/qiskit/backends/__init__.py,sha256=p7E08rrUK4CDMNVBMVtNMOWicYj9KVfGgxdWriXFGuY,965
80
80
  azure/quantum/qiskit/backends/backend.py,sha256=S9VMdbBGMqs8dRqz0qTaMn7l3BTnvnrHKkBduhQEIK4,16467
81
- azure/quantum/qiskit/backends/ionq.py,sha256=3FKW3zGn6UVckNke7UB7uiHD847Es8mxqO0BR7tg-Gc,12920
81
+ azure/quantum/qiskit/backends/ionq.py,sha256=drLJJglIaTx3HopPiy_mBoYNSRND6vRRu7XrUG-6Fsw,12956
82
82
  azure/quantum/qiskit/backends/microsoft.py,sha256=MDPIYpWcKxEQPNYjoRczYvw38iTVRH3JqqWXQNoFvVU,3441
83
83
  azure/quantum/qiskit/backends/qci.py,sha256=i66_FHYvra4kzr-kjGK2gMkW-Q7ZVQJBy3Ky7XSecPo,3884
84
- azure/quantum/qiskit/backends/quantinuum.py,sha256=2B59uPq68RZjQpGwcgBz6hb3mvxBxnIBY3566B_tFk8,13278
84
+ azure/quantum/qiskit/backends/quantinuum.py,sha256=UoUB5ixw-Q60HXoM9G8-tB4wqdzQurUqUJci0nxP3QQ,12946
85
85
  azure/quantum/qiskit/backends/rigetti.py,sha256=9Ezlpb1cWS_YX9zYqS_aN8uC0dNI-pE__5_6RUOO4GM,4081
86
86
  azure/quantum/qiskit/results/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
87
  azure/quantum/qiskit/results/resource_estimator.py,sha256=pAP5ZpVxdzNekQ_qXfSdSKYWWuqL_Vq7WK6pWU4wbEQ,814
88
88
  azure/quantum/target/__init__.py,sha256=lk7jriyv1Zsa1yfg5N2OB54EkQjYBXbx13rFbgLVAmA,507
89
- azure/quantum/target/ionq.py,sha256=qgX8qcmt2ZIe1ILQ7yiNoJw19fayHEHSAHpcuAoRtas,7212
89
+ azure/quantum/target/ionq.py,sha256=llrwJBwPR7w79K2OIObN47zCrVWl-s5gnvTOo_1gYy4,7342
90
90
  azure/quantum/target/params.py,sha256=mw-1Bp_NfMHY6h7CQ0kDAgmgJCfs_968KiqsP0iBLnI,8976
91
- azure/quantum/target/quantinuum.py,sha256=Sp4St74BmPFv6OSZmQID7gekLQuPf_gfmyADJDpKu8Q,7250
91
+ azure/quantum/target/quantinuum.py,sha256=fGLxRPHh1nRXFUDJUB8YIzxtUi1wuyzOD83NFOYfDNw,7064
92
92
  azure/quantum/target/solvers.py,sha256=fh1rLFEaUOB06fIkZV41VaJYqRSixYwoXLTNv0jrHyY,14807
93
93
  azure/quantum/target/target.py,sha256=ne2l3XO_ffbY8XizgRDfPbDrz7Y2q7w5LtS570FPvIs,8933
94
94
  azure/quantum/target/target_factory.py,sha256=hVDgd3zmOOKUV9Hq6hkvYUoUoWH3UqW3SIva5Tt4DPM,5322
95
95
  azure/quantum/target/microsoft/__init__.py,sha256=a0ycec40xS7-_PhpAWerRS3rcOt6jmroJUd-8DnMZqc,502
96
96
  azure/quantum/target/microsoft/job.py,sha256=1QPYPGeIlB0XMKDTxnXw8Q5fsgOetpByaIuKflBGoxQ,1005
97
- azure/quantum/target/microsoft/result.py,sha256=N96VTWhG9UhNkRtLBrReBrLD_MeAF_GRZ9l8RrUc6i4,13896
98
- azure/quantum/target/microsoft/target.py,sha256=y_tYRgF_BKa1gE4YTjrJBgwraXZr_u1m15nmajKAN5c,15889
97
+ azure/quantum/target/microsoft/result.py,sha256=k9I6npkwJxLGfpWGO05zj4SzvR_iM8h7r9IwIGQBLKs,17763
98
+ azure/quantum/target/microsoft/target.py,sha256=KUOttfhf6T4Doe6YHKDXD8IqH9gkyBE1F3Ck3Xd2X84,16478
99
99
  azure/quantum/target/rigetti/__init__.py,sha256=I1vyzZBYGI540pauTqJd0RSSyTShGqkEL7Yjo25_RNY,378
100
100
  azure/quantum/target/rigetti/result.py,sha256=gwIkKnVu_7f3lScGbgawyFc0J_do06lxiGUt3kcrGKU,2215
101
101
  azure/quantum/target/rigetti/target.py,sha256=5brxZfmJVpXEGBzglG5jljIp8qCfENTC-V7rst9RuFA,5916
102
102
  azure/quantum/target/toshiba/__init__.py,sha256=XOGavxw_ekyTealmx5EPYzlYIdVlUnlbsIXPZVSMU-g,146
103
103
  azure/quantum/target/toshiba/solvers.py,sha256=-lao-2r_fzMxmxNjdH-hzWC3bfVuGtPkdj5k-kp5bwI,5722
104
- azure_quantum-0.28.291394.dist-info/METADATA,sha256=B1A3s7IbCZcpyKlAKgcKaO77M6-AjLw1XJj98pHNd40,7131
105
- azure_quantum-0.28.291394.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
106
- azure_quantum-0.28.291394.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
107
- azure_quantum-0.28.291394.dist-info/RECORD,,
104
+ azure_quantum-0.28.302656b1.dist-info/METADATA,sha256=FosARNlaKhvEASOn9D6CckXHbgAjAZjzLTGw9SjtrB8,7369
105
+ azure_quantum-0.28.302656b1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
106
+ azure_quantum-0.28.302656b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
107
+ azure_quantum-0.28.302656b1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.0)
2
+ Generator: bdist_wheel (0.41.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5