iqm-client 31.7.0__py3-none-any.whl → 31.8.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.
- iqm/iqm_client/models.py +3 -0
- iqm/qiskit_iqm/fake_backends/fake_adonis.py +1 -0
- iqm/qiskit_iqm/fake_backends/fake_aphrodite.py +1 -0
- iqm/qiskit_iqm/fake_backends/fake_apollo.py +1 -0
- iqm/qiskit_iqm/fake_backends/fake_deneb.py +1 -0
- {iqm_client-31.7.0.dist-info → iqm_client-31.8.0.dist-info}/METADATA +1 -1
- {iqm_client-31.7.0.dist-info → iqm_client-31.8.0.dist-info}/RECORD +12 -12
- {iqm_client-31.7.0.dist-info → iqm_client-31.8.0.dist-info}/AUTHORS.rst +0 -0
- {iqm_client-31.7.0.dist-info → iqm_client-31.8.0.dist-info}/LICENSE.txt +0 -0
- {iqm_client-31.7.0.dist-info → iqm_client-31.8.0.dist-info}/WHEEL +0 -0
- {iqm_client-31.7.0.dist-info → iqm_client-31.8.0.dist-info}/entry_points.txt +0 -0
- {iqm_client-31.7.0.dist-info → iqm_client-31.8.0.dist-info}/top_level.txt +0 -0
iqm/iqm_client/models.py
CHANGED
|
@@ -390,6 +390,9 @@ class StaticQuantumArchitecture(BaseModel):
|
|
|
390
390
|
including the names of its computational components and the connections between them.
|
|
391
391
|
"""
|
|
392
392
|
|
|
393
|
+
# Optional *for now* (backwards compatible)
|
|
394
|
+
dut_label: str | None = None
|
|
395
|
+
"""Identifies the QPU."""
|
|
393
396
|
qubits: list[str] = Field(...)
|
|
394
397
|
"""Names of the physical qubits on the QPU, sorted."""
|
|
395
398
|
computational_resonators: list[str] = Field(...)
|
|
@@ -20,6 +20,7 @@ from iqm.qiskit_iqm.fake_backends.iqm_fake_backend import IQMErrorProfile, IQMFa
|
|
|
20
20
|
def IQMFakeAdonis() -> IQMFakeBackend:
|
|
21
21
|
"""Return IQMFakeBackend instance representing IQM's Adonis architecture."""
|
|
22
22
|
architecture = StaticQuantumArchitecture(
|
|
23
|
+
dut_label="M138_W0_A22_Z99",
|
|
23
24
|
qubits=["QB1", "QB2", "QB3", "QB4", "QB5"],
|
|
24
25
|
computational_resonators=[],
|
|
25
26
|
connectivity=[("QB1", "QB3"), ("QB2", "QB3"), ("QB3", "QB4"), ("QB3", "QB5")],
|
|
@@ -20,6 +20,7 @@ from iqm.qiskit_iqm.fake_backends.iqm_fake_backend import IQMErrorProfile, IQMFa
|
|
|
20
20
|
def IQMFakeAphrodite() -> IQMFakeBackend:
|
|
21
21
|
"""Return IQMFakeBackend instance representing IQM's Aphrodite architecture."""
|
|
22
22
|
architecture = StaticQuantumArchitecture(
|
|
23
|
+
dut_label="M213_W0_H03_Z99",
|
|
23
24
|
qubits=[f"QB{i}" for i in range(1, 55)],
|
|
24
25
|
computational_resonators=[],
|
|
25
26
|
connectivity=[
|
|
@@ -20,6 +20,7 @@ from iqm.qiskit_iqm.fake_backends.iqm_fake_backend import IQMErrorProfile, IQMFa
|
|
|
20
20
|
def IQMFakeApollo() -> IQMFakeBackend:
|
|
21
21
|
"""Return IQMFakeBackend instance representing IQM's Apollo architecture."""
|
|
22
22
|
architecture = StaticQuantumArchitecture(
|
|
23
|
+
dut_label="M153_W0_P06_Z99",
|
|
23
24
|
qubits=[f"QB{i}" for i in range(1, 21)],
|
|
24
25
|
computational_resonators=[],
|
|
25
26
|
connectivity=[
|
|
@@ -20,6 +20,7 @@ from iqm.qiskit_iqm.fake_backends.iqm_fake_backend import IQMErrorProfile, IQMFa
|
|
|
20
20
|
def IQMFakeDeneb() -> IQMFakeBackend:
|
|
21
21
|
"""Return IQMFakeBackend instance representing IQM's Deneb architecture."""
|
|
22
22
|
architecture = StaticQuantumArchitecture(
|
|
23
|
+
dut_label="M139_W0_N60_Z99",
|
|
23
24
|
qubits=["QB1", "QB2", "QB3", "QB4", "QB5", "QB6"],
|
|
24
25
|
computational_resonators=["CR1"],
|
|
25
26
|
connectivity=[
|
|
@@ -22,7 +22,7 @@ iqm/iqm_client/api.py,sha256=_c6OVuv2dyzBF7J2XlK_qxisTSPyOiI4gYokZPsuaJY,3083
|
|
|
22
22
|
iqm/iqm_client/authentication.py,sha256=4V-rYUZKFMvMOVsroiKB61voHKX_6t7S847NDCdNbQE,7582
|
|
23
23
|
iqm/iqm_client/errors.py,sha256=ty2P-sg80zlAoL3_kC3PlprgDUv4PI-KFhmmxaaapS0,1429
|
|
24
24
|
iqm/iqm_client/iqm_client.py,sha256=oX_wu7aIJCdwc-DZy8iF43n4t7mphtp7ha5Ec38kOkM,41160
|
|
25
|
-
iqm/iqm_client/models.py,sha256=
|
|
25
|
+
iqm/iqm_client/models.py,sha256=0i0jYI8G_mJlNGCbH9W89OBS3JeqbcD2n_kUcM1AqIs,41942
|
|
26
26
|
iqm/iqm_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
iqm/iqm_client/transpile.py,sha256=2hDxQK8F4eMgpJC06XMIA8YbguFnRVNMlE1iKQNiTZk,37268
|
|
28
28
|
iqm/iqm_client/util.py,sha256=obzh1g6PNEXOj7k3gUkiylNUhyqutbWlxlEpfyyU_fk,1505
|
|
@@ -51,16 +51,16 @@ iqm/qiskit_iqm/examples/bell_measure.py,sha256=9ZuaAZybnEL9KhVom5P-mClQscyEF6k2d
|
|
|
51
51
|
iqm/qiskit_iqm/examples/resonance_example.py,sha256=1byRYxoFRtQcOpWtTzGfCYVyOlwtJvdpFrGo_kMR8ng,2954
|
|
52
52
|
iqm/qiskit_iqm/examples/transpile_example.py,sha256=cQmXXx3lqvmhgWYFK_U5HmHzMOKQqXUXPYfQhkyHH14,2135
|
|
53
53
|
iqm/qiskit_iqm/fake_backends/__init__.py,sha256=fkw2UHT-3aJbAKvR1WYUN7_4N5Gdwpx9bm6vlWj1tm0,874
|
|
54
|
-
iqm/qiskit_iqm/fake_backends/fake_adonis.py,sha256=
|
|
55
|
-
iqm/qiskit_iqm/fake_backends/fake_aphrodite.py,sha256=
|
|
56
|
-
iqm/qiskit_iqm/fake_backends/fake_apollo.py,sha256=
|
|
57
|
-
iqm/qiskit_iqm/fake_backends/fake_deneb.py,sha256=
|
|
54
|
+
iqm/qiskit_iqm/fake_backends/fake_adonis.py,sha256=vdWaVB6Hsa-SYgMWuYBtRQH5x5Y1qVHvdomWT2bh5QQ,2225
|
|
55
|
+
iqm/qiskit_iqm/fake_backends/fake_aphrodite.py,sha256=78KL0sONOtYKsWjPFGdc-uIxRUguncBbRQ9CP6bD_FQ,15510
|
|
56
|
+
iqm/qiskit_iqm/fake_backends/fake_apollo.py,sha256=6YSaKtUc6zZ4m3iAREbmxL4tRs_DW0ulmZy2Sq7sPUc,6600
|
|
57
|
+
iqm/qiskit_iqm/fake_backends/fake_deneb.py,sha256=_xpo_NJdu9t4ER8p5be-xTRmApkFY6kQw1UEGUPizk0,3193
|
|
58
58
|
iqm/qiskit_iqm/fake_backends/fake_garnet.py,sha256=GI0xafTCj1Um09qVuccO6GPOGBm6ygul_O40Wu220Ys,5555
|
|
59
59
|
iqm/qiskit_iqm/fake_backends/iqm_fake_backend.py,sha256=wJtfsxjPYbDKmzaz5R4AuaXvvPHa21WyPtRgNctL9eY,16785
|
|
60
|
-
iqm_client-31.
|
|
61
|
-
iqm_client-31.
|
|
62
|
-
iqm_client-31.
|
|
63
|
-
iqm_client-31.
|
|
64
|
-
iqm_client-31.
|
|
65
|
-
iqm_client-31.
|
|
66
|
-
iqm_client-31.
|
|
60
|
+
iqm_client-31.8.0.dist-info/AUTHORS.rst,sha256=qsxeK5A3-B_xK3hNbhFHEIkoHNpo7sdzYyRTs7Bdtm8,795
|
|
61
|
+
iqm_client-31.8.0.dist-info/LICENSE.txt,sha256=2DXrmQtVVUV9Fc9RBFJidMiTEaQlG2oAtlC9PMrEwTk,11333
|
|
62
|
+
iqm_client-31.8.0.dist-info/METADATA,sha256=RBkzHY_qwa7JBgDrySzr5yyH0-oGaOCi65XBbTvZ6z4,17887
|
|
63
|
+
iqm_client-31.8.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
|
64
|
+
iqm_client-31.8.0.dist-info/entry_points.txt,sha256=Kk2qfRwk8vbIJ7qCAvmaUogfRRn6t92_hBFhe6kqAE4,1317
|
|
65
|
+
iqm_client-31.8.0.dist-info/top_level.txt,sha256=NB4XRfyDS6_wG9gMsyX-9LTU7kWnTQxNvkbzIxGv3-c,4
|
|
66
|
+
iqm_client-31.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|