azure-quantum 3.5.1.dev0__py3-none-any.whl → 3.6.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/__init__.py +2 -2
- azure/quantum/_client/_client.py +18 -57
- azure/quantum/_client/_configuration.py +13 -22
- azure/quantum/_client/_patch.py +7 -6
- azure/quantum/_client/_utils/__init__.py +6 -0
- azure/quantum/_client/{_model_base.py → _utils/model_base.py} +210 -45
- azure/quantum/_client/{_serialization.py → _utils/serialization.py} +74 -151
- azure/quantum/_client/_validation.py +66 -0
- azure/quantum/_client/_version.py +1 -1
- azure/quantum/_client/aio/__init__.py +29 -0
- azure/quantum/_client/aio/_client.py +110 -0
- azure/quantum/_client/aio/_configuration.py +75 -0
- azure/quantum/_client/aio/_patch.py +21 -0
- azure/quantum/_client/aio/operations/__init__.py +25 -0
- azure/quantum/_client/aio/operations/_operations.py +1988 -0
- azure/quantum/_client/aio/operations/_patch.py +21 -0
- azure/quantum/_client/models/__init__.py +8 -4
- azure/quantum/_client/models/_enums.py +28 -23
- azure/quantum/_client/models/_models.py +198 -106
- azure/quantum/_client/models/_patch.py +7 -6
- azure/quantum/_client/operations/__init__.py +2 -12
- azure/quantum/_client/operations/_operations.py +900 -715
- azure/quantum/_client/operations/_patch.py +7 -6
- azure/quantum/_constants.py +5 -0
- azure/quantum/_mgmt_client.py +18 -8
- azure/quantum/_workspace_connection_params.py +27 -2
- azure/quantum/job/base_job.py +8 -0
- azure/quantum/job/job.py +1 -1
- azure/quantum/job/session.py +11 -0
- azure/quantum/target/target.py +5 -1
- azure/quantum/target/target_factory.py +14 -7
- azure/quantum/version.py +1 -1
- azure/quantum/workspace.py +70 -69
- {azure_quantum-3.5.1.dev0.dist-info → azure_quantum-3.6.0.dist-info}/METADATA +1 -1
- azure_quantum-3.6.0.dist-info/RECORD +74 -0
- azure_quantum-3.5.1.dev0.dist-info/RECORD +0 -65
- {azure_quantum-3.5.1.dev0.dist-info → azure_quantum-3.6.0.dist-info}/WHEEL +0 -0
- {azure_quantum-3.5.1.dev0.dist-info → azure_quantum-3.6.0.dist-info}/top_level.txt +0 -0
azure/quantum/workspace.py
CHANGED
|
@@ -23,14 +23,14 @@ from typing import (
|
|
|
23
23
|
)
|
|
24
24
|
from typing_extensions import Self
|
|
25
25
|
from azure.core.paging import ItemPaged
|
|
26
|
-
from azure.quantum._client import
|
|
26
|
+
from azure.quantum._client import WorkspaceClient
|
|
27
27
|
from azure.quantum._client.models import JobDetails, ItemDetails, SessionDetails
|
|
28
|
-
from azure.quantum._client.operations import (
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
28
|
+
from azure.quantum._client.operations._operations import (
|
|
29
|
+
ServicesJobsOperations,
|
|
30
|
+
ServicesStorageOperations,
|
|
31
|
+
ServicesQuotasOperations,
|
|
32
|
+
ServicesSessionsOperations,
|
|
33
|
+
ServicesTopLevelItemsOperations
|
|
34
34
|
)
|
|
35
35
|
from azure.quantum._client.models import (
|
|
36
36
|
BlobDetails,
|
|
@@ -117,6 +117,7 @@ class Workspace:
|
|
|
117
117
|
# Internal parameter names
|
|
118
118
|
_FROM_CONNECTION_STRING_PARAM = '_from_connection_string'
|
|
119
119
|
_QUANTUM_ENDPOINT_PARAM = '_quantum_endpoint'
|
|
120
|
+
_WORKSPACE_KIND_PARAM = '_workspace_kind'
|
|
120
121
|
_MGMT_CLIENT_PARAM = '_mgmt_client'
|
|
121
122
|
|
|
122
123
|
def __init__(
|
|
@@ -136,6 +137,7 @@ class Workspace:
|
|
|
136
137
|
from_connection_string = kwargs.pop(Workspace._FROM_CONNECTION_STRING_PARAM, False)
|
|
137
138
|
# In case from connection string, quantum_endpoint must be passed
|
|
138
139
|
quantum_endpoint = kwargs.pop(Workspace._QUANTUM_ENDPOINT_PARAM, None)
|
|
140
|
+
workspace_kind = kwargs.pop(Workspace._WORKSPACE_KIND_PARAM, None)
|
|
139
141
|
# Params to pass a mock in tests
|
|
140
142
|
self._mgmt_client = kwargs.pop(Workspace._MGMT_CLIENT_PARAM, None)
|
|
141
143
|
|
|
@@ -148,6 +150,7 @@ class Workspace:
|
|
|
148
150
|
resource_id=resource_id,
|
|
149
151
|
quantum_endpoint=quantum_endpoint,
|
|
150
152
|
user_agent=user_agent,
|
|
153
|
+
workspace_kind=workspace_kind,
|
|
151
154
|
**kwargs
|
|
152
155
|
).default_from_env_vars()
|
|
153
156
|
|
|
@@ -159,9 +162,6 @@ class Workspace:
|
|
|
159
162
|
|
|
160
163
|
self._connection_params = connection_params
|
|
161
164
|
self._storage = storage
|
|
162
|
-
self._subscription_id = connection_params.subscription_id
|
|
163
|
-
self._resource_group = connection_params.resource_group
|
|
164
|
-
self._workspace_name = connection_params.workspace_name
|
|
165
165
|
|
|
166
166
|
if not self._mgmt_client:
|
|
167
167
|
credential = connection_params.get_credential_or_default()
|
|
@@ -189,7 +189,7 @@ class Workspace:
|
|
|
189
189
|
|
|
190
190
|
connection_params.assert_complete()
|
|
191
191
|
|
|
192
|
-
# Create
|
|
192
|
+
# Create WorkspaceClient
|
|
193
193
|
self._client = self._create_client()
|
|
194
194
|
|
|
195
195
|
def _on_new_client_request(self) -> None:
|
|
@@ -262,18 +262,18 @@ class Workspace:
|
|
|
262
262
|
"""
|
|
263
263
|
return self._storage
|
|
264
264
|
|
|
265
|
-
def _create_client(self) ->
|
|
265
|
+
def _create_client(self) -> WorkspaceClient:
|
|
266
266
|
""""
|
|
267
267
|
An internal method to (re)create the underlying Azure SDK REST API client.
|
|
268
268
|
|
|
269
269
|
:return: Azure SDK REST API client for Azure Quantum.
|
|
270
|
-
:rtype:
|
|
270
|
+
:rtype: WorkspaceClient
|
|
271
271
|
"""
|
|
272
272
|
connection_params = self._connection_params
|
|
273
273
|
kwargs = {}
|
|
274
274
|
if connection_params.api_version:
|
|
275
275
|
kwargs["api_version"] = connection_params.api_version
|
|
276
|
-
client =
|
|
276
|
+
client = WorkspaceClient(
|
|
277
277
|
region=connection_params.location,
|
|
278
278
|
credential=connection_params.get_credential_or_default(),
|
|
279
279
|
subscription_id=connection_params.subscription_id,
|
|
@@ -323,6 +323,7 @@ class Workspace:
|
|
|
323
323
|
connection_params = WorkspaceConnectionParams(connection_string=connection_string)
|
|
324
324
|
kwargs[cls._FROM_CONNECTION_STRING_PARAM] = True
|
|
325
325
|
kwargs[cls._QUANTUM_ENDPOINT_PARAM] = connection_params.quantum_endpoint
|
|
326
|
+
kwargs[cls._WORKSPACE_KIND_PARAM] = connection_params.workspace_kind.value if connection_params.workspace_kind else None
|
|
326
327
|
return cls(
|
|
327
328
|
subscription_id=connection_params.subscription_id,
|
|
328
329
|
resource_group=connection_params.resource_group,
|
|
@@ -331,55 +332,55 @@ class Workspace:
|
|
|
331
332
|
credential=connection_params.get_credential_or_default(),
|
|
332
333
|
**kwargs)
|
|
333
334
|
|
|
334
|
-
def _get_top_level_items_client(self) ->
|
|
335
|
+
def _get_top_level_items_client(self) -> ServicesTopLevelItemsOperations:
|
|
335
336
|
"""
|
|
336
337
|
Returns the internal Azure SDK REST API client
|
|
337
338
|
for the `{workspace}/topLevelItems` API.
|
|
338
339
|
|
|
339
340
|
:return: REST API client for the `topLevelItems` API.
|
|
340
|
-
:rtype:
|
|
341
|
+
:rtype: ServicesTopLevelItemsOperations
|
|
341
342
|
"""
|
|
342
|
-
return self._client.top_level_items
|
|
343
|
+
return self._client.services.top_level_items
|
|
343
344
|
|
|
344
|
-
def _get_sessions_client(self) ->
|
|
345
|
+
def _get_sessions_client(self) -> ServicesSessionsOperations:
|
|
345
346
|
"""
|
|
346
347
|
Returns the internal Azure SDK REST API client
|
|
347
348
|
for the `{workspace}/sessions` API.
|
|
348
349
|
|
|
349
350
|
:return: REST API client for the `sessions` API.
|
|
350
|
-
:rtype:
|
|
351
|
+
:rtype: ServicesSessionsOperations
|
|
351
352
|
"""
|
|
352
|
-
return self._client.sessions
|
|
353
|
+
return self._client.services.sessions
|
|
353
354
|
|
|
354
|
-
def _get_jobs_client(self) ->
|
|
355
|
+
def _get_jobs_client(self) -> ServicesJobsOperations:
|
|
355
356
|
"""
|
|
356
357
|
Returns the internal Azure SDK REST API client
|
|
357
358
|
for the `{workspace}/jobs` API.
|
|
358
359
|
|
|
359
360
|
:return: REST API client for the `jobs` API.
|
|
360
|
-
:rtype:
|
|
361
|
+
:rtype: ServicesJobsOperations
|
|
361
362
|
"""
|
|
362
|
-
return self._client.jobs
|
|
363
|
+
return self._client.services.jobs
|
|
363
364
|
|
|
364
|
-
def _get_workspace_storage_client(self) ->
|
|
365
|
+
def _get_workspace_storage_client(self) -> ServicesStorageOperations:
|
|
365
366
|
"""
|
|
366
367
|
Returns the internal Azure SDK REST API client
|
|
367
368
|
for the `{workspace}/storage` API.
|
|
368
369
|
|
|
369
370
|
:return: REST API client for the `storage` API.
|
|
370
|
-
:rtype:
|
|
371
|
+
:rtype: ServicesStorageOperations
|
|
371
372
|
"""
|
|
372
|
-
return self._client.storage
|
|
373
|
+
return self._client.services.storage
|
|
373
374
|
|
|
374
|
-
def _get_quotas_client(self) ->
|
|
375
|
+
def _get_quotas_client(self) -> ServicesQuotasOperations:
|
|
375
376
|
"""
|
|
376
377
|
Returns the internal Azure SDK REST API client
|
|
377
378
|
for the `{workspace}/quotas` API.
|
|
378
379
|
|
|
379
380
|
:return: REST API client for the `quotas` API.
|
|
380
|
-
:rtype:
|
|
381
|
+
:rtype: ServicesQuotasOperations
|
|
381
382
|
"""
|
|
382
|
-
return self._client.quotas
|
|
383
|
+
return self._client.services.quotas
|
|
383
384
|
|
|
384
385
|
def _get_linked_storage_sas_uri(
|
|
385
386
|
self,
|
|
@@ -404,9 +405,9 @@ class Workspace:
|
|
|
404
405
|
container_name=container_name, blob_name=blob_name
|
|
405
406
|
)
|
|
406
407
|
container_uri = client.get_sas_uri(
|
|
407
|
-
self.
|
|
408
|
-
self.
|
|
409
|
-
self.
|
|
408
|
+
self.subscription_id,
|
|
409
|
+
self.resource_group,
|
|
410
|
+
self.name,
|
|
410
411
|
blob_details=blob_details)
|
|
411
412
|
|
|
412
413
|
logger.debug("Container URI from service: %s", container_uri)
|
|
@@ -423,10 +424,10 @@ class Workspace:
|
|
|
423
424
|
:rtype: Job
|
|
424
425
|
"""
|
|
425
426
|
client = self._get_jobs_client()
|
|
426
|
-
details = client.
|
|
427
|
-
self.
|
|
428
|
-
self.
|
|
429
|
-
self.
|
|
427
|
+
details = client.create(
|
|
428
|
+
self.subscription_id,
|
|
429
|
+
self.resource_group,
|
|
430
|
+
self.name,
|
|
430
431
|
job.details.id,
|
|
431
432
|
job.details
|
|
432
433
|
)
|
|
@@ -445,14 +446,14 @@ class Workspace:
|
|
|
445
446
|
"""
|
|
446
447
|
client = self._get_jobs_client()
|
|
447
448
|
client.delete(
|
|
448
|
-
self.
|
|
449
|
-
self.
|
|
450
|
-
self.
|
|
449
|
+
self.subscription_id,
|
|
450
|
+
self.resource_group,
|
|
451
|
+
self.name,
|
|
451
452
|
job.details.id)
|
|
452
453
|
details = client.get(
|
|
453
|
-
self.
|
|
454
|
-
self.
|
|
455
|
-
self.
|
|
454
|
+
self.subscription_id,
|
|
455
|
+
self.resource_group,
|
|
456
|
+
self.name,
|
|
456
457
|
job.id)
|
|
457
458
|
return Job(self, details)
|
|
458
459
|
|
|
@@ -472,9 +473,9 @@ class Workspace:
|
|
|
472
473
|
|
|
473
474
|
client = self._get_jobs_client()
|
|
474
475
|
details = client.get(
|
|
475
|
-
self.
|
|
476
|
-
self.
|
|
477
|
-
self.
|
|
476
|
+
self.subscription_id,
|
|
477
|
+
self.resource_group,
|
|
478
|
+
self.name,
|
|
478
479
|
job_id)
|
|
479
480
|
target_factory = TargetFactory(base_cls=Target, workspace=self)
|
|
480
481
|
# pylint: disable=protected-access
|
|
@@ -557,7 +558,7 @@ class Workspace:
|
|
|
557
558
|
)
|
|
558
559
|
orderby = self._create_orderby(orderby_property, is_asc)
|
|
559
560
|
|
|
560
|
-
return client.list(subscription_id=self.subscription_id, resource_group_name=self.resource_group, workspace_name=self.
|
|
561
|
+
return client.list(subscription_id=self.subscription_id, resource_group_name=self.resource_group, workspace_name=self.name, filter=job_filter, orderby=orderby, top = top, skip = skip)
|
|
561
562
|
|
|
562
563
|
def _get_target_status(
|
|
563
564
|
self,
|
|
@@ -579,10 +580,10 @@ class Workspace:
|
|
|
579
580
|
"""
|
|
580
581
|
return [
|
|
581
582
|
(provider.id, target)
|
|
582
|
-
for provider in self._client.providers.list(
|
|
583
|
-
self.
|
|
584
|
-
self.
|
|
585
|
-
self.
|
|
583
|
+
for provider in self._client.services.providers.list(
|
|
584
|
+
self.subscription_id,
|
|
585
|
+
self.resource_group,
|
|
586
|
+
self.name)
|
|
586
587
|
for target in provider.targets
|
|
587
588
|
if (provider_id is None or provider.id.lower() == provider_id.lower())
|
|
588
589
|
and (name is None or target.id.lower() == name.lower())
|
|
@@ -639,9 +640,9 @@ class Workspace:
|
|
|
639
640
|
"""
|
|
640
641
|
client = self._get_quotas_client()
|
|
641
642
|
return [q.as_dict() for q in client.list(
|
|
642
|
-
self.
|
|
643
|
-
self.
|
|
644
|
-
self.
|
|
643
|
+
self.subscription_id,
|
|
644
|
+
self.resource_group,
|
|
645
|
+
self.name
|
|
645
646
|
)]
|
|
646
647
|
|
|
647
648
|
def list_top_level_items(
|
|
@@ -712,7 +713,7 @@ class Workspace:
|
|
|
712
713
|
)
|
|
713
714
|
orderby = self._create_orderby(orderby_property, is_asc)
|
|
714
715
|
|
|
715
|
-
return client.
|
|
716
|
+
return client.listv2(subscription_id=self.subscription_id, resource_group_name=self.resource_group, workspace_name=self.name, filter=top_level_item_filter, orderby=orderby, top = top, skip = skip)
|
|
716
717
|
|
|
717
718
|
def list_sessions(
|
|
718
719
|
self,
|
|
@@ -773,7 +774,7 @@ class Workspace:
|
|
|
773
774
|
|
|
774
775
|
orderby = self._create_orderby(orderby_property=orderby_property, is_asc=is_asc)
|
|
775
776
|
|
|
776
|
-
return client.
|
|
777
|
+
return client.listv2(subscription_id=self.subscription_id, resource_group_name=self.resource_group, workspace_name=self.name, filter = session_filter, orderby=orderby, skip=skip, top=top)
|
|
777
778
|
|
|
778
779
|
def open_session(
|
|
779
780
|
self,
|
|
@@ -789,10 +790,10 @@ class Workspace:
|
|
|
789
790
|
:rtype: Session
|
|
790
791
|
"""
|
|
791
792
|
client = self._get_sessions_client()
|
|
792
|
-
session.details = client.
|
|
793
|
-
self.
|
|
794
|
-
self.
|
|
795
|
-
self.
|
|
793
|
+
session.details = client.open(
|
|
794
|
+
self.subscription_id,
|
|
795
|
+
self.resource_group,
|
|
796
|
+
self.name,
|
|
796
797
|
session.id,
|
|
797
798
|
session.details)
|
|
798
799
|
|
|
@@ -811,15 +812,15 @@ class Workspace:
|
|
|
811
812
|
client = self._get_sessions_client()
|
|
812
813
|
if not session.is_in_terminal_state():
|
|
813
814
|
session.details = client.close(
|
|
814
|
-
self.
|
|
815
|
-
self.
|
|
816
|
-
self.
|
|
815
|
+
self.subscription_id,
|
|
816
|
+
self.resource_group,
|
|
817
|
+
self.name,
|
|
817
818
|
session_id=session.id)
|
|
818
819
|
else:
|
|
819
820
|
session.details = client.get(
|
|
820
|
-
self.
|
|
821
|
-
self.
|
|
822
|
-
self.
|
|
821
|
+
self.subscription_id,
|
|
822
|
+
self.resource_group,
|
|
823
|
+
self.name,
|
|
823
824
|
session_id=session.id)
|
|
824
825
|
|
|
825
826
|
if session.target:
|
|
@@ -855,9 +856,9 @@ class Workspace:
|
|
|
855
856
|
"""
|
|
856
857
|
client = self._get_sessions_client()
|
|
857
858
|
session_details = client.get(
|
|
858
|
-
self.
|
|
859
|
-
self.
|
|
860
|
-
self.
|
|
859
|
+
self.subscription_id,
|
|
860
|
+
self.resource_group,
|
|
861
|
+
self.name,
|
|
861
862
|
session_id=session_id)
|
|
862
863
|
result = Session(workspace=self, details=session_details)
|
|
863
864
|
return result
|
|
@@ -919,7 +920,7 @@ class Workspace:
|
|
|
919
920
|
|
|
920
921
|
orderby = self._create_orderby(orderby_property=orderby_property, is_asc=is_asc)
|
|
921
922
|
|
|
922
|
-
return client.jobs_list(subscription_id=self.subscription_id, resource_group_name=self.resource_group, workspace_name=self.
|
|
923
|
+
return client.jobs_list(subscription_id=self.subscription_id, resource_group_name=self.resource_group, workspace_name=self.name, session_id=session_id, filter = session_job_filter, orderby=orderby, skip=skip, top=top)
|
|
923
924
|
|
|
924
925
|
def get_container_uri(
|
|
925
926
|
self,
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
azure/quantum/__init__.py,sha256=Za8xZY4lzFkW8m4ero-bqrfN437D2NRukM77ukb4GPM,508
|
|
2
|
+
azure/quantum/_constants.py,sha256=iUk8JfprDi3Z7BSURkEHcGhg3palx-Qop5bZaxSqYNM,5172
|
|
3
|
+
azure/quantum/_mgmt_client.py,sha256=l3i3Lqyr1wWYYCMUE9FJLS67yJ5w6_TPmROJbzzczjE,10845
|
|
4
|
+
azure/quantum/_workspace_connection_params.py,sha256=gVwGrqZscq5Tz8_99H5qf9eG9t29VWKEr8oy46wdskg,27653
|
|
5
|
+
azure/quantum/storage.py,sha256=_4bMniDk9LrB_K5CQwuCivJFZXdmhRvU2b6Z3xxXw9I,12556
|
|
6
|
+
azure/quantum/version.py,sha256=5Bxuqcaym2LB4GoImszvsl8vFh1CoTAFQn_1fOV9DRg,235
|
|
7
|
+
azure/quantum/workspace.py,sha256=Q_F5kjZxnGgvZqN_QgVj_rT9JlP3fnd9_6qyRpf1HqY,38303
|
|
8
|
+
azure/quantum/_client/__init__.py,sha256=YbugbghdTQryyE5FqMFNWRGdB8j1clZ1OZE3Q5RjKRI,1058
|
|
9
|
+
azure/quantum/_client/_client.py,sha256=DZPNGo6MkUUOXT5QsgkPJ424K--omBblQATp9WUp6Z4,4926
|
|
10
|
+
azure/quantum/_client/_configuration.py,sha256=TaH0QzwDV8Gi5DRBEJi-iivffSpbsaqO3kK-A-u8yRU,3941
|
|
11
|
+
azure/quantum/_client/_patch.py,sha256=9eaiNlBEG97tewWCROwBtNgUzrZkdsUDLIqIpuH-uMM,845
|
|
12
|
+
azure/quantum/_client/_validation.py,sha256=xJHMb5QHPRJJYvsfSy2ERneBuQsHgZeKTvcW_FyXLC8,2888
|
|
13
|
+
azure/quantum/_client/_version.py,sha256=I7zfjrgP0MnyydZ6AQXG-w2tL6pXWLRET3i4S92jPFs,495
|
|
14
|
+
azure/quantum/_client/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
|
|
15
|
+
azure/quantum/_client/_utils/__init__.py,sha256=p0sPNQkjON5xrLnTRJwrPqpEGR0EChMoEgooze5LhPs,456
|
|
16
|
+
azure/quantum/_client/_utils/model_base.py,sha256=FsYfWhypFi-oankp9p0jJ1j-8oU8Dceh16NmndSMYhE,50901
|
|
17
|
+
azure/quantum/_client/_utils/serialization.py,sha256=pLoio6kwjxQUQGPEkIWZR5a-uhHx2mYPFoNrhUK7joY,84427
|
|
18
|
+
azure/quantum/_client/aio/__init__.py,sha256=5DSS9gUk5_8wUKHLfb4y69L57pawbcljAdq9gftFIYU,1002
|
|
19
|
+
azure/quantum/_client/aio/_client.py,sha256=JR3hJ-TlXks1fJXKW02bPa2DWkekgS1wsnI9491aX0I,5093
|
|
20
|
+
azure/quantum/_client/aio/_configuration.py,sha256=lKLcgnAYs4Dj_plof-kp6-G7iTPZlsuZz7KKTZqq5Nk,4000
|
|
21
|
+
azure/quantum/_client/aio/_patch.py,sha256=9eaiNlBEG97tewWCROwBtNgUzrZkdsUDLIqIpuH-uMM,845
|
|
22
|
+
azure/quantum/_client/aio/operations/__init__.py,sha256=ETHIViWEqac2TTVOpY2YJYYACjW3qs50Qrm7jL47guo,954
|
|
23
|
+
azure/quantum/_client/aio/operations/_operations.py,sha256=O1KgobhR3oxnlED6Jn1BnvUN091ZV-Yjj5IwLDZ75Sc,84883
|
|
24
|
+
azure/quantum/_client/aio/operations/_patch.py,sha256=9eaiNlBEG97tewWCROwBtNgUzrZkdsUDLIqIpuH-uMM,845
|
|
25
|
+
azure/quantum/_client/models/__init__.py,sha256=Jn2nb4nbLVvM0UuA5kQsE9foNUH0wz2omk3J3vofr4E,2021
|
|
26
|
+
azure/quantum/_client/models/_enums.py,sha256=6EGy6vaGt2YIkuaQmNYpIZMjbBZv_vGXXW2cfHMQurM,4889
|
|
27
|
+
azure/quantum/_client/models/_models.py,sha256=Wy3AT5ziyEI8klRbOJ2Tz1wkgS2NSQOMCT-788z-NgQ,36409
|
|
28
|
+
azure/quantum/_client/models/_patch.py,sha256=9eaiNlBEG97tewWCROwBtNgUzrZkdsUDLIqIpuH-uMM,845
|
|
29
|
+
azure/quantum/_client/operations/__init__.py,sha256=ETHIViWEqac2TTVOpY2YJYYACjW3qs50Qrm7jL47guo,954
|
|
30
|
+
azure/quantum/_client/operations/_operations.py,sha256=NSGjtAmLNlYOoIMemWIS_ouzd26pB-E8LbPgCFFGdpw,106955
|
|
31
|
+
azure/quantum/_client/operations/_patch.py,sha256=9eaiNlBEG97tewWCROwBtNgUzrZkdsUDLIqIpuH-uMM,845
|
|
32
|
+
azure/quantum/argument_types/__init__.py,sha256=AEDyuUMipR2za248GrRzqxfzr0Ysd8tj2F0OQBSFKWg,255
|
|
33
|
+
azure/quantum/argument_types/types.py,sha256=2mM8s37DKgNfSsjzwmg4dnmj9roSeHY1ZT5vKnpjAYM,1041
|
|
34
|
+
azure/quantum/cirq/__init__.py,sha256=AJT_qCdxfqgeiPmqmbxQgCzETCOIJyHYoy6pCs-OskQ,227
|
|
35
|
+
azure/quantum/cirq/job.py,sha256=Wm52HFYel9Di6xGdzDdYfBLM3ZklaE1qOQ9YNg87eeY,3031
|
|
36
|
+
azure/quantum/cirq/service.py,sha256=5TcBvdULJJD_KsZna35dWYfkn7EY8Rge0ucnkwgJS3w,7833
|
|
37
|
+
azure/quantum/cirq/targets/__init__.py,sha256=cpb677Kg1V5cdI0kdgkLafI8xfwYZZYx0tc6qc024gE,574
|
|
38
|
+
azure/quantum/cirq/targets/ionq.py,sha256=tB76z5TqPJ-uwWNxEQMFDjVO3xHIyCeXODhyPsIMqws,6230
|
|
39
|
+
azure/quantum/cirq/targets/quantinuum.py,sha256=50S-ByS0Oaoo8UH-eiXpkGJMI7u84ZTIhU4X9gz3u5s,3960
|
|
40
|
+
azure/quantum/cirq/targets/target.py,sha256=1EEog72dFZoiOTQP7obOrCuO3VH0yjXGAIMeO6bm22o,2184
|
|
41
|
+
azure/quantum/job/__init__.py,sha256=nFuOsG25a8WzYFLwA2fhA0JMNWtblfDjV5WRgB6UQbw,829
|
|
42
|
+
azure/quantum/job/base_job.py,sha256=WK1aE1adi3fU535lyU6dnHEn23VYXxlw4zgHfB52A-w,14689
|
|
43
|
+
azure/quantum/job/filtered_job.py,sha256=qZfxTuDp0hzK4wermn4GRzLxnDy4yM-j6oZQ3D0O4vI,1877
|
|
44
|
+
azure/quantum/job/job.py,sha256=CqnNzNdeb8kgKbypqR02n9owjG_qArKjkVhTuI1HZ3U,17777
|
|
45
|
+
azure/quantum/job/job_failed_with_results_error.py,sha256=bSqOZ0c6FNbS9opvwkCXG9mfTkAiyZRvp_YA3V-ktEs,1597
|
|
46
|
+
azure/quantum/job/session.py,sha256=FkZEP1RTYghFY0dt8Ly6_yhVefsBjLW5AMR5UpXCJ_U,12403
|
|
47
|
+
azure/quantum/job/workspace_item.py,sha256=lyBIJCtUfIZMGJYJkX7Se8IDnXhXe4JU0RnqzSuhhI4,1380
|
|
48
|
+
azure/quantum/job/workspace_item_factory.py,sha256=QRWyrtgcKZqUucJOFi9V_SYMV3lj6S74tGRrPtk3NE0,1200
|
|
49
|
+
azure/quantum/qiskit/__init__.py,sha256=gjKsmRwtVNcbbsuOvy2wT0ASELh5NXGmuwaEwjZcVQo,314
|
|
50
|
+
azure/quantum/qiskit/job.py,sha256=2rkqSIJ0ytVI_-9kjVlk-rSuDTxa4vP1osJwcftcOUk,14983
|
|
51
|
+
azure/quantum/qiskit/provider.py,sha256=pfWTyOq4hWJmz3SyNrhGUV7Oj7ly4CU4bI5143uh1V0,11040
|
|
52
|
+
azure/quantum/qiskit/backends/__init__.py,sha256=Ygx3GwVHbIJ9Bi-_KqVQsL7B3QfeL-qUKIMIEfuStGw,994
|
|
53
|
+
azure/quantum/qiskit/backends/_qiskit_ionq.py,sha256=U3v4xC7QAXypZF1VYlU1REQNDcq2pc1VO1Elxvx5kKQ,13626
|
|
54
|
+
azure/quantum/qiskit/backends/backend.py,sha256=r5f8X0UFW87pASz62MpQebLhM6DuPtlHm8E78W0wtDM,31106
|
|
55
|
+
azure/quantum/qiskit/backends/ionq.py,sha256=P8es_Nj8fxNojV9WVK22HhlWZAEQHJZ2GSG0-NaluIc,13576
|
|
56
|
+
azure/quantum/qiskit/backends/qci.py,sha256=X07qPxHVQFk4vaixhfNMRmA6jYK7tWI91eFieGkRN5U,4712
|
|
57
|
+
azure/quantum/qiskit/backends/quantinuum.py,sha256=RGUY1tIfJEPSGIsHdAKehlASAjD7L0vDzssYoMtAWYM,12248
|
|
58
|
+
azure/quantum/qiskit/backends/rigetti.py,sha256=x0iQoZcan6Cm3kXob7J16f_TsSiHkI0_a9ShWTEOZl4,4055
|
|
59
|
+
azure/quantum/target/__init__.py,sha256=hK4OqAOkgwO8W52YvPp6QeoMTFj_eum3iexMmpCMEsI,606
|
|
60
|
+
azure/quantum/target/ionq.py,sha256=9SS5ahHcZ7IRHq9hZb6hX_q56BbCSIKs6dRqYtQv1tk,3160
|
|
61
|
+
azure/quantum/target/params.py,sha256=Txpq_AKdVV8OeZjK1z48CIym--_a6wncorj4LmmlQ_E,9128
|
|
62
|
+
azure/quantum/target/quantinuum.py,sha256=6yn_ALIPgsRtrDi3PCckWOUuT-eeXC04e2D8GNuvuOc,2897
|
|
63
|
+
azure/quantum/target/target.py,sha256=8xfa2lGxA_0Ue2_wzS3q4GhxuNjbPo9t8WfK7LlfNeI,13529
|
|
64
|
+
azure/quantum/target/target_factory.py,sha256=plb03tMLhwH6DA-fy3Cx72ODcI07XUTVjW8hulvhyYw,5483
|
|
65
|
+
azure/quantum/target/pasqal/__init__.py,sha256=qbe6oWTQTsnTYwY3xZr32z4AWaYIchx71bYlqC2rQqw,348
|
|
66
|
+
azure/quantum/target/pasqal/result.py,sha256=36VA5bNog5GRvPwHJfesr72y1SfD3xxu5pJaM2Pr_FM,1501
|
|
67
|
+
azure/quantum/target/pasqal/target.py,sha256=K_vqavov6gvS84voRKeBx9pO8g4LrtWrlZ5-RMLWozw,5139
|
|
68
|
+
azure/quantum/target/rigetti/__init__.py,sha256=I1vyzZBYGI540pauTqJd0RSSyTShGqkEL7Yjo25_RNY,378
|
|
69
|
+
azure/quantum/target/rigetti/result.py,sha256=Xdb5LSwOkJssluDVDhg2gxHLgdvXpwCmA9QMr3jx3VA,2372
|
|
70
|
+
azure/quantum/target/rigetti/target.py,sha256=HFrng9SigibPn_2KWhD5qWHiP_RNz3CNRkv288tf-z8,7586
|
|
71
|
+
azure_quantum-3.6.0.dist-info/METADATA,sha256=auIRo9vvF1CIBa9KhH8GHLGKmlMS_5tOmqq6RgZKdnI,6700
|
|
72
|
+
azure_quantum-3.6.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
73
|
+
azure_quantum-3.6.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
|
74
|
+
azure_quantum-3.6.0.dist-info/RECORD,,
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
azure/quantum/__init__.py,sha256=Za8xZY4lzFkW8m4ero-bqrfN437D2NRukM77ukb4GPM,508
|
|
2
|
-
azure/quantum/_constants.py,sha256=EVGCZh2TJPkTOvti5Wq2V9mRFf4_gueiRZrXtCcPO9I,5110
|
|
3
|
-
azure/quantum/_mgmt_client.py,sha256=9aCLHsrjLMnWKWkWOpRkW6fMQeSRbIy13q4Rjx4z_W8,10253
|
|
4
|
-
azure/quantum/_workspace_connection_params.py,sha256=lVJpEdX6qz4MywnCv2h2ANFQYJJXRDAVNf5MfobLWnM,26636
|
|
5
|
-
azure/quantum/storage.py,sha256=_4bMniDk9LrB_K5CQwuCivJFZXdmhRvU2b6Z3xxXw9I,12556
|
|
6
|
-
azure/quantum/version.py,sha256=JFFC54i4LOeY2bi6Syv5CfR5MU3T0H1ZVPQykIlik5g,240
|
|
7
|
-
azure/quantum/workspace.py,sha256=EjzsojRP66FuZxhkEqJrc3LkZY4jXgXgDZwRS2YWiuw,38217
|
|
8
|
-
azure/quantum/_client/__init__.py,sha256=P3K9ffYchHhHjJhCEAEwutSD3xRW92XDUQNYDjwhYqI,1056
|
|
9
|
-
azure/quantum/_client/_client.py,sha256=7MRvLQZYcg0PKf906ulEOtF6H22Km1aa0FFj3O6LxXc,6734
|
|
10
|
-
azure/quantum/_client/_configuration.py,sha256=FFUHJPp6X0015GpD-YLmYCoq8GI86nHCnDS_THTSHbg,4184
|
|
11
|
-
azure/quantum/_client/_model_base.py,sha256=hu7OdRS2Ra1igfBo-R3zS3dzO3YhFC4FGHJ_WiyZgNg,43736
|
|
12
|
-
azure/quantum/_client/_patch.py,sha256=YTV6yZ9bRfBBaw2z7v4MdzR-zeHkdtKkGb4SU8C25mE,694
|
|
13
|
-
azure/quantum/_client/_serialization.py,sha256=bBl0y0mh-0sDd-Z8_dj921jQQhqhYWTOl59qSLuk01M,86686
|
|
14
|
-
azure/quantum/_client/_version.py,sha256=AjHHjGWm1kbDuEBWL5rJROKUlAo5mj63kRk3JRKG9GY,500
|
|
15
|
-
azure/quantum/_client/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
|
|
16
|
-
azure/quantum/_client/models/__init__.py,sha256=MR2av7s_tCP66hicN9JXCmTngJ4_-ozM4cmblGjPwn8,1971
|
|
17
|
-
azure/quantum/_client/models/_enums.py,sha256=oSJm7cDvyRwYQLZ50XLNWEfHJJ5c_XG8MlOux2PFT7Q,4706
|
|
18
|
-
azure/quantum/_client/models/_models.py,sha256=kOYISdDafBynpX_KUQ6OEahvyWRJOXp_z8WAMzkBgBc,29771
|
|
19
|
-
azure/quantum/_client/models/_patch.py,sha256=YTV6yZ9bRfBBaw2z7v4MdzR-zeHkdtKkGb4SU8C25mE,694
|
|
20
|
-
azure/quantum/_client/operations/__init__.py,sha256=YsursegE17FYuBSlfxPdHzpx8zbfh9C9TTtEBKCGVEk,1392
|
|
21
|
-
azure/quantum/_client/operations/_operations.py,sha256=EL4c4l1t6VwdIay8_V2PomXYdF-MjG_PDSjQKwTQHfI,99639
|
|
22
|
-
azure/quantum/_client/operations/_patch.py,sha256=YTV6yZ9bRfBBaw2z7v4MdzR-zeHkdtKkGb4SU8C25mE,694
|
|
23
|
-
azure/quantum/argument_types/__init__.py,sha256=AEDyuUMipR2za248GrRzqxfzr0Ysd8tj2F0OQBSFKWg,255
|
|
24
|
-
azure/quantum/argument_types/types.py,sha256=2mM8s37DKgNfSsjzwmg4dnmj9roSeHY1ZT5vKnpjAYM,1041
|
|
25
|
-
azure/quantum/cirq/__init__.py,sha256=AJT_qCdxfqgeiPmqmbxQgCzETCOIJyHYoy6pCs-OskQ,227
|
|
26
|
-
azure/quantum/cirq/job.py,sha256=Wm52HFYel9Di6xGdzDdYfBLM3ZklaE1qOQ9YNg87eeY,3031
|
|
27
|
-
azure/quantum/cirq/service.py,sha256=5TcBvdULJJD_KsZna35dWYfkn7EY8Rge0ucnkwgJS3w,7833
|
|
28
|
-
azure/quantum/cirq/targets/__init__.py,sha256=cpb677Kg1V5cdI0kdgkLafI8xfwYZZYx0tc6qc024gE,574
|
|
29
|
-
azure/quantum/cirq/targets/ionq.py,sha256=tB76z5TqPJ-uwWNxEQMFDjVO3xHIyCeXODhyPsIMqws,6230
|
|
30
|
-
azure/quantum/cirq/targets/quantinuum.py,sha256=50S-ByS0Oaoo8UH-eiXpkGJMI7u84ZTIhU4X9gz3u5s,3960
|
|
31
|
-
azure/quantum/cirq/targets/target.py,sha256=1EEog72dFZoiOTQP7obOrCuO3VH0yjXGAIMeO6bm22o,2184
|
|
32
|
-
azure/quantum/job/__init__.py,sha256=nFuOsG25a8WzYFLwA2fhA0JMNWtblfDjV5WRgB6UQbw,829
|
|
33
|
-
azure/quantum/job/base_job.py,sha256=GDwoJDxoaCwGz9TBuzlkuqXdU84L6FliO_2YWxnLnrE,14399
|
|
34
|
-
azure/quantum/job/filtered_job.py,sha256=qZfxTuDp0hzK4wermn4GRzLxnDy4yM-j6oZQ3D0O4vI,1877
|
|
35
|
-
azure/quantum/job/job.py,sha256=m6fvKtvvL159owp7Z00X_HUuWf3m2H2APYmMnqUU7Dc,17772
|
|
36
|
-
azure/quantum/job/job_failed_with_results_error.py,sha256=bSqOZ0c6FNbS9opvwkCXG9mfTkAiyZRvp_YA3V-ktEs,1597
|
|
37
|
-
azure/quantum/job/session.py,sha256=EEJVKEEB5g0yyH963aaR0GY0Cd0axrX-49gwDWxBcfE,11961
|
|
38
|
-
azure/quantum/job/workspace_item.py,sha256=lyBIJCtUfIZMGJYJkX7Se8IDnXhXe4JU0RnqzSuhhI4,1380
|
|
39
|
-
azure/quantum/job/workspace_item_factory.py,sha256=QRWyrtgcKZqUucJOFi9V_SYMV3lj6S74tGRrPtk3NE0,1200
|
|
40
|
-
azure/quantum/qiskit/__init__.py,sha256=gjKsmRwtVNcbbsuOvy2wT0ASELh5NXGmuwaEwjZcVQo,314
|
|
41
|
-
azure/quantum/qiskit/job.py,sha256=2rkqSIJ0ytVI_-9kjVlk-rSuDTxa4vP1osJwcftcOUk,14983
|
|
42
|
-
azure/quantum/qiskit/provider.py,sha256=pfWTyOq4hWJmz3SyNrhGUV7Oj7ly4CU4bI5143uh1V0,11040
|
|
43
|
-
azure/quantum/qiskit/backends/__init__.py,sha256=Ygx3GwVHbIJ9Bi-_KqVQsL7B3QfeL-qUKIMIEfuStGw,994
|
|
44
|
-
azure/quantum/qiskit/backends/_qiskit_ionq.py,sha256=U3v4xC7QAXypZF1VYlU1REQNDcq2pc1VO1Elxvx5kKQ,13626
|
|
45
|
-
azure/quantum/qiskit/backends/backend.py,sha256=r5f8X0UFW87pASz62MpQebLhM6DuPtlHm8E78W0wtDM,31106
|
|
46
|
-
azure/quantum/qiskit/backends/ionq.py,sha256=P8es_Nj8fxNojV9WVK22HhlWZAEQHJZ2GSG0-NaluIc,13576
|
|
47
|
-
azure/quantum/qiskit/backends/qci.py,sha256=X07qPxHVQFk4vaixhfNMRmA6jYK7tWI91eFieGkRN5U,4712
|
|
48
|
-
azure/quantum/qiskit/backends/quantinuum.py,sha256=RGUY1tIfJEPSGIsHdAKehlASAjD7L0vDzssYoMtAWYM,12248
|
|
49
|
-
azure/quantum/qiskit/backends/rigetti.py,sha256=x0iQoZcan6Cm3kXob7J16f_TsSiHkI0_a9ShWTEOZl4,4055
|
|
50
|
-
azure/quantum/target/__init__.py,sha256=hK4OqAOkgwO8W52YvPp6QeoMTFj_eum3iexMmpCMEsI,606
|
|
51
|
-
azure/quantum/target/ionq.py,sha256=9SS5ahHcZ7IRHq9hZb6hX_q56BbCSIKs6dRqYtQv1tk,3160
|
|
52
|
-
azure/quantum/target/params.py,sha256=Txpq_AKdVV8OeZjK1z48CIym--_a6wncorj4LmmlQ_E,9128
|
|
53
|
-
azure/quantum/target/quantinuum.py,sha256=6yn_ALIPgsRtrDi3PCckWOUuT-eeXC04e2D8GNuvuOc,2897
|
|
54
|
-
azure/quantum/target/target.py,sha256=0UFd_eqAuz0lfuSO-_MDIn0-hPBiLbQgTBOVKupdP_s,13375
|
|
55
|
-
azure/quantum/target/target_factory.py,sha256=XcZrbcj6X0JCivIh8x7nKwdBg9RH1FDlSncNUIrtQV0,5058
|
|
56
|
-
azure/quantum/target/pasqal/__init__.py,sha256=qbe6oWTQTsnTYwY3xZr32z4AWaYIchx71bYlqC2rQqw,348
|
|
57
|
-
azure/quantum/target/pasqal/result.py,sha256=36VA5bNog5GRvPwHJfesr72y1SfD3xxu5pJaM2Pr_FM,1501
|
|
58
|
-
azure/quantum/target/pasqal/target.py,sha256=K_vqavov6gvS84voRKeBx9pO8g4LrtWrlZ5-RMLWozw,5139
|
|
59
|
-
azure/quantum/target/rigetti/__init__.py,sha256=I1vyzZBYGI540pauTqJd0RSSyTShGqkEL7Yjo25_RNY,378
|
|
60
|
-
azure/quantum/target/rigetti/result.py,sha256=Xdb5LSwOkJssluDVDhg2gxHLgdvXpwCmA9QMr3jx3VA,2372
|
|
61
|
-
azure/quantum/target/rigetti/target.py,sha256=HFrng9SigibPn_2KWhD5qWHiP_RNz3CNRkv288tf-z8,7586
|
|
62
|
-
azure_quantum-3.5.1.dev0.dist-info/METADATA,sha256=l2x8gdhC-C9czTdCv6M4xsg-sp1e680A_WtWZgWngt8,6705
|
|
63
|
-
azure_quantum-3.5.1.dev0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
64
|
-
azure_quantum-3.5.1.dev0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
|
|
65
|
-
azure_quantum-3.5.1.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|