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
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.
"""
r"""
A list of all computational edges in the instruction set architecture.
"""
r"""
A list of all computational edges in the instruction set architecture.
"""
r"""
The architecture family. The nodes and edges conform to this family.
"""
r"""
The architecture family. The nodes and edges conform to this family.
"""
r"""
A list of all computational nodes in the instruction set architecture.
"""
r"""
A list of all computational nodes in the instruction set architecture.
"""
...
...
r"""
Implements `__repr__` for Python in terms of the Rust
[`Debug`](std::fmt::Debug) implementation.
"""
r"""
A measured characteristic of an operation.
"""
r"""
The error in the characteristic value, or None otherwise.
"""
r"""
The error in the characteristic value, or None otherwise.
"""
r"""
The name of the characteristic.
"""
r"""
The name of the characteristic.
"""
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.
"""
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.
"""
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.
"""
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.
"""
r"""
The date and time at which the characteristic was measured.
"""
r"""
The date and time at which the characteristic was measured.
"""
r"""
The characteristic value measured.
"""
r"""
The characteristic value measured.
"""
...
r"""
A measured characteristic of an operation.
"""
r"""
Implements `__repr__` for Python in terms of the Rust
[`Debug`](std::fmt::Debug) implementation.
"""
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)`.
"""
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.
"""
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.
"""
...
...
r"""
Implements `__repr__` for Python in terms of the Rust
[`Debug`](std::fmt::Debug) implementation.
"""
r"""
Errors raised due to failure to get an ISA.
"""
...
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.
"""
...
...
r"""
The list of benchmarks that have characterized the quantum processor.
"""
r"""
The list of benchmarks that have characterized the quantum processor.
"""
r"""
The list of native QUIL instructions supported by the quantum processor.
"""
r"""
The list of native QUIL instructions supported by the quantum processor.
"""
r"""
The name of the quantum processor.
"""
r"""
The name of the quantum processor.
"""
...
...
r"""
Implements `__repr__` for Python in terms of the Rust
[`Debug`](std::fmt::Debug) implementation.
"""
r"""
Deserialize an `InstructionSetArchitecture` from a json representation.
# Errors
Returns [`SerializeIsaError`] if the input string was not deserialized correctly.
"""
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.
"""
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``.
"""
r"""
An integer id assigned to the computational node.
The ids may not be contiguous and will be assigned based on the architecture family.
"""
r"""
An integer id assigned to the computational node.
The ids may not be contiguous and will be assigned based on the architecture family.
"""
...
...
r"""
Implements `__repr__` for Python in terms of the Rust
[`Debug`](std::fmt::Debug) implementation.
"""
r"""
An operation, with its sites and site-independent characteristics.
"""
r"""
The list of site-independent characteristics of this operation.
"""
r"""
The list of site-independent characteristics of this operation.
"""
r"""
The name of the operation.
"""
r"""
The name of the operation.
"""
r"""
The number of nodes that this operation applies to. None if unspecified.
"""
r"""
The number of nodes that this operation applies to. None if unspecified.
"""
r"""
The list of parameters. Each parameter must be uniquely named. May be empty.
"""
r"""
The list of parameters. Each parameter must be uniquely named. May be empty.
"""
r"""
The list of sites at which this operation can be applied, together with its site-dependent characteristics.
"""
r"""
The list of sites at which this operation can be applied, together with its site-dependent characteristics.
"""
...
r"""
An operation, with its sites and site-independent characteristics.
"""
r"""
Implements `__repr__` for Python in terms of the Rust
[`Debug`](std::fmt::Debug) implementation.
"""
r"""
A site for an operation, with its site-dependent characteristics.
"""
r"""
The list of site-dependent characteristics of this operation.
"""
r"""
The list of site-dependent characteristics of this operation.
"""
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.
"""
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.
"""
...
r"""
A site for an operation, with its site-dependent characteristics.
"""
r"""
Implements `__repr__` for Python in terms of the Rust
[`Debug`](std::fmt::Debug) implementation.
"""
r"""
A parameter to an operation.
"""
r"""
The name of the parameter, such as the name of a mathematical symbol.
"""
r"""
The name of the parameter, such as the name of a mathematical symbol.
"""
...
...
r"""
Implements `__repr__` for Python in terms of the Rust
[`Debug`](std::fmt::Debug) implementation.
"""
r"""
Errors raised due to failure to serialize an ISA.
"""
...
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.
"""
= ...
= ...
= ...
= ...
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.
"""
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.
"""