cirq-aqt 1.4.1__py3-none-any.whl → 1.5.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.
- cirq_aqt/__init__.py +6 -4
- cirq_aqt/_version.py +1 -1
- cirq_aqt/_version_test.py +1 -1
- cirq_aqt/aqt_device.py +3 -3
- cirq_aqt/aqt_device_metadata.py +11 -13
- cirq_aqt/aqt_sampler.py +2 -3
- cirq_aqt/aqt_sampler_test.py +2 -1
- cirq_aqt/aqt_simulator_test.py +1 -3
- cirq_aqt/aqt_target_gateset.py +4 -5
- cirq_aqt/aqt_target_gateset_test.py +0 -1
- cirq_aqt/json_test_data/__init__.py +1 -1
- cirq_aqt/json_test_data/spec.py +1 -2
- cirq_aqt-1.5.0.dist-info/METADATA +117 -0
- cirq_aqt-1.5.0.dist-info/RECORD +21 -0
- {cirq_aqt-1.4.1.dist-info → cirq_aqt-1.5.0.dist-info}/WHEEL +1 -1
- cirq_aqt-1.4.1.dist-info/METADATA +0 -40
- cirq_aqt-1.4.1.dist-info/RECORD +0 -21
- {cirq_aqt-1.4.1.dist-info → cirq_aqt-1.5.0.dist-info}/LICENSE +0 -0
- {cirq_aqt-1.4.1.dist-info → cirq_aqt-1.5.0.dist-info}/top_level.txt +0 -0
cirq_aqt/__init__.py
CHANGED
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
|
|
15
15
|
"""Types and methods related to the AQT ion trap device"""
|
|
16
16
|
|
|
17
|
-
from cirq_aqt._version import __version__
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
from cirq_aqt._version import __version__ as __version__
|
|
18
|
+
from cirq_aqt.aqt_sampler import (
|
|
19
|
+
AQTSampler as AQTSampler,
|
|
20
|
+
AQTSamplerLocalSimulator as AQTSamplerLocalSimulator,
|
|
21
|
+
)
|
|
22
|
+
from cirq_aqt.aqt_device import AQTSimulator as AQTSimulator
|
cirq_aqt/_version.py
CHANGED
cirq_aqt/_version_test.py
CHANGED
cirq_aqt/aqt_device.py
CHANGED
|
@@ -249,9 +249,9 @@ class AQTDevice(cirq.Device):
|
|
|
249
249
|
|
|
250
250
|
def __init__(
|
|
251
251
|
self,
|
|
252
|
-
measurement_duration:
|
|
253
|
-
twoq_gates_duration:
|
|
254
|
-
oneq_gates_duration:
|
|
252
|
+
measurement_duration: cirq.DURATION_LIKE,
|
|
253
|
+
twoq_gates_duration: cirq.DURATION_LIKE,
|
|
254
|
+
oneq_gates_duration: cirq.DURATION_LIKE,
|
|
255
255
|
qubits: Iterable[cirq.LineQubit],
|
|
256
256
|
) -> None:
|
|
257
257
|
"""Initializes the description of an ion trap device.
|
cirq_aqt/aqt_device_metadata.py
CHANGED
|
@@ -12,9 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
"""DeviceMetadata for ion trap device with mutually linked qubits placed on a line.
|
|
17
|
-
"""
|
|
15
|
+
"""DeviceMetadata for ion trap device with mutually linked qubits placed on a line."""
|
|
18
16
|
|
|
19
17
|
from typing import Any, Iterable, Mapping
|
|
20
18
|
|
|
@@ -29,10 +27,10 @@ class AQTDeviceMetadata(cirq.DeviceMetadata):
|
|
|
29
27
|
|
|
30
28
|
def __init__(
|
|
31
29
|
self,
|
|
32
|
-
qubits: Iterable[
|
|
33
|
-
measurement_duration:
|
|
34
|
-
twoq_gates_duration:
|
|
35
|
-
oneq_gates_duration:
|
|
30
|
+
qubits: Iterable[cirq.LineQubit],
|
|
31
|
+
measurement_duration: cirq.DURATION_LIKE,
|
|
32
|
+
twoq_gates_duration: cirq.DURATION_LIKE,
|
|
33
|
+
oneq_gates_duration: cirq.DURATION_LIKE,
|
|
36
34
|
):
|
|
37
35
|
"""Create metadata object for AQTDevice.
|
|
38
36
|
|
|
@@ -61,12 +59,12 @@ class AQTDeviceMetadata(cirq.DeviceMetadata):
|
|
|
61
59
|
)
|
|
62
60
|
|
|
63
61
|
@property
|
|
64
|
-
def gateset(self) ->
|
|
62
|
+
def gateset(self) -> cirq.Gateset:
|
|
65
63
|
"""Returns the `cirq.Gateset` of supported gates on this device."""
|
|
66
64
|
return self._gateset
|
|
67
65
|
|
|
68
66
|
@property
|
|
69
|
-
def gate_durations(self) -> Mapping[
|
|
67
|
+
def gate_durations(self) -> Mapping[cirq.GateFamily, cirq.Duration]:
|
|
70
68
|
"""Get a dictionary of supported gate families and their gate operation durations.
|
|
71
69
|
|
|
72
70
|
Use `duration_of` to obtain duration of a specific `cirq.GateOperation` instance.
|
|
@@ -74,21 +72,21 @@ class AQTDeviceMetadata(cirq.DeviceMetadata):
|
|
|
74
72
|
return self._gate_durations
|
|
75
73
|
|
|
76
74
|
@property
|
|
77
|
-
def measurement_duration(self) ->
|
|
75
|
+
def measurement_duration(self) -> cirq.DURATION_LIKE:
|
|
78
76
|
"""Return the maximum duration of the measurement operation."""
|
|
79
77
|
return self._measurement_duration
|
|
80
78
|
|
|
81
79
|
@property
|
|
82
|
-
def oneq_gates_duration(self) ->
|
|
80
|
+
def oneq_gates_duration(self) -> cirq.DURATION_LIKE:
|
|
83
81
|
"""Return the maximum duration of an operation on one-qubit gates."""
|
|
84
82
|
return self._oneq_gates_duration
|
|
85
83
|
|
|
86
84
|
@property
|
|
87
|
-
def twoq_gates_duration(self) ->
|
|
85
|
+
def twoq_gates_duration(self) -> cirq.DURATION_LIKE:
|
|
88
86
|
"""Return the maximum duration of an operation on two-qubit gates."""
|
|
89
87
|
return self._twoq_gates_duration
|
|
90
88
|
|
|
91
|
-
def duration_of(self, operation:
|
|
89
|
+
def duration_of(self, operation: cirq.Operation) -> cirq.DURATION_LIKE:
|
|
92
90
|
"""Return the maximum duration of the specified gate operation.
|
|
93
91
|
|
|
94
92
|
Args:
|
cirq_aqt/aqt_sampler.py
CHANGED
|
@@ -25,16 +25,15 @@ API keys for classical simulators and quantum devices can be obtained at:
|
|
|
25
25
|
import json
|
|
26
26
|
import time
|
|
27
27
|
import uuid
|
|
28
|
-
from typing import Callable, cast, Dict, List, Sequence, Tuple,
|
|
28
|
+
from typing import Callable, cast, Dict, List, Literal, Sequence, Tuple, TypedDict, Union
|
|
29
29
|
from urllib.parse import urljoin
|
|
30
30
|
|
|
31
31
|
import numpy as np
|
|
32
|
-
from requests import
|
|
32
|
+
from requests import get, post
|
|
33
33
|
|
|
34
34
|
import cirq
|
|
35
35
|
from cirq_aqt.aqt_device import AQTSimulator, get_op_string, OperationString
|
|
36
36
|
|
|
37
|
-
|
|
38
37
|
_DEFAULT_HOST = "https://arnica.aqt.eu/api/v1/"
|
|
39
38
|
|
|
40
39
|
|
cirq_aqt/aqt_sampler_test.py
CHANGED
cirq_aqt/aqt_simulator_test.py
CHANGED
|
@@ -15,10 +15,8 @@
|
|
|
15
15
|
import pytest
|
|
16
16
|
|
|
17
17
|
import cirq
|
|
18
|
-
|
|
19
18
|
from cirq_aqt import AQTSimulator
|
|
20
|
-
from cirq_aqt.aqt_device import get_aqt_device
|
|
21
|
-
from cirq_aqt.aqt_device import AQTNoiseModel
|
|
19
|
+
from cirq_aqt.aqt_device import AQTNoiseModel, get_aqt_device
|
|
22
20
|
|
|
23
21
|
|
|
24
22
|
def test_simulator_no_circ():
|
cirq_aqt/aqt_target_gateset.py
CHANGED
|
@@ -12,8 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
-
"""Target gateset for ion trap device with mutually linked qubits placed on a line.
|
|
16
|
-
"""
|
|
15
|
+
"""Target gateset for ion trap device with mutually linked qubits placed on a line."""
|
|
17
16
|
|
|
18
17
|
from typing import List
|
|
19
18
|
|
|
@@ -43,7 +42,7 @@ class AQTTargetGateset(cirq.TwoQubitCompilationTargetGateset):
|
|
|
43
42
|
unroll_circuit_op=False,
|
|
44
43
|
)
|
|
45
44
|
|
|
46
|
-
def _decompose_single_qubit_operation(self, op:
|
|
45
|
+
def _decompose_single_qubit_operation(self, op: cirq.Operation, _: int) -> DecomposeResult:
|
|
47
46
|
# unwrap tagged and circuit operations to get the actual operation
|
|
48
47
|
opu = op.untagged
|
|
49
48
|
opu = (
|
|
@@ -58,7 +57,7 @@ class AQTTargetGateset(cirq.TwoQubitCompilationTargetGateset):
|
|
|
58
57
|
return [g.on(opu.qubits[0]) for g in gates]
|
|
59
58
|
return NotImplemented
|
|
60
59
|
|
|
61
|
-
def _decompose_two_qubit_operation(self, op:
|
|
60
|
+
def _decompose_two_qubit_operation(self, op: cirq.Operation, _) -> DecomposeResult:
|
|
62
61
|
if cirq.has_unitary(op):
|
|
63
62
|
return cirq.two_qubit_matrix_to_ion_operations(
|
|
64
63
|
op.qubits[0], op.qubits[1], cirq.unitary(op)
|
|
@@ -66,6 +65,6 @@ class AQTTargetGateset(cirq.TwoQubitCompilationTargetGateset):
|
|
|
66
65
|
return NotImplemented
|
|
67
66
|
|
|
68
67
|
@property
|
|
69
|
-
def postprocess_transformers(self) -> List[
|
|
68
|
+
def postprocess_transformers(self) -> List[cirq.TRANSFORMER]:
|
|
70
69
|
"""List of transformers which should be run after decomposing individual operations."""
|
|
71
70
|
return [cirq.drop_negligible_operations, cirq.drop_empty_moments]
|
cirq_aqt/json_test_data/spec.py
CHANGED
|
@@ -15,9 +15,8 @@
|
|
|
15
15
|
import pathlib
|
|
16
16
|
|
|
17
17
|
import cirq_aqt
|
|
18
|
-
from cirq_aqt.json_resolver_cache import _class_resolver_dictionary
|
|
19
|
-
|
|
20
18
|
from cirq.testing.json import ModuleJsonTestSpec
|
|
19
|
+
from cirq_aqt.json_resolver_cache import _class_resolver_dictionary
|
|
21
20
|
|
|
22
21
|
TestSpec = ModuleJsonTestSpec(
|
|
23
22
|
name="cirq_aqt",
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: cirq-aqt
|
|
3
|
+
Version: 1.5.0
|
|
4
|
+
Summary: A Cirq package to simulate and connect to Alpine Quantum Technologies quantum computers
|
|
5
|
+
Home-page: http://github.com/quantumlib/cirq
|
|
6
|
+
Author: The Cirq Developers
|
|
7
|
+
Author-email: cirq-dev@googlegroups.com
|
|
8
|
+
Maintainer: Google Quantum AI open-source maintainers
|
|
9
|
+
Maintainer-email: quantum-oss-maintainers@google.com
|
|
10
|
+
License: Apache 2
|
|
11
|
+
Keywords: algorithms,api,cirq,google,google quantum,nisq,python,quantum,quantum algorithms,quantum circuit,quantum circuit simulator,quantum computer simulator,quantum computing,quantum development kit,quantum information,quantum programming,quantum programming language,quantum simulation,sdk,simulation
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Education
|
|
15
|
+
Classifier: Intended Audience :: Science/Research
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
18
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
19
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
25
|
+
Classifier: Topic :: Scientific/Engineering :: Quantum Computing
|
|
26
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
|
+
Classifier: Typing :: Typed
|
|
28
|
+
Requires-Python: >=3.10.0
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
License-File: LICENSE
|
|
31
|
+
Requires-Dist: requests~=2.32
|
|
32
|
+
Requires-Dist: cirq-core==1.5.0
|
|
33
|
+
Dynamic: author
|
|
34
|
+
Dynamic: author-email
|
|
35
|
+
Dynamic: classifier
|
|
36
|
+
Dynamic: description
|
|
37
|
+
Dynamic: description-content-type
|
|
38
|
+
Dynamic: home-page
|
|
39
|
+
Dynamic: keywords
|
|
40
|
+
Dynamic: license
|
|
41
|
+
Dynamic: maintainer
|
|
42
|
+
Dynamic: maintainer-email
|
|
43
|
+
Dynamic: requires-dist
|
|
44
|
+
Dynamic: requires-python
|
|
45
|
+
Dynamic: summary
|
|
46
|
+
|
|
47
|
+
<div align="center">
|
|
48
|
+
<img width="190px" alt="Cirq logo"
|
|
49
|
+
src="https://raw.githubusercontent.com/quantumlib/Cirq/refs/heads/main/docs/images/Cirq_logo_color.svg"
|
|
50
|
+
><img width="60px" height="0" alt=""><img width="200px" alt="AQT logo"
|
|
51
|
+
src="https://www.aqt.eu/wp-content/uploads/2024/01/Logo-AQT-Alpine-Quantum-Technologies-2.png">
|
|
52
|
+
</div>
|
|
53
|
+
|
|
54
|
+
# cirq-aqt
|
|
55
|
+
|
|
56
|
+
This is the Cirq-AQT integration module. It provides an interface that allows
|
|
57
|
+
[Cirq] quantum algorithms to run on quantum computers made by [Alpine Quantum
|
|
58
|
+
Technologies GmbH](https://www.aqt.eu). (See the [Documentation](#documentation)
|
|
59
|
+
section below for information about getting access to AQT devices.)
|
|
60
|
+
|
|
61
|
+
[Cirq] is a Python package for writing, manipulating, and running [quantum
|
|
62
|
+
circuits](https://en.wikipedia.org/wiki/Quantum_circuit) on quantum computers
|
|
63
|
+
and simulators. Cirq provides useful abstractions for dealing with today’s
|
|
64
|
+
[noisy intermediate-scale quantum](https://arxiv.org/abs/1801.00862) (NISQ)
|
|
65
|
+
computers, where the details of quantum hardware are vital to achieving
|
|
66
|
+
state-of-the-art results. For more information about Cirq, please visit the
|
|
67
|
+
[Cirq documentation site].
|
|
68
|
+
|
|
69
|
+
[Cirq]: https://github.com/quantumlib/cirq
|
|
70
|
+
[Cirq documentation site]: https://quantumai.google/cirq
|
|
71
|
+
|
|
72
|
+
## Installation
|
|
73
|
+
|
|
74
|
+
This module is built on top of [Cirq]; installing this module will
|
|
75
|
+
automatically install the `cirq-core` module and other dependencies. There are
|
|
76
|
+
two installation options for the `cirq-aqt` module:
|
|
77
|
+
|
|
78
|
+
* To install the stable version of `cirq-aqt`, use
|
|
79
|
+
|
|
80
|
+
```shell
|
|
81
|
+
pip install cirq-aqt
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
* To install the latest pre-release version of `cirq-aqt`, use
|
|
85
|
+
|
|
86
|
+
```shell
|
|
87
|
+
pip install --upgrade cirq-aqt~=1.0.dev
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
(The `~=` has a special meaning to `pip` of selecting the latest version
|
|
91
|
+
compatible with the `1.*` and `dev` in the name. Despite appearances,
|
|
92
|
+
this will not install an old version 1.0 release!)
|
|
93
|
+
|
|
94
|
+
If you would like to install Cirq with all the optional modules, not just
|
|
95
|
+
`cirq-aqt`, then instead of the above commands, use `pip install cirq` for the
|
|
96
|
+
stable release or `pip install --upgrade cirq~=1.0.dev` for the latest pre-release
|
|
97
|
+
version.
|
|
98
|
+
|
|
99
|
+
## Documentation
|
|
100
|
+
|
|
101
|
+
To get started with using AQT quantum computers through Cirq, please refer to
|
|
102
|
+
the following documentation:
|
|
103
|
+
|
|
104
|
+
* [Access and authentication](https://quantumai.google/cirq/aqt/access).
|
|
105
|
+
* [Getting started
|
|
106
|
+
guide](https://quantumai.google/cirq/tutorials/aqt/getting_started).
|
|
107
|
+
|
|
108
|
+
To get started with using Cirq in general, please refer to the [Cirq
|
|
109
|
+
documentation site].
|
|
110
|
+
|
|
111
|
+
For more information about getting help, reporting bugs, and other matters
|
|
112
|
+
related to Cirq and the Cirq-AQT integration module, please visit the [Cirq
|
|
113
|
+
repository on GitHub](https://github.com/quantumlib/Cirq).
|
|
114
|
+
|
|
115
|
+
## Disclaimer
|
|
116
|
+
|
|
117
|
+
Cirq is not an official Google product. Copyright 2019 The Cirq Developers.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
cirq_aqt/__init__.py,sha256=M8r1U_8xYpcIUhs8U110BFWQ4jUCqS9IQf8trjq0rvI,888
|
|
2
|
+
cirq_aqt/_version.py,sha256=PGE73TH-fMu8VnLJq4GQhSaHKn1WoGaeGr-EpX57M0s,678
|
|
3
|
+
cirq_aqt/_version_test.py,sha256=wuOyKtWlBTl9UEEOFyTtOcPXQbelDdMzw5b38PLfOmw,137
|
|
4
|
+
cirq_aqt/aqt_device.py,sha256=kiKhKPSUmebzFRiZrF7cq76ueHCC3SMF2CVrAAc6NfI,13648
|
|
5
|
+
cirq_aqt/aqt_device_metadata.py,sha256=2YIDZKJbt0iHdplBkjfDWK9FSbTzp6m_ggJTcFJfphk,4753
|
|
6
|
+
cirq_aqt/aqt_device_metadata_test.py,sha256=naTXEU4VCCdR__gBlzbWjR0-DzViZ1xgVrH_GAyjskY,2111
|
|
7
|
+
cirq_aqt/aqt_device_test.py,sha256=eYHT1DIt3EI_4e-rSROiUw5_E4A9Bjt8tIchvUrKnxs,5210
|
|
8
|
+
cirq_aqt/aqt_sampler.py,sha256=wBgTenfELWTx1fCMFaTio9WYpxiBiQndWNp8NAEsfMk,18378
|
|
9
|
+
cirq_aqt/aqt_sampler_test.py,sha256=cA68zrJTh57Ge8TW6xd4Q__l0wah_VJ4k6BL_SVPnHw,16403
|
|
10
|
+
cirq_aqt/aqt_simulator_test.py,sha256=QjqR6cULJdHEdTI4IxFCaJkhPIvR728hYCvg4RLPW-A,1641
|
|
11
|
+
cirq_aqt/aqt_target_gateset.py,sha256=-dxZ-dAEAZHtjPjTJ3VpTipXyYLI5m9-9skOCJmmAAE,2772
|
|
12
|
+
cirq_aqt/aqt_target_gateset_test.py,sha256=mZuuDvBl-o6l7ShNzcf_BrIc79I00To_RHt3y7hyOHg,3335
|
|
13
|
+
cirq_aqt/conftest.py,sha256=2-K0ZniZ28adwVNB-f5IqvYjavKEBwC4jes_WQ17Xzg,667
|
|
14
|
+
cirq_aqt/json_resolver_cache.py,sha256=oZUTckLvATBDSrn-Y6kEAjHjiGXtKc-Bz_i23WsxFj8,788
|
|
15
|
+
cirq_aqt/json_test_data/__init__.py,sha256=UZKkYSBrgpUKN5Y5Gb-SJzJAa7h-oTA0K3BKecMbDs8,904
|
|
16
|
+
cirq_aqt/json_test_data/spec.py,sha256=OfF8lLmTIVJF9ZgGoKBjx7tqYG5qvkLo6RqK19DtFCA,1050
|
|
17
|
+
cirq_aqt-1.5.0.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
18
|
+
cirq_aqt-1.5.0.dist-info/METADATA,sha256=rogOm6lB37YjXylRobYcZF1ciqAQtOy9PzkhXTRrNqI,4771
|
|
19
|
+
cirq_aqt-1.5.0.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
|
20
|
+
cirq_aqt-1.5.0.dist-info/top_level.txt,sha256=culYyFTEtuC3Z7wT3wZ6kGVspH3hYFZUEKooByfe9h0,9
|
|
21
|
+
cirq_aqt-1.5.0.dist-info/RECORD,,
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: cirq-aqt
|
|
3
|
-
Version: 1.4.1
|
|
4
|
-
Summary: A Cirq package to simulate and connect to Alpine Quantum Technologies quantum computers
|
|
5
|
-
Home-page: http://github.com/quantumlib/cirq
|
|
6
|
-
Author: The Cirq Developers
|
|
7
|
-
Author-email: cirq-dev@googlegroups.com
|
|
8
|
-
License: Apache 2
|
|
9
|
-
Requires-Python: >=3.10.0
|
|
10
|
-
License-File: LICENSE
|
|
11
|
-
Requires-Dist: requests ~=2.18
|
|
12
|
-
Requires-Dist: cirq-core ==1.4.1
|
|
13
|
-
|
|
14
|
-
.. image:: https://www.aqt.eu/wp-content/uploads/2018/08/Logo-Alpine-Quantum-Technologies-AQT-1.png
|
|
15
|
-
:target: https://github.com/quantumlib/cirq/
|
|
16
|
-
:alt: cirq-aqt
|
|
17
|
-
:width: 200px
|
|
18
|
-
|
|
19
|
-
`Cirq <https://quantumai.google/cirq>`__ is a Python library for writing, manipulating, and optimizing quantum
|
|
20
|
-
circuits and running them against quantum computers and simulators.
|
|
21
|
-
|
|
22
|
-
This module is **cirq-aqt**, which provides everything you'll need to run Cirq quantum algorithms on AQT quantum computers.
|
|
23
|
-
|
|
24
|
-
Documentation
|
|
25
|
-
-------------
|
|
26
|
-
|
|
27
|
-
To get started with the Alpine Quantum Technologies, checkout the following guide and tutorial:
|
|
28
|
-
|
|
29
|
-
- `Access and authentication <https://quantumai.google/cirq/aqt/access>`__
|
|
30
|
-
- `Getting started guide <https://quantumai.google/cirq/tutorials/aqt/getting_started>`__
|
|
31
|
-
|
|
32
|
-
Installation
|
|
33
|
-
------------
|
|
34
|
-
|
|
35
|
-
To install the stable version of only **cirq-aqt**, use `pip install cirq-aqt`.
|
|
36
|
-
To install the pre-release version of only **cirq-aqt**, use `pip install cirq-aqt~=1.0.dev`.
|
|
37
|
-
|
|
38
|
-
Note, that this will install both cirq-aqt and cirq-core as well.
|
|
39
|
-
|
|
40
|
-
To get all the optional modules installed as well, you'll have to use `pip install cirq` or `pip install cirq~=1.0.dev` for the pre-release version.
|
cirq_aqt-1.4.1.dist-info/RECORD
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
cirq_aqt/__init__.py,sha256=2uufR12R3crUqeeDqMrA3rvsPqZuSNYysVLVvdpQzFk,803
|
|
2
|
-
cirq_aqt/_version.py,sha256=BYtIOZwcW_4gQGVoOXZGpC_4BT9YCWNvJpy7iXATPnE,678
|
|
3
|
-
cirq_aqt/_version_test.py,sha256=lkYftSKgJvw4T91YmjpUs-GPrOmDr8ptfGlrQUQpSJo,137
|
|
4
|
-
cirq_aqt/aqt_device.py,sha256=48OblqJDD0R7xuwRHxHMcP3yxeTbGc5gSfWHZM9LE0Y,13654
|
|
5
|
-
cirq_aqt/aqt_device_metadata.py,sha256=vdYGf3gdZNJEIttlYNutdXGh9qz-93vNzLrail6ujYc,4779
|
|
6
|
-
cirq_aqt/aqt_device_metadata_test.py,sha256=naTXEU4VCCdR__gBlzbWjR0-DzViZ1xgVrH_GAyjskY,2111
|
|
7
|
-
cirq_aqt/aqt_device_test.py,sha256=eYHT1DIt3EI_4e-rSROiUw5_E4A9Bjt8tIchvUrKnxs,5210
|
|
8
|
-
cirq_aqt/aqt_sampler.py,sha256=GKkbF1iEuseDui9fDR6stJSrwQcssX4DTTeUhzFdezg,18379
|
|
9
|
-
cirq_aqt/aqt_sampler_test.py,sha256=EspGPtmOs6WJUEOZEjCGcbUANawPyOWAFL3ozsFiu7Y,16402
|
|
10
|
-
cirq_aqt/aqt_simulator_test.py,sha256=LSRyNSnme3A1l5eyDC79MzJLKZNoKa3LdsN_NoKMPTE,1673
|
|
11
|
-
cirq_aqt/aqt_target_gateset.py,sha256=1hvaHH5zSz292qgMxE7MQJxngytpUAH2nEj5Ob9e8CI,2779
|
|
12
|
-
cirq_aqt/aqt_target_gateset_test.py,sha256=wILzfJ3uWTzs-9R93I_qReZoWER-TaBhVr1lG3zl1WU,3336
|
|
13
|
-
cirq_aqt/conftest.py,sha256=2-K0ZniZ28adwVNB-f5IqvYjavKEBwC4jes_WQ17Xzg,667
|
|
14
|
-
cirq_aqt/json_resolver_cache.py,sha256=oZUTckLvATBDSrn-Y6kEAjHjiGXtKc-Bz_i23WsxFj8,788
|
|
15
|
-
cirq_aqt/json_test_data/__init__.py,sha256=K0c9IduIrV7xvSXoc0yJVz5T-ITed3VKlssTN8XYq9w,892
|
|
16
|
-
cirq_aqt/json_test_data/spec.py,sha256=RMp340PqpXN2iFQClZzTcXrKDVMKa_OLcXQ8qn2mPsw,1051
|
|
17
|
-
cirq_aqt-1.4.1.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
18
|
-
cirq_aqt-1.4.1.dist-info/METADATA,sha256=J4SC_9890D9TyNRjC85ETHjkOthfDaPXmW9yBh7Rq64,1589
|
|
19
|
-
cirq_aqt-1.4.1.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
20
|
-
cirq_aqt-1.4.1.dist-info/top_level.txt,sha256=culYyFTEtuC3Z7wT3wZ6kGVspH3hYFZUEKooByfe9h0,9
|
|
21
|
-
cirq_aqt-1.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|