azure-quantum 2.0.2.dev0__py3-none-any.whl → 2.1.0__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.
- azure/quantum/_client/_version.py +1 -1
- azure/quantum/_constants.py +2 -0
- azure/quantum/cirq/targets/ionq.py +9 -1
- azure/quantum/job/job.py +198 -2
- azure/quantum/target/target.py +1 -1
- azure/quantum/version.py +1 -1
- {azure_quantum-2.0.2.dev0.dist-info → azure_quantum-2.1.0.dist-info}/METADATA +10 -7
- {azure_quantum-2.0.2.dev0.dist-info → azure_quantum-2.1.0.dist-info}/RECORD +10 -10
- {azure_quantum-2.0.2.dev0.dist-info → azure_quantum-2.1.0.dist-info}/WHEEL +0 -0
- {azure_quantum-2.0.2.dev0.dist-info → azure_quantum-2.1.0.dist-info}/top_level.txt +0 -0
azure/quantum/_constants.py
CHANGED
|
@@ -21,6 +21,7 @@ class EnvironmentVariables:
|
|
|
21
21
|
AZURE_CLIENT_ID = SdkEnvironmentVariables.AZURE_CLIENT_ID
|
|
22
22
|
AZURE_CLIENT_SECRET = SdkEnvironmentVariables.AZURE_CLIENT_SECRET
|
|
23
23
|
AZURE_CLIENT_CERTIFICATE_PATH = SdkEnvironmentVariables.AZURE_CLIENT_CERTIFICATE_PATH
|
|
24
|
+
AZURE_CLIENT_SEND_CERTIFICATE_CHAIN = SdkEnvironmentVariables.AZURE_CLIENT_SEND_CERTIFICATE_CHAIN
|
|
24
25
|
AZURE_TENANT_ID = SdkEnvironmentVariables.AZURE_TENANT_ID
|
|
25
26
|
QUANTUM_TOKEN_FILE = "AZURE_QUANTUM_TOKEN_FILE"
|
|
26
27
|
CONNECTION_STRING = "AZURE_QUANTUM_CONNECTION_STRING"
|
|
@@ -37,6 +38,7 @@ class EnvironmentVariables:
|
|
|
37
38
|
AZURE_CLIENT_ID,
|
|
38
39
|
AZURE_CLIENT_SECRET,
|
|
39
40
|
AZURE_CLIENT_CERTIFICATE_PATH,
|
|
41
|
+
AZURE_CLIENT_SEND_CERTIFICATE_CHAIN,
|
|
40
42
|
AZURE_TENANT_ID,
|
|
41
43
|
QUANTUM_TOKEN_FILE,
|
|
42
44
|
CONNECTION_STRING,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# Copyright (c) Microsoft Corporation.
|
|
3
3
|
# Licensed under the MIT License.
|
|
4
4
|
##
|
|
5
|
-
from typing import TYPE_CHECKING, Any, Dict, Union
|
|
5
|
+
from typing import TYPE_CHECKING, Any, Dict, Union, Optional
|
|
6
6
|
|
|
7
7
|
try:
|
|
8
8
|
import cirq
|
|
@@ -71,6 +71,14 @@ class _IonQClient:
|
|
|
71
71
|
def delete_job(self, job_id: str):
|
|
72
72
|
azure_job = self._workspace.get_job(job_id)
|
|
73
73
|
self._workspace.cancel_job(azure_job)
|
|
74
|
+
|
|
75
|
+
def get_results(
|
|
76
|
+
self, job_id: str, sharpen: Optional[bool] = None, extra_query_params: Optional[dict] = None
|
|
77
|
+
):
|
|
78
|
+
azure_job = self._workspace.get_job(job_id)
|
|
79
|
+
job_result = azure_job.get_results()
|
|
80
|
+
return job_result["histogram"]
|
|
81
|
+
|
|
74
82
|
|
|
75
83
|
|
|
76
84
|
class IonQTarget(IonQ, CirqTarget):
|
azure/quantum/job/job.py
CHANGED
|
@@ -108,6 +108,8 @@ class Job(BaseJob, FilteredJob):
|
|
|
108
108
|
|
|
109
109
|
Raises :class:`RuntimeError` if job execution fails.
|
|
110
110
|
|
|
111
|
+
Raises :class:`ValueError` if job output is malformed or output format is not compatible.
|
|
112
|
+
|
|
111
113
|
Raises :class:`azure.quantum.job.JobFailedWithResultsError` if job execution fails,
|
|
112
114
|
but failure results could still be retrieved (e.g. for jobs submitted against "microsoft.dft" target).
|
|
113
115
|
|
|
@@ -142,7 +144,7 @@ class Job(BaseJob, FilteredJob):
|
|
|
142
144
|
|
|
143
145
|
if self.details.output_data_format == "microsoft.quantum-results.v1":
|
|
144
146
|
if "Histogram" not in results:
|
|
145
|
-
raise f"\"Histogram\" array was expected to be in the Job results for \"{self.details.output_data_format}\" output format."
|
|
147
|
+
raise ValueError(f"\"Histogram\" array was expected to be in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
146
148
|
|
|
147
149
|
histogram_values = results["Histogram"]
|
|
148
150
|
|
|
@@ -150,13 +152,207 @@ class Job(BaseJob, FilteredJob):
|
|
|
150
152
|
# Re-mapping {'Histogram': ['[0]', 0.50, '[1]', 0.50] } to {'[0]': 0.50, '[1]': 0.50}
|
|
151
153
|
return {histogram_values[i]: histogram_values[i + 1] for i in range(0, len(histogram_values), 2)}
|
|
152
154
|
else:
|
|
153
|
-
raise f"\"Histogram\" array has invalid format. Even number of items is expected."
|
|
155
|
+
raise ValueError(f"\"Histogram\" array has invalid format. Even number of items is expected.")
|
|
156
|
+
elif self.details.output_data_format == "microsoft.quantum-results.v2":
|
|
157
|
+
if "DataFormat" not in results or results["DataFormat"] != "microsoft.quantum-results.v2":
|
|
158
|
+
raise ValueError(f"\"DataFormat\" was expected to be \"microsoft.quantum-results.v2\" in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
159
|
+
|
|
160
|
+
if "Results" not in results:
|
|
161
|
+
raise ValueError(f"\"Results\" field was expected to be in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
162
|
+
|
|
163
|
+
if len(results["Results"]) < 1:
|
|
164
|
+
raise ValueError("\"Results\" array was expected to contain at least one item")
|
|
165
|
+
|
|
166
|
+
results = results["Results"][0]
|
|
167
|
+
|
|
168
|
+
if "Histogram" not in results:
|
|
169
|
+
raise ValueError(f"\"Histogram\" array was expected to be in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
170
|
+
|
|
171
|
+
if "Shots" not in results:
|
|
172
|
+
raise ValueError(f"\"Shots\" array was expected to be in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
173
|
+
|
|
174
|
+
histogram_values = results["Histogram"]
|
|
175
|
+
|
|
176
|
+
total_count = len(results["Shots"])
|
|
177
|
+
|
|
178
|
+
# Re-mapping object {'Histogram': [{"Outcome": [0], "Display": '[0]', "Count": 500}, {"Outcome": [1], "Display": '[1]', "Count": 500}]} to {'[0]': 0.50, '[1]': 0.50}
|
|
179
|
+
return {outcome["Display"]: outcome["Count"] / total_count for outcome in histogram_values}
|
|
154
180
|
|
|
155
181
|
return results
|
|
156
182
|
except:
|
|
157
183
|
# If errors decoding the data, return the raw payload:
|
|
158
184
|
return payload
|
|
159
185
|
|
|
186
|
+
def get_results_histogram(self, timeout_secs: float = DEFAULT_TIMEOUT):
|
|
187
|
+
"""Get job results histogram by downloading the results blob from the storage container linked via the workspace.
|
|
188
|
+
|
|
189
|
+
Raises :class:`RuntimeError` if job execution fails.
|
|
190
|
+
|
|
191
|
+
Raises :class:`ValueError` if job output is malformed or output format is not compatible.
|
|
192
|
+
|
|
193
|
+
Raises :class:`azure.quantum.job.JobFailedWithResultsError` if job execution fails,
|
|
194
|
+
but failure results could still be retrieved (e.g. for jobs submitted against "microsoft.dft" target).
|
|
195
|
+
|
|
196
|
+
:param timeout_secs: Timeout in seconds, defaults to 300
|
|
197
|
+
:type timeout_secs: float
|
|
198
|
+
:return: Results dictionary with histogram shots, or raw results if not a json object.
|
|
199
|
+
:rtype: typing.Any
|
|
200
|
+
"""
|
|
201
|
+
if self.results is not None:
|
|
202
|
+
return self.results
|
|
203
|
+
|
|
204
|
+
if not self.has_completed():
|
|
205
|
+
self.wait_until_completed(timeout_secs=timeout_secs)
|
|
206
|
+
|
|
207
|
+
if not self.details.status == "Succeeded":
|
|
208
|
+
if self.details.status == "Failed" and self._allow_failure_results():
|
|
209
|
+
job_blob_properties = self.download_blob_properties(self.details.output_data_uri)
|
|
210
|
+
if job_blob_properties.size > 0:
|
|
211
|
+
job_failure_data = self.download_data(self.details.output_data_uri)
|
|
212
|
+
raise JobFailedWithResultsError("An error occurred during job execution.", job_failure_data)
|
|
213
|
+
|
|
214
|
+
raise RuntimeError(
|
|
215
|
+
f'{"Cannot retrieve results as job execution failed"}'
|
|
216
|
+
+ f"(status: {self.details.status}."
|
|
217
|
+
+ f"error: {self.details.error_data})"
|
|
218
|
+
)
|
|
219
|
+
|
|
220
|
+
payload = self.download_data(self.details.output_data_uri)
|
|
221
|
+
try:
|
|
222
|
+
payload = payload.decode("utf8")
|
|
223
|
+
results = json.loads(payload)
|
|
224
|
+
|
|
225
|
+
if self.details.output_data_format == "microsoft.quantum-results.v2":
|
|
226
|
+
if "DataFormat" not in results or results["DataFormat"] != "microsoft.quantum-results.v2":
|
|
227
|
+
raise ValueError(f"\"DataFormat\" was expected to be \"microsoft.quantum-results.v2\" in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
228
|
+
if "Results" not in results:
|
|
229
|
+
raise ValueError(f"\"Results\" field was expected to be in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
230
|
+
|
|
231
|
+
if len(results["Results"]) < 1:
|
|
232
|
+
raise ValueError("\"Results\" array was expected to contain at least one item")
|
|
233
|
+
|
|
234
|
+
results = results["Results"]
|
|
235
|
+
|
|
236
|
+
if len(results) == 1:
|
|
237
|
+
results = results[0]
|
|
238
|
+
if "Histogram" not in results:
|
|
239
|
+
raise ValueError(f"\"Histogram\" array was expected to be in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
240
|
+
|
|
241
|
+
histogram_values = results["Histogram"]
|
|
242
|
+
outcome_keys = self._process_outcome(histogram_values)
|
|
243
|
+
|
|
244
|
+
# Re-mapping object {'Histogram': [{"Outcome": [0], "Display": '[0]', "Count": 500}, {"Outcome": [1], "Display": '[1]', "Count": 500}]} to {'[0]': {"Outcome": [0], "Count": 500}, '[1]': {"Outcome": [1], "Count": 500}}
|
|
245
|
+
return {hist_val["Display"]: {"outcome": outcome, "count": hist_val["Count"]} for outcome, hist_val in zip(outcome_keys, histogram_values)}
|
|
246
|
+
|
|
247
|
+
else:
|
|
248
|
+
# This is handling the BatchResults edge case
|
|
249
|
+
resultsArray = []
|
|
250
|
+
for i, result in enumerate(results):
|
|
251
|
+
if "Histogram" not in result:
|
|
252
|
+
raise ValueError(f"\"Histogram\" array was expected to be in the Job results for result {i} for \"{self.details.output_data_format}\" output format.")
|
|
253
|
+
|
|
254
|
+
histogram_values = result["Histogram"]
|
|
255
|
+
outcome_keys = self._process_outcome(histogram_values)
|
|
256
|
+
|
|
257
|
+
# Re-mapping object {'Histogram': [{"Outcome": [0], "Display": '[0]', "Count": 500}, {"Outcome": [1], "Display": '[1]', "Count": 500}]} to {'[0]': {"Outcome": [0], "Count": 500}, '[1]': {"Outcome": [1], "Count": 500}}
|
|
258
|
+
resultsArray.append({hist_val["Display"]: {"outcome": outcome, "count": hist_val["Count"]} for outcome, hist_val in zip(outcome_keys, histogram_values)})
|
|
259
|
+
|
|
260
|
+
return resultsArray
|
|
261
|
+
|
|
262
|
+
else:
|
|
263
|
+
raise ValueError(f"Getting a results histogram with counts instead of probabilities is not a supported feature for jobs using the \"{self.details.output_data_format}\" output format.")
|
|
264
|
+
|
|
265
|
+
except Exception as e:
|
|
266
|
+
raise e
|
|
267
|
+
|
|
268
|
+
def get_results_shots(self, timeout_secs: float = DEFAULT_TIMEOUT):
|
|
269
|
+
"""Get job results per shot data by downloading the results blob from the
|
|
270
|
+
storage container linked via the workspace.
|
|
271
|
+
|
|
272
|
+
Raises :class:`RuntimeError` if job execution fails.
|
|
273
|
+
|
|
274
|
+
Raises :class:`ValueError` if job output is malformed or output format is not compatible.
|
|
275
|
+
|
|
276
|
+
Raises :class:`azure.quantum.job.JobFailedWithResultsError` if job execution fails,
|
|
277
|
+
but failure results could still be retrieved (e.g. for jobs submitted against "microsoft.dft" target).
|
|
278
|
+
|
|
279
|
+
:param timeout_secs: Timeout in seconds, defaults to 300
|
|
280
|
+
:type timeout_secs: float
|
|
281
|
+
:return: Results dictionary with histogram shots, or raw results if not a json object.
|
|
282
|
+
:rtype: typing.Any
|
|
283
|
+
"""
|
|
284
|
+
if self.results is not None:
|
|
285
|
+
return self.results
|
|
286
|
+
|
|
287
|
+
if not self.has_completed():
|
|
288
|
+
self.wait_until_completed(timeout_secs=timeout_secs)
|
|
289
|
+
|
|
290
|
+
if not self.details.status == "Succeeded":
|
|
291
|
+
if self.details.status == "Failed" and self._allow_failure_results():
|
|
292
|
+
job_blob_properties = self.download_blob_properties(self.details.output_data_uri)
|
|
293
|
+
if job_blob_properties.size > 0:
|
|
294
|
+
job_failure_data = self.download_data(self.details.output_data_uri)
|
|
295
|
+
raise JobFailedWithResultsError("An error occurred during job execution.", job_failure_data)
|
|
296
|
+
|
|
297
|
+
raise RuntimeError(
|
|
298
|
+
f'{"Cannot retrieve results as job execution failed"}'
|
|
299
|
+
+ f"(status: {self.details.status}."
|
|
300
|
+
+ f"error: {self.details.error_data})"
|
|
301
|
+
)
|
|
302
|
+
|
|
303
|
+
payload = self.download_data(self.details.output_data_uri)
|
|
304
|
+
try:
|
|
305
|
+
payload = payload.decode("utf8")
|
|
306
|
+
results = json.loads(payload)
|
|
307
|
+
|
|
308
|
+
if self.details.output_data_format == "microsoft.quantum-results.v2":
|
|
309
|
+
if "DataFormat" not in results or results["DataFormat"] != "microsoft.quantum-results.v2":
|
|
310
|
+
raise ValueError(f"\"DataFormat\" was expected to be \"microsoft.quantum-results.v2\" in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
311
|
+
if "Results" not in results:
|
|
312
|
+
raise ValueError(f"\"Results\" field was expected to be in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
313
|
+
|
|
314
|
+
results = results["Results"]
|
|
315
|
+
|
|
316
|
+
if len(results) < 1:
|
|
317
|
+
raise ValueError("\"Results\" array was expected to contain at least one item")
|
|
318
|
+
|
|
319
|
+
if len(results) == 1:
|
|
320
|
+
result = results[0]
|
|
321
|
+
if "Shots" not in result:
|
|
322
|
+
raise ValueError(f"\"Shots\" array was expected to be in the Job results for \"{self.details.output_data_format}\" output format.")
|
|
323
|
+
|
|
324
|
+
return [self._convert_tuples(shot) for shot in result["Shots"]]
|
|
325
|
+
else:
|
|
326
|
+
# This is handling the BatchResults edge case
|
|
327
|
+
shotsArray = []
|
|
328
|
+
for i, result in enumerate(results):
|
|
329
|
+
if "Shots" not in result:
|
|
330
|
+
raise ValueError(f"\"Shots\" array was expected to be in the Job results for result {i} of \"{self.details.output_data_format}\" output format.")
|
|
331
|
+
shotsArray.append([self._convert_tuples(shot) for shot in result["Shots"]])
|
|
332
|
+
|
|
333
|
+
return shotsArray
|
|
334
|
+
else:
|
|
335
|
+
raise ValueError(f"Individual shot results are not supported for jobs using the \"{self.details.output_data_format}\" output format.")
|
|
336
|
+
except Exception as e:
|
|
337
|
+
raise e
|
|
338
|
+
|
|
339
|
+
def _process_outcome(self, histogram_results):
|
|
340
|
+
return [self._convert_tuples(v['Outcome']) for v in histogram_results]
|
|
341
|
+
|
|
342
|
+
def _convert_tuples(self, data):
|
|
343
|
+
if isinstance(data, dict):
|
|
344
|
+
# Check if the dictionary represents a tuple
|
|
345
|
+
if all(isinstance(k, str) and k.startswith("Item") for k in data.keys()):
|
|
346
|
+
# Convert the dictionary to a tuple
|
|
347
|
+
return tuple(self._convert_tuples(data[f"Item{i+1}"]) for i in range(len(data)))
|
|
348
|
+
else:
|
|
349
|
+
raise "Malformed tuple output"
|
|
350
|
+
elif isinstance(data, list):
|
|
351
|
+
# Recursively process list elements
|
|
352
|
+
return [self._convert_tuples(item) for item in data]
|
|
353
|
+
else:
|
|
354
|
+
# Return the data as is (int, string, etc.)
|
|
355
|
+
return data
|
|
160
356
|
|
|
161
357
|
@classmethod
|
|
162
358
|
def _allow_failure_results(cls) -> bool:
|
azure/quantum/target/target.py
CHANGED
|
@@ -189,7 +189,7 @@ target '{self.name}' of provider '{self.provider_id}' not found."
|
|
|
189
189
|
|
|
190
190
|
def _qir_output_data_format(self) -> str:
|
|
191
191
|
""""Fallback output data format in case of QIR job submission."""
|
|
192
|
-
return "microsoft.quantum-results.
|
|
192
|
+
return "microsoft.quantum-results.v2"
|
|
193
193
|
|
|
194
194
|
def submit(
|
|
195
195
|
self,
|
azure/quantum/version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: azure-quantum
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: Python client for Azure Quantum
|
|
5
5
|
Home-page: https://github.com/microsoft/azure-quantum-python
|
|
6
6
|
Author: Microsoft
|
|
@@ -11,19 +11,20 @@ Classifier: Operating System :: OS Independent
|
|
|
11
11
|
Requires-Python: >=3.8
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
Requires-Dist: azure-core <2.0,>=1.30
|
|
14
|
-
Requires-Dist: azure-identity <2.0,>=1.
|
|
15
|
-
Requires-Dist: azure-storage-blob
|
|
14
|
+
Requires-Dist: azure-identity <2.0,>=1.17
|
|
15
|
+
Requires-Dist: azure-storage-blob ==12.20
|
|
16
16
|
Requires-Dist: msrest <1.0,>=0.7.1
|
|
17
17
|
Requires-Dist: numpy <2.0,>=1.21.0
|
|
18
18
|
Requires-Dist: deprecated <2.0,>=1.2.12
|
|
19
19
|
Requires-Dist: Markdown >=3.4.1
|
|
20
20
|
Requires-Dist: python-markdown-math >=0.8
|
|
21
21
|
Provides-Extra: all
|
|
22
|
-
Requires-Dist: cirq-core <=1.
|
|
23
|
-
Requires-Dist: cirq-ionq <=1.
|
|
22
|
+
Requires-Dist: cirq-core <=1.4.0,>=1.3.0 ; extra == 'all'
|
|
23
|
+
Requires-Dist: cirq-ionq <=1.4.0,>=1.3.0 ; extra == 'all'
|
|
24
24
|
Requires-Dist: vcrpy >=4.3.1 ; extra == 'all'
|
|
25
25
|
Requires-Dist: azure-devtools <2.0,>=1.2.0 ; extra == 'all'
|
|
26
26
|
Requires-Dist: graphviz >=0.20.1 ; extra == 'all'
|
|
27
|
+
Requires-Dist: pulser <0.19,>=0.18 ; extra == 'all'
|
|
27
28
|
Requires-Dist: qiskit-ionq <0.6,>=0.5 ; extra == 'all'
|
|
28
29
|
Requires-Dist: qiskit-qir <0.6,>=0.5 ; extra == 'all'
|
|
29
30
|
Requires-Dist: qiskit <2.0,>=1.0 ; extra == 'all'
|
|
@@ -32,12 +33,14 @@ Requires-Dist: python-markdown-math <1.0,>=0.8.0 ; extra == 'all'
|
|
|
32
33
|
Requires-Dist: qsharp <2.0,>=1.0.33 ; extra == 'all'
|
|
33
34
|
Requires-Dist: pyquil >=3.3.2 ; extra == 'all'
|
|
34
35
|
Provides-Extra: cirq
|
|
35
|
-
Requires-Dist: cirq-core <=1.
|
|
36
|
-
Requires-Dist: cirq-ionq <=1.
|
|
36
|
+
Requires-Dist: cirq-core <=1.4.0,>=1.3.0 ; extra == 'cirq'
|
|
37
|
+
Requires-Dist: cirq-ionq <=1.4.0,>=1.3.0 ; extra == 'cirq'
|
|
37
38
|
Provides-Extra: dev
|
|
38
39
|
Requires-Dist: vcrpy >=4.3.1 ; extra == 'dev'
|
|
39
40
|
Requires-Dist: azure-devtools <2.0,>=1.2.0 ; extra == 'dev'
|
|
40
41
|
Requires-Dist: graphviz >=0.20.1 ; extra == 'dev'
|
|
42
|
+
Provides-Extra: pulser
|
|
43
|
+
Requires-Dist: pulser <0.19,>=0.18 ; extra == 'pulser'
|
|
41
44
|
Provides-Extra: qiskit
|
|
42
45
|
Requires-Dist: qiskit-ionq <0.6,>=0.5 ; extra == 'qiskit'
|
|
43
46
|
Requires-Dist: qiskit-qir <0.6,>=0.5 ; extra == 'qiskit'
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
azure/quantum/__init__.py,sha256=Za8xZY4lzFkW8m4ero-bqrfN437D2NRukM77ukb4GPM,508
|
|
2
|
-
azure/quantum/_constants.py,sha256=
|
|
2
|
+
azure/quantum/_constants.py,sha256=nDL_QrGdI_Zz_cvTB9nVgfE7J6A_Boo1ollMYqsiEBs,3499
|
|
3
3
|
azure/quantum/_workspace_connection_params.py,sha256=KoT90U89Dj6pVwAKp_ENJL1hyTF0oQe7w0QioOGvjXg,21685
|
|
4
4
|
azure/quantum/storage.py,sha256=_4bMniDk9LrB_K5CQwuCivJFZXdmhRvU2b6Z3xxXw9I,12556
|
|
5
|
-
azure/quantum/version.py,sha256=
|
|
5
|
+
azure/quantum/version.py,sha256=Vo8YNAEeCqa0qbPVb6AC1P36T9adlWXo4x7C2z4qh3Q,235
|
|
6
6
|
azure/quantum/workspace.py,sha256=1__iZTe59ozAsAGJ4nECxmk_211Dm8ALJi-MFIdrg4o,23438
|
|
7
7
|
azure/quantum/_authentication/__init__.py,sha256=bniNZlS0hMIjO_y7DevGBAS6MixyA5pbPHcdGipUWM4,236
|
|
8
8
|
azure/quantum/_authentication/_chained.py,sha256=0rdohB_fVGFHUhlly9sGxqQTBTZGpGxtlBqNHDFbAqE,4848
|
|
@@ -14,7 +14,7 @@ azure/quantum/_client/_configuration.py,sha256=5uktKtZxoVVAoSyeL0VNGS9AfPERp-9rU
|
|
|
14
14
|
azure/quantum/_client/_patch.py,sha256=YTV6yZ9bRfBBaw2z7v4MdzR-zeHkdtKkGb4SU8C25mE,694
|
|
15
15
|
azure/quantum/_client/_serialization.py,sha256=KJSS6KWgnKcz-cENQCmWZ9Ziv303lnBbLwFIpYZeKFU,81097
|
|
16
16
|
azure/quantum/_client/_vendor.py,sha256=h8ByiyZ4cCQyFxqnuhTQdv1Rms3dVjKsrgZDzwMcSJ0,996
|
|
17
|
-
azure/quantum/_client/_version.py,sha256=
|
|
17
|
+
azure/quantum/_client/_version.py,sha256=5FrCDUu-aqk4I-E-8ljs1xoSrxTBpL4eRPKzmcVFL_I,495
|
|
18
18
|
azure/quantum/_client/models/__init__.py,sha256=c1PRpzNsQTcDk4GkrFMMIlwNQQa2c0p5N0Lzd-23YBA,2100
|
|
19
19
|
azure/quantum/_client/models/_enums.py,sha256=omj_B8_E8ONzTHg5hLgDlFYibRRbdr9sEN298im_otA,2977
|
|
20
20
|
azure/quantum/_client/models/_models.py,sha256=wktCM5oBVfwQetNoHobL1wNsC3knXV-HmqBq_Q77Kw4,41810
|
|
@@ -29,13 +29,13 @@ azure/quantum/cirq/__init__.py,sha256=AJT_qCdxfqgeiPmqmbxQgCzETCOIJyHYoy6pCs-Osk
|
|
|
29
29
|
azure/quantum/cirq/job.py,sha256=Wm52HFYel9Di6xGdzDdYfBLM3ZklaE1qOQ9YNg87eeY,3031
|
|
30
30
|
azure/quantum/cirq/service.py,sha256=1L2seZt26ENQY973vIa6aex7SsWpCu6YkpClsr6AteY,8880
|
|
31
31
|
azure/quantum/cirq/targets/__init__.py,sha256=cpb677Kg1V5cdI0kdgkLafI8xfwYZZYx0tc6qc024gE,574
|
|
32
|
-
azure/quantum/cirq/targets/ionq.py,sha256
|
|
32
|
+
azure/quantum/cirq/targets/ionq.py,sha256=-M7aL-1XYmV3qF6eUYd-FR800NIEvrcY1Pty5vM7XDc,7101
|
|
33
33
|
azure/quantum/cirq/targets/quantinuum.py,sha256=t7L5prczDQJlzStth6Rh6r35DX1Z8J_my-VJxLBp2n4,4537
|
|
34
34
|
azure/quantum/cirq/targets/target.py,sha256=1EEog72dFZoiOTQP7obOrCuO3VH0yjXGAIMeO6bm22o,2184
|
|
35
35
|
azure/quantum/job/__init__.py,sha256=nFuOsG25a8WzYFLwA2fhA0JMNWtblfDjV5WRgB6UQbw,829
|
|
36
36
|
azure/quantum/job/base_job.py,sha256=NwtI-dcpOfKp-ANnLAPKQVgT3t9BEv_MQSp1N47oKM0,13876
|
|
37
37
|
azure/quantum/job/filtered_job.py,sha256=qZfxTuDp0hzK4wermn4GRzLxnDy4yM-j6oZQ3D0O4vI,1877
|
|
38
|
-
azure/quantum/job/job.py,sha256=
|
|
38
|
+
azure/quantum/job/job.py,sha256=D6MMOUEvx_qLdyr7vU1t62MUNMapOnFgcMBYCt7-TXM,17721
|
|
39
39
|
azure/quantum/job/job_failed_with_results_error.py,sha256=bSqOZ0c6FNbS9opvwkCXG9mfTkAiyZRvp_YA3V-ktEs,1597
|
|
40
40
|
azure/quantum/job/session.py,sha256=EEJVKEEB5g0yyH963aaR0GY0Cd0axrX-49gwDWxBcfE,11961
|
|
41
41
|
azure/quantum/job/workspace_item.py,sha256=lyBIJCtUfIZMGJYJkX7Se8IDnXhXe4JU0RnqzSuhhI4,1380
|
|
@@ -56,7 +56,7 @@ azure/quantum/target/__init__.py,sha256=F0nIEJdlbczmxAdtvPDWf8J1Y33_XjPzloliHeWp
|
|
|
56
56
|
azure/quantum/target/ionq.py,sha256=f6V_Ce09RHU56NmCdwcupDDjSxA3kDVodjwEBvpWrvg,8130
|
|
57
57
|
azure/quantum/target/params.py,sha256=oI-35HUEMCskNjpxCJU3tjL664K-TxqAg5LA5xU0nso,9130
|
|
58
58
|
azure/quantum/target/quantinuum.py,sha256=Om6K3SOiMRqCb20TzOhUPAEcsdHs4gzO15kXOM5LTrU,7612
|
|
59
|
-
azure/quantum/target/target.py,sha256=
|
|
59
|
+
azure/quantum/target/target.py,sha256=7gUbv2w08AX2I5gKJrN3d-DipDOZzuGx63k0u_P_zho,13868
|
|
60
60
|
azure/quantum/target/target_factory.py,sha256=jjZ9zxWaNDkcvslKV02GSP8rtXwStJ7EmVXQSOFh_j8,5266
|
|
61
61
|
azure/quantum/target/microsoft/__init__.py,sha256=36kM2YlWv69AzAfUA5wMdWyYRSaCMwX2Ajhffpzx67g,570
|
|
62
62
|
azure/quantum/target/microsoft/job.py,sha256=GM4OA-rxFUqQzsH8V59pVc4BmBaPYvd99E26pyPwxto,1249
|
|
@@ -72,7 +72,7 @@ azure/quantum/target/pasqal/target.py,sha256=DMt2uYeCeaUFh7vlnf687VOoRStXCWL-6Mk
|
|
|
72
72
|
azure/quantum/target/rigetti/__init__.py,sha256=I1vyzZBYGI540pauTqJd0RSSyTShGqkEL7Yjo25_RNY,378
|
|
73
73
|
azure/quantum/target/rigetti/result.py,sha256=65mtAZxfdNrTWNjWPqgfwt2BZN6Nllo4g_bls7-Nm68,2334
|
|
74
74
|
azure/quantum/target/rigetti/target.py,sha256=wL2RkOHKUT7YL6dHBvlO1UiKm1fhnehS3SSGCcarwf8,7048
|
|
75
|
-
azure_quantum-2.0.
|
|
76
|
-
azure_quantum-2.0.
|
|
77
|
-
azure_quantum-2.0.
|
|
78
|
-
azure_quantum-2.0.
|
|
75
|
+
azure_quantum-2.1.0.dist-info/METADATA,sha256=lNYGJEoDa-lL3ZPkEwzqIN-o39EHgJkOn2iz61Io-tQ,7399
|
|
76
|
+
azure_quantum-2.1.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
77
|
+
azure_quantum-2.1.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
|
78
|
+
azure_quantum-2.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|