qcs 0.26.1

High level interface for running Quil on a QPU
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
# This file is automatically generated by pyo3_stub_gen
# ruff: noqa: E501, F401

import builtins
import collections.abc
import enum
import typing
from qcs_sdk import QcsSdkError
from qcs_sdk.client import QCSClient

@typing.final
class Architecture:
    r"""
    Represents the logical underlying architecture of a quantum processor.
    
    The architecture is defined in detail by the nodes and edges that constitute the quantum
    processor. This defines the set of all nodes that could be operated upon, and indicates to
    some approximation their physical layout. The main purpose of this is to support geometry
    calculations that are independent of the available operations, and rendering ISA-based
    information. Architecture layouts are defined by the `family`, as follows.
    
    The "Aspen" family of quantum processor indicates a 2D planar grid layout of octagon unit
    cells. The `node_id` in this architecture is computed as :math:`100 p_y + 10 p_x + p_u` where
    :math:`p_y` is the zero-based Y position in the unit cell grid, :math:`p_x` is the zero-based
    X position in the unit cell grid, and :math:`p_u` is the zero-based position in the octagon
    unit cell and always ranges from 0 to 7.
    
    The "Ankaa" architecture is based on a grid topology; having, in "vertical" orientation,
    qubits numbered starting from 0 at the top-left and increasing from left to right,
    then top to bottom, so the final qubit is in the bottom-right. Each qubit is connected
    with a tunable coupler to their direct vertical and horizontal neighbors, producing an edge.
    Edges are ordered top-left to bottom-right in this orientation as well, with horizontal rows
    alternating with vertical rows. Ankaa chips are, in vertical orientation,
    7 qubits wide and 12 tall. This architecture may also be presented in "landscape"
    orientation, which is a simple 90-degree clockwise rotation of the vertical orientation.
    
    Note that the operations that are actually available are defined entirely by ``Operation``
    instances. The presence of a node or edge in the ``Architecture`` model provides no guarantee
    that any 1Q or 2Q operation will be available to users writing QUIL programs.
    """
    @property
    def edges(self) -> builtins.list[Edge]:
        r"""
        A list of all computational edges in the instruction set architecture.
        """
    @edges.setter
    def edges(self, value: builtins.list[Edge]) -> None:
        r"""
        A list of all computational edges in the instruction set architecture.
        """
    @property
    def family(self) -> typing.Optional[Family | builtins.str]:
        r"""
        The architecture family. The nodes and edges conform to this family.
        """
    @family.setter
    def family(self, value: typing.Optional[Family | builtins.str]) -> None:
        r"""
        The architecture family. The nodes and edges conform to this family.
        """
    @property
    def nodes(self) -> builtins.list[Node]:
        r"""
        A list of all computational nodes in the instruction set architecture.
        """
    @nodes.setter
    def nodes(self, value: builtins.list[Node]) -> None:
        r"""
        A list of all computational nodes in the instruction set architecture.
        """
    def __eq__(self, other: builtins.object) -> builtins.bool: ...
    def __new__(cls, edges: typing.Sequence[Edge], family: typing.Optional[Family | builtins.str], nodes: typing.Sequence[Node]) -> Architecture: ...
    def __repr__(self) -> builtins.str:
        r"""
        Implements `__repr__` for Python in terms of the Rust
        [`Debug`](std::fmt::Debug) implementation.
        """

@typing.final
class Characteristic:
    r"""
    A measured characteristic of an operation.
    """
    @property
    def error(self) -> typing.Optional[builtins.float]:
        r"""
        The error in the characteristic value, or None otherwise.
        """
    @error.setter
    def error(self, value: typing.Optional[builtins.float]) -> None:
        r"""
        The error in the characteristic value, or None otherwise.
        """
    @property
    def name(self) -> builtins.str:
        r"""
        The name of the characteristic.
        """
    @name.setter
    def name(self, value: builtins.str) -> None:
        r"""
        The name of the characteristic.
        """
    @property
    def node_ids(self) -> typing.Optional[builtins.list[builtins.int]]:
        r"""
        The list of architecture node ids for the site where the characteristic is measured, if that is different from the site of the enclosing operation. None if it is the same. The order of this or the enclosing node ids obey the definition of node symmetry from the enclosing operation.
        """
    @node_ids.setter
    def node_ids(self, value: typing.Optional[builtins.list[builtins.int]]) -> None:
        r"""
        The list of architecture node ids for the site where the characteristic is measured, if that is different from the site of the enclosing operation. None if it is the same. The order of this or the enclosing node ids obey the definition of node symmetry from the enclosing operation.
        """
    @property
    def parameter_values(self) -> typing.Optional[builtins.list[builtins.float]]:
        r"""
        The optional ordered list of parameter values used to generate the characteristic. The order matches the parameters in the enclosing operation, and so the lengths of these two lists must match.
        """
    @parameter_values.setter
    def parameter_values(self, value: typing.Optional[builtins.list[builtins.float]]) -> None:
        r"""
        The optional ordered list of parameter values used to generate the characteristic. The order matches the parameters in the enclosing operation, and so the lengths of these two lists must match.
        """
    @property
    def timestamp(self) -> builtins.str:
        r"""
        The date and time at which the characteristic was measured.
        """
    @timestamp.setter
    def timestamp(self, value: builtins.str) -> None:
        r"""
        The date and time at which the characteristic was measured.
        """
    @property
    def value(self) -> builtins.float:
        r"""
        The characteristic value measured.
        """
    @value.setter
    def value(self, value: builtins.float) -> None:
        r"""
        The characteristic value measured.
        """
    def __eq__(self, other: builtins.object) -> builtins.bool: ...
    def __new__(cls, name: builtins.str, timestamp: builtins.str, value: builtins.float) -> Characteristic:
        r"""
        A measured characteristic of an operation.
        """
    def __repr__(self) -> builtins.str:
        r"""
        Implements `__repr__` for Python in terms of the Rust
        [`Debug`](std::fmt::Debug) implementation.
        """

@typing.final
class Edge:
    r"""
    A degree-two logical connection in the quantum processor's architecture.
    
    The existence of an edge in the ISA ``Architecture`` does not necessarily mean that a given 2Q
    operation will be available on the edge. This information is conveyed by the presence of the
    two `node_id` values in instances of ``Instruction``.
    
    Note that edges are undirected in this model. Thus edge :math:`(a, b)` is equivalent to edge
    :math:`(b, a)`.
    """
    @property
    def node_ids(self) -> builtins.list[builtins.int]:
        r"""
        The integer ids of the computational nodes at the two ends of the edge.
        Order is not important; an architecture edge is treated as undirected.
        """
    @node_ids.setter
    def node_ids(self, value: builtins.list[builtins.int]) -> None:
        r"""
        The integer ids of the computational nodes at the two ends of the edge.
        Order is not important; an architecture edge is treated as undirected.
        """
    def __eq__(self, other: builtins.object) -> builtins.bool: ...
    def __new__(cls, node_ids: typing.Sequence[builtins.int]) -> Edge: ...
    def __repr__(self) -> builtins.str:
        r"""
        Implements `__repr__` for Python in terms of the Rust
        [`Debug`](std::fmt::Debug) implementation.
        """

class GetISAError(QcsSdkError):
    r"""
    Errors raised due to failure to get an ISA.
    """
    ...

@typing.final
class InstructionSetArchitecture:
    r"""
    The native instruction set architecture (ISA) of a quantum processor, annotated with characteristics.
    
    The operations described by the `instructions` field are named by their QUIL instruction name,
    while the operation described by the `benchmarks` field are named by their benchmark routine
    and are a future extension point.
    
    The characteristics that annotate both instructions and benchmarks assist the user to generate
    the best native QUIL program for a desired task, and so are provided as part of the native ISA.
    """
    @property
    def architecture(self) -> Architecture: ...
    @architecture.setter
    def architecture(self, value: Architecture) -> None: ...
    @property
    def benchmarks(self) -> builtins.list[Operation]:
        r"""
        The list of benchmarks that have characterized the quantum processor.
        """
    @benchmarks.setter
    def benchmarks(self, value: builtins.list[Operation]) -> None:
        r"""
        The list of benchmarks that have characterized the quantum processor.
        """
    @property
    def instructions(self) -> builtins.list[Operation]:
        r"""
        The list of native QUIL instructions supported by the quantum processor.
        """
    @instructions.setter
    def instructions(self, value: builtins.list[Operation]) -> None:
        r"""
        The list of native QUIL instructions supported by the quantum processor.
        """
    @property
    def name(self) -> builtins.str:
        r"""
        The name of the quantum processor.
        """
    @name.setter
    def name(self, value: builtins.str) -> None:
        r"""
        The name of the quantum processor.
        """
    def __eq__(self, other: builtins.object) -> builtins.bool: ...
    def __new__(cls, architecture: Architecture, benchmarks: typing.Sequence[Operation], instructions: typing.Sequence[Operation], name: builtins.str) -> InstructionSetArchitecture: ...
    def __repr__(self) -> builtins.str:
        r"""
        Implements `__repr__` for Python in terms of the Rust
        [`Debug`](std::fmt::Debug) implementation.
        """
    @staticmethod
    def from_raw(json: builtins.str) -> InstructionSetArchitecture:
        r"""
        Deserialize an `InstructionSetArchitecture` from a json representation.
        
        # Errors
        
        Returns [`SerializeIsaError`] if the input string was not deserialized correctly.
        """
    def json(self, pretty: builtins.bool = False) -> builtins.str:
        r"""
        Serialize the `InstructionSetArchitecture` to a json string, optionally pretty-printed.
        
        If `pretty` is true, the json output should be pretty-printed with newlines and indents.
        
        # Errors
        
        Returns [`SerializeIsaError`] if the ISA could not be serialized.
        """

@typing.final
class Node:
    r"""
    A logical node in the quantum processor's architecture.
    
    The existence of a node in the ISA ``Architecture`` does not necessarily mean that a given 1Q
    operation will be available on the node. This information is conveyed by the presence of the
    specific `node_id` in instances of ``Instruction``.
    """
    @property
    def node_id(self) -> builtins.int:
        r"""
        An integer id assigned to the computational node.
        
        The ids may not be contiguous and will be assigned based on the architecture family.
        """
    @node_id.setter
    def node_id(self, value: builtins.int) -> None:
        r"""
        An integer id assigned to the computational node.
        
        The ids may not be contiguous and will be assigned based on the architecture family.
        """
    def __eq__(self, other: builtins.object) -> builtins.bool: ...
    def __new__(cls, node_id: builtins.int) -> Node: ...
    def __repr__(self) -> builtins.str:
        r"""
        Implements `__repr__` for Python in terms of the Rust
        [`Debug`](std::fmt::Debug) implementation.
        """

@typing.final
class Operation:
    r"""
    An operation, with its sites and site-independent characteristics.
    """
    @property
    def characteristics(self) -> builtins.list[Characteristic]:
        r"""
        The list of site-independent characteristics of this operation.
        """
    @characteristics.setter
    def characteristics(self, value: builtins.list[Characteristic]) -> None:
        r"""
        The list of site-independent characteristics of this operation.
        """
    @property
    def name(self) -> builtins.str:
        r"""
        The name of the operation.
        """
    @name.setter
    def name(self, value: builtins.str) -> None:
        r"""
        The name of the operation.
        """
    @property
    def node_count(self) -> typing.Optional[builtins.int]:
        r"""
        The number of nodes that this operation applies to. None if unspecified.
        """
    @node_count.setter
    def node_count(self, value: typing.Optional[builtins.int]) -> None:
        r"""
        The number of nodes that this operation applies to. None if unspecified.
        """
    @property
    def parameters(self) -> builtins.list[Parameter]:
        r"""
        The list of parameters. Each parameter must be uniquely named. May be empty.
        """
    @parameters.setter
    def parameters(self, value: builtins.list[Parameter]) -> None:
        r"""
        The list of parameters. Each parameter must be uniquely named. May be empty.
        """
    @property
    def sites(self) -> builtins.list[OperationSite]:
        r"""
        The list of sites at which this operation can be applied, together with its site-dependent characteristics.
        """
    @sites.setter
    def sites(self, value: builtins.list[OperationSite]) -> None:
        r"""
        The list of sites at which this operation can be applied, together with its site-dependent characteristics.
        """
    def __eq__(self, other: builtins.object) -> builtins.bool: ...
    def __new__(cls, characteristics: typing.Sequence[Characteristic], name: builtins.str, parameters: typing.Sequence[Parameter], sites: typing.Sequence[OperationSite]) -> Operation:
        r"""
        An operation, with its sites and site-independent characteristics.
        """
    def __repr__(self) -> builtins.str:
        r"""
        Implements `__repr__` for Python in terms of the Rust
        [`Debug`](std::fmt::Debug) implementation.
        """

@typing.final
class OperationSite:
    r"""
    A site for an operation, with its site-dependent characteristics.
    """
    @property
    def characteristics(self) -> builtins.list[Characteristic]:
        r"""
        The list of site-dependent characteristics of this operation.
        """
    @characteristics.setter
    def characteristics(self, value: builtins.list[Characteristic]) -> None:
        r"""
        The list of site-dependent characteristics of this operation.
        """
    @property
    def node_ids(self) -> builtins.list[builtins.int]:
        r"""
        The list of architecture node ids for the site.
        
        The order of these node ids obey the definition of node symmetry from the enclosing operation.
        """
    @node_ids.setter
    def node_ids(self, value: builtins.list[builtins.int]) -> None:
        r"""
        The list of architecture node ids for the site.
        
        The order of these node ids obey the definition of node symmetry from the enclosing operation.
        """
    def __eq__(self, other: builtins.object) -> builtins.bool: ...
    def __new__(cls, characteristics: typing.Sequence[Characteristic], node_ids: typing.Sequence[builtins.int]) -> OperationSite:
        r"""
        A site for an operation, with its site-dependent characteristics.
        """
    def __repr__(self) -> builtins.str:
        r"""
        Implements `__repr__` for Python in terms of the Rust
        [`Debug`](std::fmt::Debug) implementation.
        """

@typing.final
class Parameter:
    r"""
    A parameter to an operation.
    """
    @property
    def name(self) -> builtins.str:
        r"""
        The name of the parameter, such as the name of a mathematical symbol.
        """
    @name.setter
    def name(self, value: builtins.str) -> None:
        r"""
        The name of the parameter, such as the name of a mathematical symbol.
        """
    def __eq__(self, other: builtins.object) -> builtins.bool: ...
    def __new__(cls, name: builtins.str) -> Parameter: ...
    def __repr__(self) -> builtins.str:
        r"""
        Implements `__repr__` for Python in terms of the Rust
        [`Debug`](std::fmt::Debug) implementation.
        """

class SerializeISAError(QcsSdkError):
    r"""
    Errors raised due to failure to serialize an ISA.
    """
    ...

@typing.final
class Family(enum.Enum):
    r"""
    The architecture family identifier of an ``InstructionSetArchitecture``.
    
    Value 'NONE' implies the architecture has no specific layout topology.
    Value 'FULL' implies that each node is connected to every other (a fully-connected architecture).
    For other values based on deployed architecture layouts (e.g. `Aspen` and `Ankaa`),
    refer to the architecture classes themselves for more details.
    
    Note: Within an ``InstructionSetArchitecture``, the `family` may be one of these,
    or may be a `str` for an unknown family, or may be `None` if the `family` is not specified.
    The latter in particular is distinct from the `NONE` value within this enumeration.
    """
    NONE = ...
    FULL = ...
    ASPEN = ...
    ANKAA = ...

def get_instruction_set_architecture(quantum_processor_id: builtins.str, client: typing.Optional[QCSClient] = None) -> InstructionSetArchitecture:
    r"""
    Fetch the ``InstructionSetArchitecture`` (ISA) for a given `quantum_processor_id` from the QCS API.
    
    :param quantum_processor_id: The ID of the quantum processor.
    :param client: The ``Qcs`` client to use. Creates one using environment configuration if unset - see https://docs.rigetti.com/qcs/references/qcs-client-configuration
    
    :raises LoadClientError: If ``client`` was not provided to the function, and failed to load internally.
    :raises GetISAError: If there was an issue fetching the ISA from the QCS API.
    """

def get_instruction_set_architecture_async(quantum_processor_id: builtins.str, client: typing.Optional[QCSClient] = None) -> collections.abc.Awaitable[InstructionSetArchitecture]:
    r"""
    Fetch the ``InstructionSetArchitecture`` (ISA) for a given `quantum_processor_id` from the QCS API.
    
    :param quantum_processor_id: The ID of the quantum processor.
    :param client: The ``Qcs`` client to use. Creates one using environment configuration if unset - see https://docs.rigetti.com/qcs/references/qcs-client-configuration
    
    :raises LoadClientError: If ``client`` was not provided to the function, and failed to load internally.
    :raises GetISAError: If there was an issue fetching the ISA from the QCS API.
    """