azure-quantum 3.4.1.dev1__py3-none-any.whl → 3.5.0.dev0__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.
@@ -24,12 +24,16 @@ import logging
24
24
  logger = logging.getLogger(__name__)
25
25
 
26
26
  AzureJobStatusMap = {
27
+ "Completed": JobStatus.DONE,
27
28
  "Succeeded": JobStatus.DONE,
29
+ "Queued": JobStatus.QUEUED,
28
30
  "Waiting": JobStatus.QUEUED,
29
31
  "Executing": JobStatus.RUNNING,
32
+ "Finishing": JobStatus.RUNNING,
33
+ "CancellationRequested": JobStatus.RUNNING,
34
+ "Cancelling": JobStatus.RUNNING,
30
35
  "Failed": JobStatus.ERROR,
31
- "Cancelled": JobStatus.CANCELLED,
32
- "Finishing": JobStatus.RUNNING
36
+ "Cancelled": JobStatus.CANCELLED
33
37
  }
34
38
 
35
39
  # Constants for output data format:
@@ -50,13 +54,13 @@ class AzureQuantumJob(JobV1):
50
54
  """
51
55
  if azure_job is None:
52
56
  azure_job = Job.from_input_data(
53
- workspace=backend.provider().get_workspace(),
57
+ workspace=backend.provider.get_workspace(),
54
58
  session_id=backend.get_latest_session_id(),
55
59
  **kwargs
56
60
  )
57
61
 
58
62
  self._azure_job = azure_job
59
- self._workspace = backend.provider().get_workspace()
63
+ self._workspace = backend.provider.get_workspace()
60
64
 
61
65
  super().__init__(backend, self._azure_job.id, **kwargs)
62
66
 
@@ -81,13 +85,13 @@ class AzureQuantumJob(JobV1):
81
85
  """Return the results of the job."""
82
86
  self._azure_job.wait_until_completed(timeout_secs=timeout)
83
87
 
84
- success = self._azure_job.details.status == "Succeeded"
88
+ success = self._azure_job.details.status == "Succeeded" or self._azure_job.details.status == "Completed"
85
89
  results = self._format_results(sampler_seed=sampler_seed)
86
90
 
87
91
  result_dict = {
88
92
  "results" : results if isinstance(results, list) else [results],
89
93
  "job_id" : self._azure_job.details.id,
90
- "backend_name" : self._backend.name(),
94
+ "backend_name" : self._backend.name,
91
95
  "backend_version" : self._backend.version,
92
96
  "qobj_id" : self._azure_job.details.name,
93
97
  "success" : success,
@@ -128,7 +132,7 @@ class AzureQuantumJob(JobV1):
128
132
  if (self._azure_job.details.output_data_format == MICROSOFT_OUTPUT_DATA_FORMAT_V2):
129
133
  return self._format_microsoft_v2_results()
130
134
 
131
- success = self._azure_job.details.status == "Succeeded"
135
+ success = self._azure_job.details.status == "Succeeded" or self._azure_job.details.status == "Completed"
132
136
 
133
137
  job_result = {
134
138
  "data": {},
@@ -317,12 +321,15 @@ class AzureQuantumJob(JobV1):
317
321
  headers = [headers]
318
322
 
319
323
  # This function will attempt to parse the header into a JSON object, and if the header is not a JSON object, we return the header itself
320
- def tryParseJSON(header):
321
- try:
322
- json_object = json.loads(header)
323
- except ValueError as e:
324
- return header
325
- return json_object
324
+ def tryParseJSON(value):
325
+ if value is None or isinstance(value, (dict, list, int, float, bool)):
326
+ return value
327
+ if isinstance(value, str):
328
+ try:
329
+ return json.loads(value)
330
+ except ValueError:
331
+ return value
332
+ return value
326
333
 
327
334
  for header in headers:
328
335
  del header['qiskit'] # we throw out the qiskit header as it is implied
@@ -332,7 +339,7 @@ class AzureQuantumJob(JobV1):
332
339
 
333
340
 
334
341
  def _format_microsoft_v2_results(self) -> List[Dict[str, Any]]:
335
- success = self._azure_job.details.status == "Succeeded"
342
+ success = self._azure_job.details.status == "Succeeded" or self._azure_job.details.status == "Completed"
336
343
 
337
344
  if not success:
338
345
  return [{
@@ -5,14 +5,14 @@
5
5
 
6
6
  import warnings
7
7
  import inspect
8
- from itertools import groupby
9
8
  from typing import Dict, List, Optional, Tuple, Type
9
+
10
+ from abc import ABC
10
11
  from azure.quantum import Workspace
11
12
 
12
13
  try:
13
- from qiskit.providers import ProviderV1 as Provider
14
14
  from qiskit.providers.exceptions import QiskitBackendNotFoundError
15
- from qiskit.providers import BackendV1 as Backend
15
+ from qiskit.providers import BackendV2 as Backend
16
16
  from qiskit.exceptions import QiskitError
17
17
  except ImportError:
18
18
  raise ImportError(
@@ -26,7 +26,7 @@ from azure.quantum.qiskit.backends import *
26
26
 
27
27
  QISKIT_USER_AGENT = "azure-quantum-qiskit"
28
28
 
29
- class AzureQuantumProvider(Provider):
29
+ class AzureQuantumProvider(ABC):
30
30
 
31
31
  def __init__(self, workspace: Optional[Workspace]=None, **kwargs):
32
32
  """Class for interfacing with the Azure Quantum service
@@ -152,7 +152,7 @@ see https://aka.ms/AQ/Docs/AddProvider"
152
152
  self, allowed_targets: List[Tuple[str, str]], backend: Backend
153
153
  ):
154
154
  for name, provider in allowed_targets:
155
- if backend.name() == name:
155
+ if backend.name == name:
156
156
  config = backend.configuration().to_dict()
157
157
  if "azure" in config and "provider_id" in config["azure"]:
158
158
  if config["azure"]["provider_id"] == provider:
@@ -192,7 +192,7 @@ see https://aka.ms/AQ/Docs/AddProvider"
192
192
  backend_instance: Backend = self._get_backend_instance(
193
193
  backend_cls, name
194
194
  )
195
- backend_name: str = backend_instance.name()
195
+ backend_name: str = backend_instance.name
196
196
  instances.setdefault(backend_name, []).append(backend_instance)
197
197
 
198
198
  return instances
@@ -281,3 +281,9 @@ see https://aka.ms/AQ/Docs/AddProvider"
281
281
  backends = list(filter(filters, backends))
282
282
 
283
283
  return backends
284
+
285
+ def __eq__(self, other):
286
+ """
287
+ Equality comparison.
288
+ """
289
+ return type(self).__name__ == type(other).__name__
@@ -38,7 +38,7 @@ class Result:
38
38
  RuntimeError: if the job has not completed successfully
39
39
  """
40
40
 
41
- if job.details.status != "Succeeded":
41
+ if job.details.status != "Succeeded" and job.details.status != "Completed":
42
42
  raise RuntimeError(
43
43
  "Cannot retrieve results as job execution failed "
44
44
  f"(status: {job.details.status}."
@@ -43,7 +43,7 @@ class Result:
43
43
  RuntimeError: if the job has not completed successfully
44
44
  """
45
45
 
46
- if job.details.status != "Succeeded":
46
+ if job.details.status != "Succeeded" and job.details.status != "Completed":
47
47
  raise RuntimeError(
48
48
  "Cannot retrieve results as job execution failed "
49
49
  f"(status: {job.details.status}."
@@ -2,17 +2,16 @@
2
2
  # Copyright (c) Microsoft Corporation. All rights reserved.
3
3
  # Licensed under the MIT License.
4
4
  ##
5
- from typing import TYPE_CHECKING, Any, Dict, List, Optional, Union, Type, Protocol, runtime_checkable
5
+ from typing import TYPE_CHECKING, Any, Dict, Union, Type, Protocol, runtime_checkable
6
6
  from dataclasses import dataclass
7
7
  import io
8
8
  import json
9
9
  import abc
10
10
  import warnings
11
11
 
12
- from azure.quantum._client.models import TargetStatus, SessionDetails
13
- from azure.quantum._client.models._enums import SessionJobFailurePolicy
14
- from azure.quantum.job.job import Job, BaseJob
15
- from azure.quantum.job.session import Session, SessionHost
12
+ from azure.quantum._client.models import TargetStatus
13
+ from azure.quantum.job.job import Job
14
+ from azure.quantum.job.session import SessionHost
16
15
  from azure.quantum.job.base_job import ContentType
17
16
  from azure.quantum.target.params import InputParams
18
17
  if TYPE_CHECKING:
@@ -339,54 +338,3 @@ target '{self.name}' of provider '{self.provider_id}' not found."
339
338
 
340
339
  def _get_azure_provider_id(self) -> str:
341
340
  return self.provider_id
342
-
343
- @classmethod
344
- def _calculate_qir_module_gate_stats(self, qir_module) -> GateStats:
345
- try:
346
- from pyqir import Module, is_qubit_type, is_result_type, entry_point, is_entry_point, Function
347
-
348
- except ImportError:
349
- raise ImportError(
350
- "Missing optional 'qiskit' dependencies. \
351
- To install run: pip install azure-quantum[qiskit]"
352
- )
353
-
354
- module: Module = qir_module
355
-
356
- one_qubit_gates = 0
357
- multi_qubit_gates = 0
358
- measurement_gates = 0
359
-
360
- function_entry_points: list[Function] = filter(is_entry_point, module.functions)
361
-
362
- # Iterate over the blocks and their instructions
363
- for function in function_entry_points:
364
- for block in function.basic_blocks:
365
- for instruction in block.instructions:
366
- qubit_count = 0
367
- result_count = 0
368
-
369
- # If the instruction is of type quantum rt, do not include this is the price calculation
370
- if len(instruction.operands) > 0 and "__quantum__rt" not in instruction.operands[-1].name:
371
- # Check each operand in the instruction
372
- for operand in instruction.operands:
373
- value_type = operand.type
374
-
375
- if is_qubit_type(value_type):
376
- qubit_count += 1
377
- elif is_result_type(value_type):
378
- result_count += 1
379
-
380
- # Determine the type of gate based on the counts
381
- if qubit_count == 1 and result_count == 0:
382
- one_qubit_gates += 1
383
- if qubit_count >= 2 and result_count == 0:
384
- multi_qubit_gates += 1
385
- if result_count > 0:
386
- measurement_gates += 1
387
-
388
- return GateStats (
389
- one_qubit_gates,
390
- multi_qubit_gates,
391
- measurement_gates
392
- )
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__ = "3.4.1.dev1"
8
+ __version__ = "3.5.0.dev0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: azure-quantum
3
- Version: 3.4.1.dev1
3
+ Version: 3.5.0.dev0
4
4
  Summary: Python client for Azure Quantum
5
5
  Home-page: https://github.com/microsoft/azure-quantum-python
6
6
  Author: Microsoft
@@ -16,8 +16,6 @@ Requires-Dist: azure-storage-blob==12.20
16
16
  Requires-Dist: msrest<1.0,>=0.7.1
17
17
  Requires-Dist: numpy>=1.21.0
18
18
  Requires-Dist: deprecated<2.0,>=1.2.12
19
- Requires-Dist: Markdown>=3.4.1
20
- Requires-Dist: python-markdown-math>=0.8
21
19
  Provides-Extra: all
22
20
  Requires-Dist: cirq-core<=1.4.1,>=1.3.0; extra == "all"
23
21
  Requires-Dist: cirq-ionq<=1.4.1,>=1.3.0; extra == "all"
@@ -26,12 +24,9 @@ Requires-Dist: pytest-xdist<4.0,>=3.8.0; extra == "all"
26
24
  Requires-Dist: vcrpy>=4.3.1; extra == "all"
27
25
  Requires-Dist: azure-devtools<2.0,>=1.2.0; extra == "all"
28
26
  Requires-Dist: graphviz>=0.20.1; extra == "all"
27
+ Requires-Dist: tox>=4.32.0; extra == "all"
29
28
  Requires-Dist: pulser<0.19,>=0.18; extra == "all"
30
- Requires-Dist: qiskit-ionq<0.6,>=0.5; extra == "all"
31
- Requires-Dist: qsharp[qiskit]<2.0,>=1.9.0; extra == "all"
32
- Requires-Dist: pyqir<0.11,>=0.10.6; extra == "all"
33
- Requires-Dist: Markdown<4.0,>=3.4.1; extra == "all"
34
- Requires-Dist: python-markdown-math<1.0,>=0.8.0; extra == "all"
29
+ Requires-Dist: qsharp[qiskit]<2.0,>=1.22.0; extra == "all"
35
30
  Requires-Dist: qsharp<2.0,>=1.0.33; extra == "all"
36
31
  Requires-Dist: pyquil==4.13.1; extra == "all"
37
32
  Provides-Extra: cirq
@@ -43,14 +38,11 @@ Requires-Dist: pytest-xdist<4.0,>=3.8.0; extra == "dev"
43
38
  Requires-Dist: vcrpy>=4.3.1; extra == "dev"
44
39
  Requires-Dist: azure-devtools<2.0,>=1.2.0; extra == "dev"
45
40
  Requires-Dist: graphviz>=0.20.1; extra == "dev"
41
+ Requires-Dist: tox>=4.32.0; extra == "dev"
46
42
  Provides-Extra: pulser
47
43
  Requires-Dist: pulser<0.19,>=0.18; extra == "pulser"
48
44
  Provides-Extra: qiskit
49
- Requires-Dist: qiskit-ionq<0.6,>=0.5; extra == "qiskit"
50
- Requires-Dist: qsharp[qiskit]<2.0,>=1.9.0; extra == "qiskit"
51
- Requires-Dist: pyqir<0.11,>=0.10.6; extra == "qiskit"
52
- Requires-Dist: Markdown<4.0,>=3.4.1; extra == "qiskit"
53
- Requires-Dist: python-markdown-math<1.0,>=0.8.0; extra == "qiskit"
45
+ Requires-Dist: qsharp[qiskit]<2.0,>=1.22.0; extra == "qiskit"
54
46
  Provides-Extra: qsharp
55
47
  Requires-Dist: qsharp<2.0,>=1.0.33; extra == "qsharp"
56
48
  Provides-Extra: quil
@@ -2,7 +2,7 @@ azure/quantum/__init__.py,sha256=Za8xZY4lzFkW8m4ero-bqrfN437D2NRukM77ukb4GPM,508
2
2
  azure/quantum/_constants.py,sha256=nDL_QrGdI_Zz_cvTB9nVgfE7J6A_Boo1ollMYqsiEBs,3499
3
3
  azure/quantum/_workspace_connection_params.py,sha256=70T6JHa72tPLM5i7IEIBMbqa3gxXXtDmu_uORWloo50,21553
4
4
  azure/quantum/storage.py,sha256=_4bMniDk9LrB_K5CQwuCivJFZXdmhRvU2b6Z3xxXw9I,12556
5
- azure/quantum/version.py,sha256=N4xk2mLYPQztAjG3Tn9kL-mRuXJxciV45cwyM-6cFoQ,240
5
+ azure/quantum/version.py,sha256=0IKkbEdcvscSEt1GMWf4Ok5ZgtBarauA8zjtpkTZpHg,240
6
6
  azure/quantum/workspace.py,sha256=9oO4vjwIn1pdHFLZCQcEPQ_xjQjTNO4UIWSBQpj6Cgo,35574
7
7
  azure/quantum/_client/__init__.py,sha256=P3K9ffYchHhHjJhCEAEwutSD3xRW92XDUQNYDjwhYqI,1056
8
8
  azure/quantum/_client/_client.py,sha256=7MRvLQZYcg0PKf906ulEOtF6H22Km1aa0FFj3O6LxXc,6734
@@ -10,11 +10,11 @@ azure/quantum/_client/_configuration.py,sha256=FFUHJPp6X0015GpD-YLmYCoq8GI86nHCn
10
10
  azure/quantum/_client/_model_base.py,sha256=hu7OdRS2Ra1igfBo-R3zS3dzO3YhFC4FGHJ_WiyZgNg,43736
11
11
  azure/quantum/_client/_patch.py,sha256=YTV6yZ9bRfBBaw2z7v4MdzR-zeHkdtKkGb4SU8C25mE,694
12
12
  azure/quantum/_client/_serialization.py,sha256=bBl0y0mh-0sDd-Z8_dj921jQQhqhYWTOl59qSLuk01M,86686
13
- azure/quantum/_client/_version.py,sha256=-7QToAkFaZ3HI3QqYIhe-wymefwCAsACbAmxqidYVJE,500
13
+ azure/quantum/_client/_version.py,sha256=ERfqFUpSSHTzPMC0LLLdaaXm30TV2v719rPGNSuyYXo,500
14
14
  azure/quantum/_client/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
15
15
  azure/quantum/_client/models/__init__.py,sha256=MR2av7s_tCP66hicN9JXCmTngJ4_-ozM4cmblGjPwn8,1971
16
- azure/quantum/_client/models/_enums.py,sha256=RNCPXxeae4d7wtPqcSxu5JZBLFLZZYVZbALjui_f1fM,4288
17
- azure/quantum/_client/models/_models.py,sha256=w208Pgf3mWVKW6FrbvPzFvPu9mY04bj763vwpo49N38,29613
16
+ azure/quantum/_client/models/_enums.py,sha256=oSJm7cDvyRwYQLZ50XLNWEfHJJ5c_XG8MlOux2PFT7Q,4706
17
+ azure/quantum/_client/models/_models.py,sha256=kOYISdDafBynpX_KUQ6OEahvyWRJOXp_z8WAMzkBgBc,29771
18
18
  azure/quantum/_client/models/_patch.py,sha256=YTV6yZ9bRfBBaw2z7v4MdzR-zeHkdtKkGb4SU8C25mE,694
19
19
  azure/quantum/_client/operations/__init__.py,sha256=YsursegE17FYuBSlfxPdHzpx8zbfh9C9TTtEBKCGVEk,1392
20
20
  azure/quantum/_client/operations/_operations.py,sha256=EL4c4l1t6VwdIay8_V2PomXYdF-MjG_PDSjQKwTQHfI,99639
@@ -25,39 +25,40 @@ azure/quantum/cirq/__init__.py,sha256=AJT_qCdxfqgeiPmqmbxQgCzETCOIJyHYoy6pCs-Osk
25
25
  azure/quantum/cirq/job.py,sha256=Wm52HFYel9Di6xGdzDdYfBLM3ZklaE1qOQ9YNg87eeY,3031
26
26
  azure/quantum/cirq/service.py,sha256=5TcBvdULJJD_KsZna35dWYfkn7EY8Rge0ucnkwgJS3w,7833
27
27
  azure/quantum/cirq/targets/__init__.py,sha256=cpb677Kg1V5cdI0kdgkLafI8xfwYZZYx0tc6qc024gE,574
28
- azure/quantum/cirq/targets/ionq.py,sha256=-ABeUU2sLZd-n0FwS50-ZOn5nfm-FRkGGlgBwpwIxiE,5994
28
+ azure/quantum/cirq/targets/ionq.py,sha256=tB76z5TqPJ-uwWNxEQMFDjVO3xHIyCeXODhyPsIMqws,6230
29
29
  azure/quantum/cirq/targets/quantinuum.py,sha256=50S-ByS0Oaoo8UH-eiXpkGJMI7u84ZTIhU4X9gz3u5s,3960
30
30
  azure/quantum/cirq/targets/target.py,sha256=1EEog72dFZoiOTQP7obOrCuO3VH0yjXGAIMeO6bm22o,2184
31
31
  azure/quantum/job/__init__.py,sha256=nFuOsG25a8WzYFLwA2fhA0JMNWtblfDjV5WRgB6UQbw,829
32
32
  azure/quantum/job/base_job.py,sha256=GDwoJDxoaCwGz9TBuzlkuqXdU84L6FliO_2YWxnLnrE,14399
33
33
  azure/quantum/job/filtered_job.py,sha256=qZfxTuDp0hzK4wermn4GRzLxnDy4yM-j6oZQ3D0O4vI,1877
34
- azure/quantum/job/job.py,sha256=uMn0ET7DX9EUwN8xerZzm8MflbvbU1NOGM1uCvh8c-g,17607
34
+ azure/quantum/job/job.py,sha256=m6fvKtvvL159owp7Z00X_HUuWf3m2H2APYmMnqUU7Dc,17772
35
35
  azure/quantum/job/job_failed_with_results_error.py,sha256=bSqOZ0c6FNbS9opvwkCXG9mfTkAiyZRvp_YA3V-ktEs,1597
36
36
  azure/quantum/job/session.py,sha256=EEJVKEEB5g0yyH963aaR0GY0Cd0axrX-49gwDWxBcfE,11961
37
37
  azure/quantum/job/workspace_item.py,sha256=lyBIJCtUfIZMGJYJkX7Se8IDnXhXe4JU0RnqzSuhhI4,1380
38
38
  azure/quantum/job/workspace_item_factory.py,sha256=QRWyrtgcKZqUucJOFi9V_SYMV3lj6S74tGRrPtk3NE0,1200
39
39
  azure/quantum/qiskit/__init__.py,sha256=gjKsmRwtVNcbbsuOvy2wT0ASELh5NXGmuwaEwjZcVQo,314
40
- azure/quantum/qiskit/job.py,sha256=El1wyQ98WZaR96IICkDV8kToRtcA7yG24L2eE9Wdx2c,14539
41
- azure/quantum/qiskit/provider.py,sha256=kbZJgDX-hI-AD5rQfik4JHNnNd74oyfrKYauosqBRxw,10966
40
+ azure/quantum/qiskit/job.py,sha256=2rkqSIJ0ytVI_-9kjVlk-rSuDTxa4vP1osJwcftcOUk,14983
41
+ azure/quantum/qiskit/provider.py,sha256=pfWTyOq4hWJmz3SyNrhGUV7Oj7ly4CU4bI5143uh1V0,11040
42
42
  azure/quantum/qiskit/backends/__init__.py,sha256=Ygx3GwVHbIJ9Bi-_KqVQsL7B3QfeL-qUKIMIEfuStGw,994
43
- azure/quantum/qiskit/backends/backend.py,sha256=pE5FSsLRy6JpfCGDWd7SFcnH8k8qz6-eJRwZ31fh58o,23361
44
- azure/quantum/qiskit/backends/ionq.py,sha256=nu9pAduelXyj4iJlE9cpCnQMFDh1ZqVcApHEhogucr4,13832
45
- azure/quantum/qiskit/backends/qci.py,sha256=c0YK-znG8TSAnFmeszo7mpKhM624QHszTQoapOqOvHg,4794
46
- azure/quantum/qiskit/backends/quantinuum.py,sha256=E8DafizdkJSBAqV72iQO3ha2fFjVk-DgRKPWS9LICG0,12444
47
- azure/quantum/qiskit/backends/rigetti.py,sha256=lTsa0UjPdsAZUvvfnBge7H22TvA7c-_3fU09ZTA4ARs,4146
43
+ azure/quantum/qiskit/backends/_qiskit_ionq.py,sha256=U3v4xC7QAXypZF1VYlU1REQNDcq2pc1VO1Elxvx5kKQ,13626
44
+ azure/quantum/qiskit/backends/backend.py,sha256=r5f8X0UFW87pASz62MpQebLhM6DuPtlHm8E78W0wtDM,31106
45
+ azure/quantum/qiskit/backends/ionq.py,sha256=P8es_Nj8fxNojV9WVK22HhlWZAEQHJZ2GSG0-NaluIc,13576
46
+ azure/quantum/qiskit/backends/qci.py,sha256=X07qPxHVQFk4vaixhfNMRmA6jYK7tWI91eFieGkRN5U,4712
47
+ azure/quantum/qiskit/backends/quantinuum.py,sha256=RGUY1tIfJEPSGIsHdAKehlASAjD7L0vDzssYoMtAWYM,12248
48
+ azure/quantum/qiskit/backends/rigetti.py,sha256=x0iQoZcan6Cm3kXob7J16f_TsSiHkI0_a9ShWTEOZl4,4055
48
49
  azure/quantum/target/__init__.py,sha256=hK4OqAOkgwO8W52YvPp6QeoMTFj_eum3iexMmpCMEsI,606
49
50
  azure/quantum/target/ionq.py,sha256=9SS5ahHcZ7IRHq9hZb6hX_q56BbCSIKs6dRqYtQv1tk,3160
50
51
  azure/quantum/target/params.py,sha256=Txpq_AKdVV8OeZjK1z48CIym--_a6wncorj4LmmlQ_E,9128
51
52
  azure/quantum/target/quantinuum.py,sha256=6yn_ALIPgsRtrDi3PCckWOUuT-eeXC04e2D8GNuvuOc,2897
52
- azure/quantum/target/target.py,sha256=421M1yq4SfBGyfNLnQW95HNVqN9jNx0YN1uZQychlTU,15638
53
+ azure/quantum/target/target.py,sha256=0UFd_eqAuz0lfuSO-_MDIn0-hPBiLbQgTBOVKupdP_s,13375
53
54
  azure/quantum/target/target_factory.py,sha256=XcZrbcj6X0JCivIh8x7nKwdBg9RH1FDlSncNUIrtQV0,5058
54
55
  azure/quantum/target/pasqal/__init__.py,sha256=qbe6oWTQTsnTYwY3xZr32z4AWaYIchx71bYlqC2rQqw,348
55
- azure/quantum/target/pasqal/result.py,sha256=SUvpnrtgvCGiepmNpyifW8b4p14-SZZ1ToCC0NAdIwg,1463
56
+ azure/quantum/target/pasqal/result.py,sha256=36VA5bNog5GRvPwHJfesr72y1SfD3xxu5pJaM2Pr_FM,1501
56
57
  azure/quantum/target/pasqal/target.py,sha256=K_vqavov6gvS84voRKeBx9pO8g4LrtWrlZ5-RMLWozw,5139
57
58
  azure/quantum/target/rigetti/__init__.py,sha256=I1vyzZBYGI540pauTqJd0RSSyTShGqkEL7Yjo25_RNY,378
58
- azure/quantum/target/rigetti/result.py,sha256=65mtAZxfdNrTWNjWPqgfwt2BZN6Nllo4g_bls7-Nm68,2334
59
+ azure/quantum/target/rigetti/result.py,sha256=Xdb5LSwOkJssluDVDhg2gxHLgdvXpwCmA9QMr3jx3VA,2372
59
60
  azure/quantum/target/rigetti/target.py,sha256=HFrng9SigibPn_2KWhD5qWHiP_RNz3CNRkv288tf-z8,7586
60
- azure_quantum-3.4.1.dev1.dist-info/METADATA,sha256=e09-VF_Q-gL2OmzGbmuPw3CWL25KkMjg6U-7eQfBzfI,7203
61
- azure_quantum-3.4.1.dev1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
62
- azure_quantum-3.4.1.dev1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
63
- azure_quantum-3.4.1.dev1.dist-info/RECORD,,
61
+ azure_quantum-3.5.0.dev0.dist-info/METADATA,sha256=bAE_JpdePnEXVdj0s9lR9ELahtuMC5C4Y7vZqtQnkwA,6759
62
+ azure_quantum-3.5.0.dev0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
63
+ azure_quantum-3.5.0.dev0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
64
+ azure_quantum-3.5.0.dev0.dist-info/RECORD,,