The rpcq Reference Manual

This is the rpcq Reference Manual, version 3.10.0, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 17:48:36 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 rpcq

Message and RPC specifications for Rigetti Quantum Cloud Services.

Author

Rigetti Computing <>

Version

3.10.0

Dependencies
  • alexandria (system).
  • parse-float (system).
  • yason (system).
  • cl-ppcre (system).
  • pzmq (system).
  • cl-messagepack (system).
  • bordeaux-threads (system).
  • local-time (system).
  • uuid (system).
  • cl-syslog (system).
  • flexi-streams (system).
  • trivial-backtrace (system).
Source

rpcq.asd.

Child Components

3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.1 rpcq/rpcq.asd

Source

rpcq.asd.

Parent Component

rpcq (system).

ASDF Systems

rpcq.


3.1.2 rpcq/package.lisp

Source

rpcq.asd.

Parent Component

rpcq (system).

Packages

rpcq.


3.1.3 rpcq/utilities.lisp

Dependency

package.lisp (file).

Source

rpcq.asd.

Parent Component

rpcq (system).

Public Interface

with-unique-rpc-address (macro).

Internals

3.1.4 rpcq/rpcq.lisp

Dependency

utilities.lisp (file).

Source

rpcq.asd.

Parent Component

rpcq (system).

Public Interface
Internals

3.1.5 rpcq/rpcq-python.lisp

Dependency

rpcq.lisp (file).

Source

rpcq.asd.

Parent Component

rpcq (system).

Public Interface

python-message-spec (function).

Internals

3.1.6 rpcq/core-messages.lisp

Dependency

rpcq-python.lisp (file).

Source

rpcq.asd.

Parent Component

rpcq (system).

Public Interface
Internals

3.1.7 rpcq/messages.lisp

Dependency

core-messages.lisp (file).

Source

rpcq.asd.

Parent Component

rpcq (system).

Public Interface
Internals

3.1.8 rpcq/server.lisp

Dependency

messages.lisp (file).

Source

rpcq.asd.

Parent Component

rpcq (system).

Public Interface
Internals

3.1.9 rpcq/client.lisp

Dependency

server.lisp (file).

Source

rpcq.asd.

Parent Component

rpcq (system).

Public Interface
Internals

4 Packages

Packages are listed by definition order.


4.1 rpcq

Source

package.lisp.

Use List
  • alexandria.
  • common-lisp.
  • yason.
Public Interface
Internals

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Macros

Macro: defmessage (class-name parent-name field-specs &key documentation)

Create a (de-)serializable message definition.

PARAMETERS:
* CLASS-NAME: The name of the message type.
* PARENT-NAME: A list of length at most 1 of "parent message types". Child message types inherit their parents slot specifications.
* FIELD-SPECS: A list of slot specifications for the message type. An entry in FIELD-SPECS is a plist with the following possible keys:
:TYPE - Either an atomic type, a list type, a map type, or another RPCQ message name.
:REQUIRED - A boolean indicating whether the field is required. If it is required, there must be a default value, either supplied through :DEFAULT or implicitly. :DOCUMENTATION - A documentation string.
:DEFAULT - A default value for the slot.
:DEPRECATES - The slot name that this slot replaces.
:DEPRECATED-BY - The slot name that this slot is replaced by.
:DEPRECATED - Indicates that this slot is being phased out without a replacement.

LIMITATIONS:
* DEPRECATES / DEPRECATED-BY must come in balanced pairs.
* DEPRECATES / DEPRECATED-BY are mutually exclusive. (Nested deprecation is not currently supported.)
* DEPRECATES / DEPRECATED-BY must reference slots on the same message, and not on parent messages.

Package

rpcq.

Source

rpcq.lisp.

Macro: with-rpc-client ((client endpoint &rest options) &body body)

Opens an RPCQ client connection, referenced by CLIENT, at ENDPOINT. The connection is automatically closed as this form is exited or unwound. Hence, CLIENT is only valid during the execution of BODY, and it should not be stored or closed over.

OPTIONS is a p-list with the following possible keys:

:AUTH-CONFIG is a CLIENT-AUTH-CONFIG specifying keys for socket encryption and authentication.
:TIMEOUT is a timeout duration in seconds.

Package

rpcq.

Source

client.lisp.

Macro: with-unique-rpc-address ((addr) &body body)

Bind ADDR in the context of BODY to a unique address acceptable to RPCQ:START-SERVER.

Package

rpcq.

Source

utilities.lisp.


5.1.2 Ordinary functions

Function: clear-messages ()

Clear the stored message definitions.

Package

rpcq.

Source

rpcq.lisp.

Reader: client-auth-config-client-public-key (instance)
Package

rpcq.

Source

client.lisp.

Target Slot

client-public-key.

Reader: client-auth-config-client-secret-key (instance)
Package

rpcq.

Source

client.lisp.

Target Slot

client-secret-key.

Reader: client-auth-config-server-public-key (instance)
Package

rpcq.

Source

client.lisp.

Target Slot

server-public-key.

Function: deserialize (payload)

Deserialize the object(s) encoded in PAYLOAD (string or stream).

Package

rpcq.

Source

rpcq.lisp.

Function: dispatch-table-add-handler (dispatch-table f &key name)

Add a function F to DISPATCH-TABLE, for use by an RPCQ server. The function F is expected to take only keyword arguments.

By default, a symbol passed in for F will be automatically converted into the name of F used in the dispatch table. To manually specify a name (or to provide a name for a non-symbol value of F), use the keyword argument :NAME.

Package

rpcq.

Source

server.lisp.

Function: from-json (string-or-stream)

Deserialize an RPCQ message object from the JSON object in STRING-OR-STREAM.

Package

rpcq.

Source

rpcq.lisp.

Function: make-client-auth-config (&key client-secret-key client-public-key server-public-key)
Package

rpcq.

Source

client.lisp.

Function: make-dispatch-table ()

Make an empty DISPATCH-TABLE, suitable for use with DISPATCH-TABLE-ADD-HANDLER and START-SERVER.

Package

rpcq.

Source

server.lisp.

Function: make-server-auth-config (&key server-secret-key)
Package

rpcq.

Source

server.lisp.

Function: python-message-spec (stream messages &optional parent-modules)

Print an importable python file with the message definitions.

Package

rpcq.

Source

rpcq-python.lisp.

Function: rpc-call (client call &rest args)

Makes a synchronous RPC call, designated by the string method name CALL, over the connection CLIENT. ARGS is a plist of arguments. Returns the result of the call directly.

Package

rpcq.

Source

client.lisp.

Function: serialize (obj &optional stream)

Serialize OBJ, either written to a stream or returned as a vector of (INTEGER 0 255).

Package

rpcq.

Source

rpcq.lisp.

Reader: server-auth-config-server-secret-key (instance)
Package

rpcq.

Source

server.lisp.

Target Slot

server-secret-key.

Function: start-server (&key dispatch-table auth-config listen-addresses thread-count logger timeout debug)

Main loop of an RPCQ server.

Argument descriptions:
* DISPATCH-TABLE, of type DISPATCH-TABLE, registers the valid methods to which the server will respond.
* AUTH-CONFIG is the SERVER-AUTH-CONFIG specifying keys for socket encryption.
* LISTEN-ADDRESSES is a list of strings, each of which is a valid ZMQ interface address that the server will listen on.
* THREAD-COUNT is a positive integer of the number of worker threads that the server will spawn to service requests.
* LOGGER is the stream to which the worker threads will write debug information. This stream is also forwarded to the RPC functions as *DEBUG-IO*.
* TIMEOUT, of type (OR NULL (REAL 0)), sets the maximum duration that a thread will be allowed to work for before it is forcefully terminated. A TIMEOUT value of NIL signals that no thread will ever be terminated for taking too long. This timeout can be overridden by a shorter client-side timeout, provided by the RPCRequest object (see |RPCRequest-client_timeout|).

Package

rpcq.

Source

server.lisp.

Function: to-json (obj &optional stream)

Serialize OBJ to JSON on STREAM.

Package

rpcq.

Source

rpcq.lisp.

Function: to-json-string (obj)

Serialize OBJ to a JSON STRING.

Package

rpcq.

Source

rpcq.lisp.


5.1.3 Generic functions

Generic Reader: not-an-rpcrequest-object (condition)
Package

rpcq.

Methods
Reader Method: not-an-rpcrequest-object ((condition not-an-rpcrequest))
Source

server.lisp.

Target Slot

object.

Generic Reader: rpc-error-request-id (condition)
Package

rpcq.

Methods
Reader Method: rpc-error-request-id ((condition rpc-error))
Source

client.lisp.

Target Slot

request-id.

Generic Reader: rpc-error-string (condition)
Package

rpcq.

Methods
Reader Method: rpc-error-string ((condition rpc-error))
Source

client.lisp.

Target Slot

error-string.

Generic Reader: rpc-protocol-error-id (condition)
Package

rpcq.

Methods
Reader Method: rpc-protocol-error-id ((condition rpc-protocol-error))
Source

client.lisp.

Target Slot

id.

Generic Reader: rpc-protocol-error-object (condition)
Package

rpcq.

Methods
Reader Method: rpc-protocol-error-object ((condition rpc-protocol-error))
Source

client.lisp.

Target Slot

object.

Generic Reader: unknown-rpc-method-name (condition)
Package

rpcq.

Methods
Reader Method: unknown-rpc-method-name ((condition unknown-rpc-method))
Source

server.lisp.

Target Slot

method-name.


5.1.4 Standalone methods

Method: print-object ((obj0 rewritearithmeticresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 rpcwarning) stream)
Source

messages.lisp.

Method: print-object ((obj0 qfdchannel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qdofastfluxchannel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 rpcrequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 microwavesourcesettings) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 parameterspec) stream)
Source

messages.lisp.

Method: print-object ((obj0 qgschannel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 binaryexecutablerequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 gaussianwaveform) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 binaryexecutableresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 qdoslowfluxchannel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 executorjob) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 scheduleirjob) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 flatpulse) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 draggaussianwaveform) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qrtchannel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 pauliterm) stream)
Source

messages.lisp.

Method: print-object ((obj0 qdosequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 resources) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 rackmeta) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qfdx2sequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qfdsequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 usitargetsequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 randomizedbenchmarkingrequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 rpcerror) stream)
Source

messages.lisp.

Method: print-object ((obj0 targetdevice) stream)
Source

messages.lisp.

Method: print-object ((obj0 activereset) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 setfrequency) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 boxcaraveragerkernel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 frame) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 patchtarget) stream)
Source

messages.lisp.

Method: print-object ((obj0 nativequilrequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 program) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 abstractwaveform) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 waveform) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 getexecutionresultsresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 qgssequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qrtx2sequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 templatekernel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 randomizedbenchmarkingresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 legacyusrpsequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 instruction) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 nativequilresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 rpcreply) stream)
Source

messages.lisp.

Method: print-object ((obj0 dataaxis) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 mnioconnection) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 shiftphase) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 setphase) stream)
Source

core-messages.lisp.

Method: print-object ((object rpc-client) stream)
Source

client.lisp.

Method: print-object ((obj0 templatewaveform) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 receiver) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 flatkernel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 cwchannel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 quiltcalibrationsrequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 debugmessage) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 erfsquarewaveform) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 conjugatebycliffordresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 vnasettings) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 rewritearithmeticrequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 hermitegaussianwaveform) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 swapphases) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 quiltcalibrationsresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 conjugatebycliffordrequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 capture) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qrrchannel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 instrument) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 parameteraref) stream)
Source

messages.lisp.

Method: print-object ((obj0 abstractkernel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 patchablebinary) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 setscale) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 cwfrequencysweep) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 flatwaveform) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 deployedrack) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qrrsequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qgsx2sequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 parameterexpression) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 filternode) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 pulse) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 shiftfrequency) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qpu) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 filterkernel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 quiltbinaryexecutableresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 usicardsequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 nativequilmetadata) stream)
Source

messages.lisp.

Method: print-object ((obj0 qpurequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 timebomb) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 qrtsequencer) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 yokogawags200channel) stream)
Source

core-messages.lisp.

Method: print-object ((obj0 quiltbinaryexecutablerequest) stream)
Source

messages.lisp.

Method: print-object ((obj0 pyquilexecutableresponse) stream)
Source

messages.lisp.

Method: print-object ((obj0 awgchannel) stream)
Source

core-messages.lisp.

Method: shared-initialize ((instance rewritearithmeticresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance rpcwarning) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance qfdchannel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qdofastfluxchannel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance rpcrequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance microwavesourcesettings) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance parameterspec) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance qgschannel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance binaryexecutablerequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance gaussianwaveform) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance binaryexecutableresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance qdoslowfluxchannel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance executorjob) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance scheduleirjob) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance flatpulse) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance draggaussianwaveform) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qrtchannel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance pauliterm) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance qdosequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance resources) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance rackmeta) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qfdx2sequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qfdsequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance usitargetsequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance randomizedbenchmarkingrequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance rpcerror) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance targetdevice) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance activereset) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance setfrequency) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance boxcaraveragerkernel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance frame) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance patchtarget) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance nativequilrequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance program) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance abstractwaveform) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance waveform) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance getexecutionresultsresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance qgssequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qrtx2sequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance templatekernel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance randomizedbenchmarkingresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance legacyusrpsequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance instruction) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance nativequilresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance rpcreply) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance dataaxis) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance mnioconnection) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance shiftphase) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance setphase) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance templatewaveform) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance receiver) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance flatkernel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance cwchannel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance quiltcalibrationsrequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance debugmessage) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance erfsquarewaveform) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance conjugatebycliffordresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance vnasettings) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance rewritearithmeticrequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance hermitegaussianwaveform) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance swapphases) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance quiltcalibrationsresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance conjugatebycliffordrequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance capture) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qrrchannel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance instrument) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance parameteraref) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance abstractkernel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance patchablebinary) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance setscale) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance cwfrequencysweep) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance flatwaveform) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance deployedrack) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qrrsequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qgsx2sequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance parameterexpression) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance filternode) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance pulse) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance shiftfrequency) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qpu) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance filterkernel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance quiltbinaryexecutableresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance usicardsequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance nativequilmetadata) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance qpurequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance timebomb) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance qrtsequencer) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance yokogawags200channel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.

Method: shared-initialize ((instance quiltbinaryexecutablerequest) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance pyquilexecutableresponse) slot-names &rest initargs &key &allow-other-keys)
Source

messages.lisp.

Method: shared-initialize ((instance awgchannel) slot-names &rest initargs &key &allow-other-keys)
Source

core-messages.lisp.


5.1.5 Conditions

Condition: not-an-rpcrequest

While listening for an RPC call, the server received malformed information.

Package

rpcq.

Source

server.lisp.

Direct superclasses

simple-error.

Direct methods

not-an-rpcrequest-object.

Direct slots
Slot: object
Initargs

:object

Readers

not-an-rpcrequest-object.

Writers

This slot is read-only.

Condition: rpc-error

An RPC call signaled an error on the remote host.

Package

rpcq.

Source

client.lisp.

Direct superclasses

simple-error.

Direct methods
Direct slots
Slot: error-string
Initargs

:string

Readers

rpc-error-string.

Writers

This slot is read-only.

Slot: request-id
Initargs

:id

Readers

rpc-error-request-id.

Writers

This slot is read-only.

Condition: rpc-protocol-error

While listening for an RPC call reply, the client received malformed information.

Package

rpcq.

Source

client.lisp.

Direct superclasses

simple-error.

Direct methods
Direct slots
Slot: object
Initargs

:object

Readers

rpc-protocol-error-object.

Writers

This slot is read-only.

Slot: id
Initargs

:id

Readers

rpc-protocol-error-id.

Writers

This slot is read-only.

Condition: unknown-rpc-method

The server received an RPC request for a method it does not recognize.

Package

rpcq.

Source

server.lisp.

Direct superclasses

simple-error.

Direct methods

unknown-rpc-method-name.

Direct slots
Slot: method-name
Initargs

:method-name

Readers

unknown-rpc-method-name.

Writers

This slot is read-only.


5.1.6 Structures

Structure: client-auth-config

Holds the ZeroMQ Curve configuration for a client socket.

Package

rpcq.

Source

client.lisp.

Direct superclasses

structure-object.

Direct slots
Slot: client-secret-key
Type

string

Initform

(error "must provide client-secret-key")

Readers

client-auth-config-client-secret-key.

Writers

This slot is read-only.

Slot: client-public-key
Type

string

Initform

(error "must provide client-public-key")

Readers

client-auth-config-client-public-key.

Writers

This slot is read-only.

Slot: server-public-key
Type

string

Initform

(error "must provide server-public-key")

Readers

client-auth-config-server-public-key.

Writers

This slot is read-only.

Structure: server-auth-config

Holds the ZeroMQ Curve configuration for a server socket.

Package

rpcq.

Source

server.lisp.

Direct superclasses

structure-object.

Direct slots
Slot: server-secret-key
Type

string

Initform

(error "must provide server-secret-key")

Readers

server-auth-config-server-secret-key.

Writers

This slot is read-only.


5.1.7 Types

Type: optional-bool ()

An optional boolean value includes the extra None value, specific to Python.

Package

rpcq.

Source

rpcq.lisp.


5.2 Internals


5.2.1 Special variables

Special Variable: *messages*
Package

rpcq.

Source

rpcq.lisp.

Special Variable: *mocked-namespace*

*MOCKED-NAMESPACE* can be bound to a STRING to override the namespace returned by CURRENT-NAMESPACE.

Potentially useful in testing situations to override the default namespace. Should remain unbound in the global environment.

Package

rpcq.

Source

rpcq.lisp.

Special Variable: *python-instance-check-types*
Package

rpcq.

Source

rpcq-python.lisp.

Special Variable: *python-types*
Package

rpcq.

Source

rpcq-python.lisp.

Special Variable: *use-false*

Discriminate between a false value and a nil value. If set to NIL both :FALSE and NIL with serialize and deserialize into NIL.

Package

rpcq.

Source

rpcq.lisp.

Special Variable: *warnings*

An adjustable array of |RPCWarning|s that correspond to WARNINGs signaled during the dynamic extent of %PROCESS-RAW-REQUEST.

These warnings are included in the RPC response that is returned to the caller.

*WARNINGS* is unbound in the global environment.

Package

rpcq.

Source

server.lisp.


5.2.2 Ordinary functions

Function: %plist-to-string-hash-table (plist)

Generate a hash-table from a PLIST while simultaneously converting the keys to strings.

Package

rpcq.

Source

rpcq.lisp.

Function: %process-raw-request (receiver dispatch-table logger timeout debug)

Read a raw request from RECEIVER, then handle it and write the result.

Package

rpcq.

Source

server.lisp.

Function: %process-request (request dispatch-table timeout debug)

Process the given |RPCRequest| REQUEST and return either an |RPCReply| or an |RPCError|.

Package

rpcq.

Source

server.lisp.

Function: %pull-raw-request (receiver)

Pulls a ZMQ request over the RECEIVER socket. Returns a VALUES triple:

* IDENTITY-FRAME: array of (UNSIGNED-BYTE 8) that describes the intended recipient of a reply to this request.
* NULL-FRAME?: boolean indicating whether the recipient expects an additional null frame after the identity frame. (This is the case for REQ-type clients.) * PAYLOAD: array of (UNSIGNED-BYTE 8) that houses the raw request.

Package

rpcq.

Source

server.lisp.

Function: %push-raw-request (socket identity null-frame? payload)

Pushes a ZMQ reply onto SOCKET. Takes the following values:

* IDENTITY: array of (UNSIGNED-BYTE 8) that describes the inteded recipient of the reply. Copy this from the matching %PULL-RAW-REQUEST.
* NULL-FRAME?: boolean indicating whether the recipient expects an additional null frame after the identity frame. Copy this from the matching %PULL-RAW-REQUEST. * PAYLOAD: array of (UNSIGNED-BYTE 8) that houses the raw reply.

Package

rpcq.

Source

server.lisp.

Function: %rpc-call-raw-request (client uuid payload)

An unsafe version of RPC-CALL that does not verify that PAYLOAD is valid RPCRequest payload.

Useful for testing behavior when sending an invalid RPC request.

* CLIENT: an RPC-CLIENT.
* CALL: a STRING indicating the RPC method to call.
* UUID: the v4 UUID of the request.
* PAYLOAD: an array of (UNSIGNED-BYTE 8) that houses the raw request.

Returns the result of the RPC method call.

Package

rpcq.

Source

client.lisp.

Function: %rpc-server-thread-worker (&key dispatch-table logger timeout debug pool-address)

The thread body for an RPCQ server. Responds to RPCQ requests which match entries in DISPATCH-TABLE and writes log entries to LOGGER.

DISPATCH-TABLE and LOGGER are both required arguments. TIMEOUT is of type (OR NULL (REAL 0)), with NIL signaling no timeout. This timeout can be overridden by a shorter client-side timeout, provided by the RPCRequest object (see |RPCRequest-client_timeout|).

Package

rpcq.

Source

server.lisp.

Function: camel-to-kebab (str)

Convert STR from CamelCase to KEBAB-CASE. Yum!

Package

rpcq.

Source

utilities.lisp.

Function: client-auth-config-p (object)
Package

rpcq.

Source

client.lisp.

Function: copy-client-auth-config (instance)
Package

rpcq.

Source

client.lisp.

Function: copy-rpc-client (instance)
Package

rpcq.

Source

client.lisp.

Function: copy-server-auth-config (instance)
Package

rpcq.

Source

server.lisp.

Function: current-namespace ()
Package

rpcq.

Source

rpcq.lisp.

Function: format-documentation-string (string)

Format a documentation string STRING into its final stored representation.

The input strings are assumed to be FORMAT-compatible, so sequences like ~<newline> are allowed.

Package

rpcq.

Source

rpcq.lisp.

Function: format-log (s fmt-string &rest args)

Writes a format string to the stream S in debug output format.

Package

rpcq.

Source

utilities.lisp.

Function: global-function-p (symbol)

Return true if SYMBOL is a symbol naming a global function. Return false otherwise.

Package

rpcq.

Source

utilities.lisp.

Function: log-completion-message (logger request reply start-time)
Package

rpcq.

Source

server.lisp.

Function: make-rpc-client (&key socket timeout)
Package

rpcq.

Source

client.lisp.

Function: map-plist (f plist)

Iterate over a PLIST and call F with key and value as parameters.

Package

rpcq.

Source

rpcq.lisp.

Function: prepare-rpc-call-args (args)
Package

rpcq.

Source

client.lisp.

Function: python-argspec-default (field-type default &optional defaultp)

Translate DEFAULT values for immutable objects of a given FIELD-TYPE to python.

DEFAULTP indicates whether DEFAULT has a value of NIL because NIL was provided in the DEFMESSAGE (T), or because it was missing in the DEFMESSAGE (NIL).

Package

rpcq.

Source

rpcq-python.lisp.

Function: python-collections-initform (field-type default)

Translate a DEFAULT value of type FIELD-TYPE to a python initform.

Package

rpcq.

Source

rpcq-python.lisp.

Function: python-instance-check-type (field-type)
Package

rpcq.

Source

rpcq-python.lisp.

Function: python-maybe-optional-typing-type (field-type required)

Rerturn the python type string for FIELD-TYPE while accounting for whether the field is REQUIRED.

Package

rpcq.

Source

rpcq-python.lisp.

Function: python-type (field-type)

Always return a basic python type not List[...] or Dict[...] for instance checks.

Package

rpcq.

Source

rpcq-python.lisp.

Function: python-typing-type (field-type)

Return the python typing-module compliant field type

Package

rpcq.

Source

rpcq-python.lisp.

Function: register-message (namespace entry)

Add ENTRY to *MESSAGES* under NAMESPACE.

PARAMETERS:
* NAMESPACE - a STRING
* ENTRY - a list of the form (CLASS-NAME PARENT-CLASS-NAME FIELD-SPECS DOCUMENTATION)

Package

rpcq.

Source

rpcq.lisp.

Function: rpc-client-p (object)
Package

rpcq.

Source

client.lisp.

Reader: rpc-client-socket (instance)
Writer: (setf rpc-client-socket) (instance)
Package

rpcq.

Source

client.lisp.

Target Slot

socket.

Reader: rpc-client-timeout (instance)
Writer: (setf rpc-client-timeout) (instance)
Package

rpcq.

Source

client.lisp.

Target Slot

timeout.

Function: sanitize-name (string-designator)

Convert a stringifiable STRING-DESIGNATOR into a snake-case string.

Package

rpcq.

Source

utilities.lisp.

Function: server-auth-config-p (object)
Package

rpcq.

Source

server.lisp.

Function: slot-type-and-initform (field-type required default)

Translate a FIELD-TYPE to a Lisp type and initform taking into account
whether the field is REQUIRED and a specified DEFAULT value.

The primitive field types must be specified as one of

:string :bytes :integer :float :bool

Message field types are specified by their class name, e.g. for
a Calibration message the field type is

|Calibration|

List and mapping field types are specified as

(:list x) (:map :string -> x)

where x is one of
{:string, :bytes, :any, :integer, :float, :bool, :list, :mapping} or a
message field type. We currently only support :string keys for
mappings as JSON does not support other kinds of keys but we
nonetheless explicitly include the key type for better readability

If a field is non-required, it may be None on the python side or NIL
in Lisp.

We distinguish between the following options for any field type:
1. Required with no default
- invalid not to provide a value for this field
- invalid to pass None/null/NIL for this field
2. Required with a default
- if a value is not provided, then a fallback value will be used
- invalid to pass None/null/NIL for this field
3. Optional with no default (equivalent to optional with a default of None in python, null in JSON, NIL in Lisp)
- valid to either not provide a value or to pass None for this field
4. Optional with a default
- if a value is not provided, then a fallback value is used
- you can explicitly pass None/null/NIL for this field

Package

rpcq.

Source

rpcq.lisp.

Function: snake-to-kebab (str)

Convert STR from snake_case to KEBAB-CASE. Yum!

Package

rpcq.

Source

utilities.lisp.

Function: str->lisp-keyword (str)

Convert a snake-case string into a hyphenated Lisp keyword.

Package

rpcq.

Source

utilities.lisp.

Function: to-octets (string)

Convert a string S to a vector of 8-bit unsigned bytes

Package

rpcq.

Source

rpcq.lisp.

Function: to-string (octets)

Convert a vector of octets to a string

Package

rpcq.

Source

rpcq.lisp.

Function: unpack-foreign-msg-to-bytes (msg)

Converts a foreign array of unsigned characters to a Lisp vector of such.

Package

rpcq.

Source

utilities.lisp.


5.2.3 Generic functions

Generic Function: %%deserialize-struct (type payload)
Package

rpcq.

Methods
Method: %%deserialize-struct ((type (eql rpcq::|getexecutionresultsresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|quiltcalibrationsresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|quiltcalibrationsrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qpurequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|pyquilexecutableresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|quiltbinaryexecutableresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|quiltbinaryexecutablerequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|binaryexecutableresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|binaryexecutablerequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|rewritearithmeticresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|rewritearithmeticrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|nativequilresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|nativequilmetadata|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|nativequilrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|conjugatebycliffordresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|conjugatebycliffordrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|pauliterm|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|randomizedbenchmarkingresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|randomizedbenchmarkingrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|targetdevice|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|rpcerror|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|rpcreply|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|rpcwarning|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|rpcrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|patchtarget|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|parameteraref|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|parameterspec|)) (payload hash-table))
Source

messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|activereset|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|patchablebinary|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|executorjob|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|microwavesourcesettings|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|timebomb|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|vnasettings|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|cwfrequencysweep|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|usitargetsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|usicardsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qrrsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qrtx2sequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qrtsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qgsx2sequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qgssequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qfdx2sequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qdosequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qfdsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|legacyusrpsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|yokogawags200channel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qdofastfluxchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qdoslowfluxchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|cwchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qrrchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qrtchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qgschannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|qfdchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|awgchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|deployedrack|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|instrument|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::qpu)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|rackmeta|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|scheduleirjob|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|program|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|mnioconnection|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|capture|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|setscale|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|shiftfrequency|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|setfrequency|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|swapphases|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|shiftphase|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|setphase|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|flatpulse|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|pulse|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|debugmessage|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|instruction|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|parameterexpression|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|receiver|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|dataaxis|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|filternode|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|boxcaraveragerkernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|flatkernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|templatekernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|filterkernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|abstractkernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|flatwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|erfsquarewaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|hermitegaussianwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|draggaussianwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|gaussianwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|templatewaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|waveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|abstractwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|resources|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct ((type (eql rpcq::|frame|)) (payload hash-table))
Source

core-messages.lisp.

Method: %%deserialize-struct (type payload)
Source

rpcq.lisp.

Generic Function: %%serialize (obj hash-table)
Package

rpcq.

Methods
Method: %%serialize ((obj0 getexecutionresultsresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 quiltcalibrationsresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 quiltcalibrationsrequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 qpurequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 pyquilexecutableresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 quiltbinaryexecutableresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 quiltbinaryexecutablerequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 binaryexecutableresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 binaryexecutablerequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 rewritearithmeticresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 rewritearithmeticrequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 nativequilresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 nativequilmetadata) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 nativequilrequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 conjugatebycliffordresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 conjugatebycliffordrequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 pauliterm) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 randomizedbenchmarkingresponse) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 randomizedbenchmarkingrequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 targetdevice) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 rpcerror) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 rpcreply) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 rpcwarning) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 rpcrequest) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 patchtarget) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 parameteraref) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 parameterspec) (hash-table hash-table))
Source

messages.lisp.

Method: %%serialize ((obj0 activereset) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 patchablebinary) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 executorjob) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 microwavesourcesettings) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 timebomb) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 vnasettings) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 cwfrequencysweep) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 usitargetsequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 usicardsequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qrrsequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qrtx2sequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qrtsequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qgsx2sequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qgssequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qfdx2sequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qdosequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qfdsequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 legacyusrpsequencer) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 yokogawags200channel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qdofastfluxchannel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qdoslowfluxchannel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 cwchannel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qrrchannel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qrtchannel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qgschannel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qfdchannel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 awgchannel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 deployedrack) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 instrument) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 qpu) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 rackmeta) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 scheduleirjob) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 program) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 mnioconnection) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 capture) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 setscale) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 shiftfrequency) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 setfrequency) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 swapphases) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 shiftphase) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 setphase) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 flatpulse) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 pulse) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 debugmessage) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 instruction) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 parameterexpression) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 receiver) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 dataaxis) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 filternode) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 boxcaraveragerkernel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 flatkernel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 templatekernel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 filterkernel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 abstractkernel) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 flatwaveform) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 erfsquarewaveform) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 hermitegaussianwaveform) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 draggaussianwaveform) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 gaussianwaveform) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 templatewaveform) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 waveform) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 abstractwaveform) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 resources) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize ((obj0 frame) (hash-table hash-table))
Source

core-messages.lisp.

Method: %%serialize (obj hash-table)
Source

rpcq.lisp.

Generic Function: %deserialize (payload)

Reconstruct objects that have already been converted to Lisp objects.

Package

rpcq.

Source

rpcq.lisp.

Methods
Method: %deserialize (payload)
Method: %deserialize ((payload hash-table))
Method: %deserialize ((payload string))
Method: %deserialize ((payload cons))
Method: %deserialize ((payload vector))
Generic Function: %deserialize-struct (type payload)
Package

rpcq.

Source

rpcq.lisp.

Methods
Method: %deserialize-struct ((type (eql rpcq::|getexecutionresultsresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|quiltcalibrationsresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|quiltcalibrationsrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qpurequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|pyquilexecutableresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|quiltbinaryexecutableresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|quiltbinaryexecutablerequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|binaryexecutableresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|binaryexecutablerequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|rewritearithmeticresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|rewritearithmeticrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|nativequilresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|nativequilmetadata|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|nativequilrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|conjugatebycliffordresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|conjugatebycliffordrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|pauliterm|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|randomizedbenchmarkingresponse|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|randomizedbenchmarkingrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|targetdevice|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|rpcerror|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|rpcreply|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|rpcwarning|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|rpcrequest|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|patchtarget|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|parameteraref|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|parameterspec|)) (payload hash-table))
Source

messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|activereset|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|patchablebinary|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|executorjob|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|microwavesourcesettings|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|timebomb|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|vnasettings|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|cwfrequencysweep|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|usitargetsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|usicardsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qrrsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qrtx2sequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qrtsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qgsx2sequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qgssequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qfdx2sequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qdosequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qfdsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|legacyusrpsequencer|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|yokogawags200channel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qdofastfluxchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qdoslowfluxchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|cwchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qrrchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qrtchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qgschannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|qfdchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|awgchannel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|deployedrack|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|instrument|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::qpu)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|rackmeta|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|scheduleirjob|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|program|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|mnioconnection|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|capture|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|setscale|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|shiftfrequency|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|setfrequency|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|swapphases|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|shiftphase|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|setphase|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|flatpulse|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|pulse|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|debugmessage|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|instruction|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|parameterexpression|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|receiver|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|dataaxis|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|filternode|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|boxcaraveragerkernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|flatkernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|templatekernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|filterkernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|abstractkernel|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|flatwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|erfsquarewaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|hermitegaussianwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|draggaussianwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|gaussianwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|templatewaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|waveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|abstractwaveform|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|resources|)) (payload hash-table))
Source

core-messages.lisp.

Method: %deserialize-struct ((type (eql rpcq::|frame|)) (payload hash-table))
Source

core-messages.lisp.

Generic Function: %print-slots (obj stream)
Package

rpcq.

Methods
Method: %print-slots ((obj0 getexecutionresultsresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 quiltcalibrationsresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 quiltcalibrationsrequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 qpurequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 pyquilexecutableresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 quiltbinaryexecutableresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 quiltbinaryexecutablerequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 binaryexecutableresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 binaryexecutablerequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 rewritearithmeticresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 rewritearithmeticrequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 nativequilresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 nativequilmetadata) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 nativequilrequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 conjugatebycliffordresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 conjugatebycliffordrequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 pauliterm) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 randomizedbenchmarkingresponse) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 randomizedbenchmarkingrequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 targetdevice) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 rpcerror) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 rpcreply) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 rpcwarning) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 rpcrequest) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 patchtarget) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 parameteraref) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 parameterspec) stream)
Source

messages.lisp.

Method: %print-slots ((obj0 activereset) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 patchablebinary) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 executorjob) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 microwavesourcesettings) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 timebomb) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 vnasettings) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 cwfrequencysweep) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 usitargetsequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 usicardsequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qrrsequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qrtx2sequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qrtsequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qgsx2sequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qgssequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qfdx2sequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qdosequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qfdsequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 legacyusrpsequencer) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 yokogawags200channel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qdofastfluxchannel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qdoslowfluxchannel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 cwchannel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qrrchannel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qrtchannel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qgschannel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qfdchannel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 awgchannel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 deployedrack) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 instrument) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 qpu) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 rackmeta) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 scheduleirjob) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 program) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 mnioconnection) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 capture) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 setscale) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 shiftfrequency) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 setfrequency) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 swapphases) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 shiftphase) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 setphase) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 flatpulse) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 pulse) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 debugmessage) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 instruction) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 parameterexpression) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 receiver) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 dataaxis) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 filternode) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 boxcaraveragerkernel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 flatkernel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 templatekernel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 filterkernel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 abstractkernel) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 flatwaveform) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 erfsquarewaveform) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 hermitegaussianwaveform) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 draggaussianwaveform) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 gaussianwaveform) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 templatewaveform) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 waveform) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 abstractwaveform) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 resources) stream)
Source

core-messages.lisp.

Method: %print-slots ((obj0 frame) stream)
Source

core-messages.lisp.

Method: %print-slots (obj stream)
Source

rpcq.lisp.

Generic Function: %serialize (payload)

Writes RPCQ objects into JSON-ifiable form, for further passage to msgpack.

Package

rpcq.

Source

rpcq.lisp.

Methods
Method: %serialize ((obj0 getexecutionresultsresponse))
Source

messages.lisp.

Method: %serialize ((obj0 quiltcalibrationsresponse))
Source

messages.lisp.

Method: %serialize ((obj0 quiltcalibrationsrequest))
Source

messages.lisp.

Method: %serialize ((obj0 qpurequest))
Source

messages.lisp.

Method: %serialize ((obj0 pyquilexecutableresponse))
Source

messages.lisp.

Method: %serialize ((obj0 quiltbinaryexecutableresponse))
Source

messages.lisp.

Method: %serialize ((obj0 quiltbinaryexecutablerequest))
Source

messages.lisp.

Method: %serialize ((obj0 binaryexecutableresponse))
Source

messages.lisp.

Method: %serialize ((obj0 binaryexecutablerequest))
Source

messages.lisp.

Method: %serialize ((obj0 rewritearithmeticresponse))
Source

messages.lisp.

Method: %serialize ((obj0 rewritearithmeticrequest))
Source

messages.lisp.

Method: %serialize ((obj0 nativequilresponse))
Source

messages.lisp.

Method: %serialize ((obj0 nativequilmetadata))
Source

messages.lisp.

Method: %serialize ((obj0 nativequilrequest))
Source

messages.lisp.

Method: %serialize ((obj0 conjugatebycliffordresponse))
Source

messages.lisp.

Method: %serialize ((obj0 conjugatebycliffordrequest))
Source

messages.lisp.

Method: %serialize ((obj0 pauliterm))
Source

messages.lisp.

Method: %serialize ((obj0 randomizedbenchmarkingresponse))
Source

messages.lisp.

Method: %serialize ((obj0 randomizedbenchmarkingrequest))
Source

messages.lisp.

Method: %serialize ((obj0 targetdevice))
Source

messages.lisp.

Method: %serialize ((obj0 rpcerror))
Source

messages.lisp.

Method: %serialize ((obj0 rpcreply))
Source

messages.lisp.

Method: %serialize ((obj0 rpcwarning))
Source

messages.lisp.

Method: %serialize ((obj0 rpcrequest))
Source

messages.lisp.

Method: %serialize ((obj0 patchtarget))
Source

messages.lisp.

Method: %serialize ((obj0 parameteraref))
Source

messages.lisp.

Method: %serialize ((obj0 parameterspec))
Source

messages.lisp.

Method: %serialize ((obj0 activereset))
Source

core-messages.lisp.

Method: %serialize ((obj0 patchablebinary))
Source

core-messages.lisp.

Method: %serialize ((obj0 executorjob))
Source

core-messages.lisp.

Method: %serialize ((obj0 microwavesourcesettings))
Source

core-messages.lisp.

Method: %serialize ((obj0 timebomb))
Source

core-messages.lisp.

Method: %serialize ((obj0 vnasettings))
Source

core-messages.lisp.

Method: %serialize ((obj0 cwfrequencysweep))
Source

core-messages.lisp.

Method: %serialize ((obj0 usitargetsequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 usicardsequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 qrrsequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 qrtx2sequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 qrtsequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 qgsx2sequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 qgssequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 qfdx2sequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 qdosequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 qfdsequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 legacyusrpsequencer))
Source

core-messages.lisp.

Method: %serialize ((obj0 yokogawags200channel))
Source

core-messages.lisp.

Method: %serialize ((obj0 qdofastfluxchannel))
Source

core-messages.lisp.

Method: %serialize ((obj0 qdoslowfluxchannel))
Source

core-messages.lisp.

Method: %serialize ((obj0 cwchannel))
Source

core-messages.lisp.

Method: %serialize ((obj0 qrrchannel))
Source

core-messages.lisp.

Method: %serialize ((obj0 qrtchannel))
Source

core-messages.lisp.

Method: %serialize ((obj0 qgschannel))
Source

core-messages.lisp.

Method: %serialize ((obj0 qfdchannel))
Source

core-messages.lisp.

Method: %serialize ((obj0 awgchannel))
Source

core-messages.lisp.

Method: %serialize ((obj0 deployedrack))
Source

core-messages.lisp.

Method: %serialize ((obj0 instrument))
Source

core-messages.lisp.

Method: %serialize ((obj0 qpu))
Source

core-messages.lisp.

Method: %serialize ((obj0 rackmeta))
Source

core-messages.lisp.

Method: %serialize ((obj0 scheduleirjob))
Source

core-messages.lisp.

Method: %serialize ((obj0 program))
Source

core-messages.lisp.

Method: %serialize ((obj0 mnioconnection))
Source

core-messages.lisp.

Method: %serialize ((obj0 capture))
Source

core-messages.lisp.

Method: %serialize ((obj0 setscale))
Source

core-messages.lisp.

Method: %serialize ((obj0 shiftfrequency))
Source

core-messages.lisp.

Method: %serialize ((obj0 setfrequency))
Source

core-messages.lisp.

Method: %serialize ((obj0 swapphases))
Source

core-messages.lisp.

Method: %serialize ((obj0 shiftphase))
Source

core-messages.lisp.

Method: %serialize ((obj0 setphase))
Source

core-messages.lisp.

Method: %serialize ((obj0 flatpulse))
Source

core-messages.lisp.

Method: %serialize ((obj0 pulse))
Source

core-messages.lisp.

Method: %serialize ((obj0 debugmessage))
Source

core-messages.lisp.

Method: %serialize ((obj0 instruction))
Source

core-messages.lisp.

Method: %serialize ((obj0 parameterexpression))
Source

core-messages.lisp.

Method: %serialize ((obj0 receiver))
Source

core-messages.lisp.

Method: %serialize ((obj0 dataaxis))
Source

core-messages.lisp.

Method: %serialize ((obj0 filternode))
Source

core-messages.lisp.

Method: %serialize ((obj0 boxcaraveragerkernel))
Source

core-messages.lisp.

Method: %serialize ((obj0 flatkernel))
Source

core-messages.lisp.

Method: %serialize ((obj0 templatekernel))
Source

core-messages.lisp.

Method: %serialize ((obj0 filterkernel))
Source

core-messages.lisp.

Method: %serialize ((obj0 abstractkernel))
Source

core-messages.lisp.

Method: %serialize ((obj0 flatwaveform))
Source

core-messages.lisp.

Method: %serialize ((obj0 erfsquarewaveform))
Source

core-messages.lisp.

Method: %serialize ((obj0 hermitegaussianwaveform))
Source

core-messages.lisp.

Method: %serialize ((obj0 draggaussianwaveform))
Source

core-messages.lisp.

Method: %serialize ((obj0 gaussianwaveform))
Source

core-messages.lisp.

Method: %serialize ((obj0 templatewaveform))
Source

core-messages.lisp.

Method: %serialize ((obj0 waveform))
Source

core-messages.lisp.

Method: %serialize ((obj0 abstractwaveform))
Source

core-messages.lisp.

Method: %serialize ((obj0 resources))
Source

core-messages.lisp.

Method: %serialize ((obj0 frame))
Source

core-messages.lisp.

Method: %serialize ((payload hash-table))
Method: %serialize ((payload string))
Method: %serialize ((payload cons))
Method: %serialize ((payload vector))
Method: %serialize (payload)
Generic Reader: abstract-kernel-frame (object)
Generic Writer: (setf abstract-kernel-frame) (object)
Package

rpcq.

Methods
Reader Method: abstract-kernel-frame ((abstractkernel abstractkernel))
Writer Method: (setf abstract-kernel-frame) ((abstractkernel abstractkernel))

The label of the associated rx-frame.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: abstract-waveform-frame (object)
Generic Writer: (setf abstract-waveform-frame) (object)
Package

rpcq.

Methods
Reader Method: abstract-waveform-frame ((abstractwaveform abstractwaveform))
Writer Method: (setf abstract-waveform-frame) ((abstractwaveform abstractwaveform))

The label of the associated tx-frame.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: abstractkernel-frame (object)
Generic Writer: (setf abstractkernel-frame) (object)
Package

rpcq.

Methods
Reader Method: abstractkernel-frame ((abstractkernel abstractkernel))
Writer Method: (setf abstractkernel-frame) ((abstractkernel abstractkernel))

The label of the associated rx-frame.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: abstractwaveform-frame (object)
Generic Writer: (setf abstractwaveform-frame) (object)
Package

rpcq.

Methods
Reader Method: abstractwaveform-frame ((abstractwaveform abstractwaveform))
Writer Method: (setf abstractwaveform-frame) ((abstractwaveform abstractwaveform))

The label of the associated tx-frame.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: active-reset-apply-feedback-when (object)
Generic Writer: (setf active-reset-apply-feedback-when) (object)
Package

rpcq.

Methods
Reader Method: active-reset-apply-feedback-when ((activereset activereset))
Writer Method: (setf active-reset-apply-feedback-when) ((activereset activereset))

Apply the feedback when the measurement_bit equals the value of this flag.

Source

core-messages.lisp.

Target Slot

apply_feedback_when.

Generic Reader: active-reset-attempts (object)
Generic Writer: (setf active-reset-attempts) (object)
Package

rpcq.

Methods
Reader Method: active-reset-attempts ((activereset activereset))
Writer Method: (setf active-reset-attempts) ((activereset activereset))

The number of times to repeat the active reset sequence.

Source

core-messages.lisp.

Target Slot

attempts.

Generic Reader: active-reset-feedback-duration (object)
Generic Writer: (setf active-reset-feedback-duration) (object)
Package

rpcq.

Methods
Reader Method: active-reset-feedback-duration ((activereset activereset))
Writer Method: (setf active-reset-feedback-duration) ((activereset activereset))

The duration of feedback block in [seconds]

Source

core-messages.lisp.

Target Slot

feedback_duration.

Generic Reader: active-reset-feedback-instructions (object)
Generic Writer: (setf active-reset-feedback-instructions) (object)
Package

rpcq.

Methods
Reader Method: active-reset-feedback-instructions ((activereset activereset))
Writer Method: (setf active-reset-feedback-instructions) ((activereset activereset))

The ordered sequence of scheduled feedback instructions.

Source

core-messages.lisp.

Target Slot

feedback_instructions.

Generic Reader: active-reset-measurement-bit (object)
Generic Writer: (setf active-reset-measurement-bit) (object)
Package

rpcq.

Methods
Reader Method: active-reset-measurement-bit ((activereset activereset))
Writer Method: (setf active-reset-measurement-bit) ((activereset activereset))

The address of the readout bit to condition the
feedback on. The bit is first accessed after measurement_duration has elapsed.

Source

core-messages.lisp.

Target Slot

measurement_bit.

Generic Reader: active-reset-measurement-duration (object)
Generic Writer: (setf active-reset-measurement-duration) (object)
Package

rpcq.

Methods
Reader Method: active-reset-measurement-duration ((activereset activereset))
Writer Method: (setf active-reset-measurement-duration) ((activereset activereset))

The duration of measurement block in [seconds]. The
measurement bit is expected to have arrived on the QGS after this time relative to the overall start of the ActiveReset block.

Source

core-messages.lisp.

Target Slot

measurement_duration.

Generic Reader: active-reset-measurement-instructions (object)
Generic Writer: (setf active-reset-measurement-instructions) (object)
Package

rpcq.

Methods
Reader Method: active-reset-measurement-instructions ((activereset activereset))
Writer Method: (setf active-reset-measurement-instructions) ((activereset activereset))

The ordered sequence of scheduled measurement instructions.

Source

core-messages.lisp.

Target Slot

measurement_instructions.

Generic Reader: active-reset-time (object)
Generic Writer: (setf active-reset-time) (object)
Package

rpcq.

Methods
Reader Method: active-reset-time ((activereset activereset))
Writer Method: (setf active-reset-time) ((activereset activereset))

Time at which the ActiveReset begins in [seconds].

Source

core-messages.lisp.

Target Slot

time.

Generic Reader: activereset-apply_feedback_when (object)
Generic Writer: (setf activereset-apply_feedback_when) (object)
Package

rpcq.

Methods
Reader Method: activereset-apply_feedback_when ((activereset activereset))
Writer Method: (setf activereset-apply_feedback_when) ((activereset activereset))

Apply the feedback when the measurement_bit equals the value of this flag.

Source

core-messages.lisp.

Target Slot

apply_feedback_when.

Generic Reader: activereset-attempts (object)
Generic Writer: (setf activereset-attempts) (object)
Package

rpcq.

Methods
Reader Method: activereset-attempts ((activereset activereset))
Writer Method: (setf activereset-attempts) ((activereset activereset))

The number of times to repeat the active reset sequence.

Source

core-messages.lisp.

Target Slot

attempts.

Generic Reader: activereset-feedback_duration (object)
Generic Writer: (setf activereset-feedback_duration) (object)
Package

rpcq.

Methods
Reader Method: activereset-feedback_duration ((activereset activereset))
Writer Method: (setf activereset-feedback_duration) ((activereset activereset))

The duration of feedback block in [seconds]

Source

core-messages.lisp.

Target Slot

feedback_duration.

Generic Reader: activereset-feedback_instructions (object)
Generic Writer: (setf activereset-feedback_instructions) (object)
Package

rpcq.

Methods
Reader Method: activereset-feedback_instructions ((activereset activereset))
Writer Method: (setf activereset-feedback_instructions) ((activereset activereset))

The ordered sequence of scheduled feedback instructions.

Source

core-messages.lisp.

Target Slot

feedback_instructions.

Generic Reader: activereset-measurement_bit (object)
Generic Writer: (setf activereset-measurement_bit) (object)
Package

rpcq.

Methods
Reader Method: activereset-measurement_bit ((activereset activereset))
Writer Method: (setf activereset-measurement_bit) ((activereset activereset))

The address of the readout bit to condition the
feedback on. The bit is first accessed after measurement_duration has elapsed.

Source

core-messages.lisp.

Target Slot

measurement_bit.

Generic Reader: activereset-measurement_duration (object)
Generic Writer: (setf activereset-measurement_duration) (object)
Package

rpcq.

Methods
Reader Method: activereset-measurement_duration ((activereset activereset))
Writer Method: (setf activereset-measurement_duration) ((activereset activereset))

The duration of measurement block in [seconds]. The
measurement bit is expected to have arrived on the QGS after this time relative to the overall start of the ActiveReset block.

Source

core-messages.lisp.

Target Slot

measurement_duration.

Generic Reader: activereset-measurement_instructions (object)
Generic Writer: (setf activereset-measurement_instructions) (object)
Package

rpcq.

Methods
Reader Method: activereset-measurement_instructions ((activereset activereset))
Writer Method: (setf activereset-measurement_instructions) ((activereset activereset))

The ordered sequence of scheduled measurement instructions.

Source

core-messages.lisp.

Target Slot

measurement_instructions.

Generic Reader: activereset-time (object)
Generic Writer: (setf activereset-time) (object)
Package

rpcq.

Methods
Reader Method: activereset-time ((activereset activereset))
Writer Method: (setf activereset-time) ((activereset activereset))

Time at which the ActiveReset begins in [seconds].

Source

core-messages.lisp.

Target Slot

time.

Generic Reader: awg-channel-delay (object)
Generic Writer: (setf awg-channel-delay) (object)
Package

rpcq.

Methods
Reader Method: awg-channel-delay ((awgchannel awgchannel))
Writer Method: (setf awg-channel-delay) ((awgchannel awgchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: awg-channel-direction (object)
Generic Writer: (setf awg-channel-direction) (object)
Package

rpcq.

Methods
Reader Method: awg-channel-direction ((awgchannel awgchannel))
Writer Method: (setf awg-channel-direction) ((awgchannel awgchannel))

’rx’ or ’tx’

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: awg-channel-gain (object)
Generic Writer: (setf awg-channel-gain) (object)
Package

rpcq.

Methods
Reader Method: awg-channel-gain ((awgchannel awgchannel))
Writer Method: (setf awg-channel-gain) ((awgchannel awgchannel))

If there is an amplifier, the amplifier gain [dB].

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: awg-channel-lo-frequency (object)
Generic Writer: (setf awg-channel-lo-frequency) (object)
Package

rpcq.

Methods
Reader Method: awg-channel-lo-frequency ((awgchannel awgchannel))
Writer Method: (setf awg-channel-lo-frequency) ((awgchannel awgchannel))

The local oscillator frequency [Hz] of the channel.

Source

core-messages.lisp.

Target Slot

lo_frequency.

Generic Reader: awg-channel-sample-rate (object)
Generic Writer: (setf awg-channel-sample-rate) (object)
Package

rpcq.

Methods
Reader Method: awg-channel-sample-rate ((awgchannel awgchannel))
Writer Method: (setf awg-channel-sample-rate) ((awgchannel awgchannel))

The sampling rate [Hz] of the associated DAC/ADC component.

Source

core-messages.lisp.

Target Slot

sample_rate.

Generic Reader: awgchannel-delay (object)
Generic Writer: (setf awgchannel-delay) (object)
Package

rpcq.

Methods
Reader Method: awgchannel-delay ((awgchannel awgchannel))
Writer Method: (setf awgchannel-delay) ((awgchannel awgchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: awgchannel-direction (object)
Generic Writer: (setf awgchannel-direction) (object)
Package

rpcq.

Methods
Reader Method: awgchannel-direction ((awgchannel awgchannel))
Writer Method: (setf awgchannel-direction) ((awgchannel awgchannel))

’rx’ or ’tx’

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: awgchannel-gain (object)
Generic Writer: (setf awgchannel-gain) (object)
Package

rpcq.

Methods
Reader Method: awgchannel-gain ((awgchannel awgchannel))
Writer Method: (setf awgchannel-gain) ((awgchannel awgchannel))

If there is an amplifier, the amplifier gain [dB].

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: awgchannel-lo_frequency (object)
Generic Writer: (setf awgchannel-lo_frequency) (object)
Package

rpcq.

Methods
Reader Method: awgchannel-lo_frequency ((awgchannel awgchannel))
Writer Method: (setf awgchannel-lo_frequency) ((awgchannel awgchannel))

The local oscillator frequency [Hz] of the channel.

Source

core-messages.lisp.

Target Slot

lo_frequency.

Generic Reader: awgchannel-sample_rate (object)
Generic Writer: (setf awgchannel-sample_rate) (object)
Package

rpcq.

Methods
Reader Method: awgchannel-sample_rate ((awgchannel awgchannel))
Writer Method: (setf awgchannel-sample_rate) ((awgchannel awgchannel))

The sampling rate [Hz] of the associated DAC/ADC component.

Source

core-messages.lisp.

Target Slot

sample_rate.

Generic Reader: binary-executable-request-num-shots (object)
Generic Writer: (setf binary-executable-request-num-shots) (object)
Package

rpcq.

Methods
Reader Method: binary-executable-request-num-shots ((binaryexecutablerequest binaryexecutablerequest))
Writer Method: (setf binary-executable-request-num-shots) ((binaryexecutablerequest binaryexecutablerequest))

The number of times to repeat the program.

Source

messages.lisp.

Target Slot

num_shots.

Generic Reader: binary-executable-request-quil (object)
Generic Writer: (setf binary-executable-request-quil) (object)
Package

rpcq.

Methods
Reader Method: binary-executable-request-quil ((binaryexecutablerequest binaryexecutablerequest))
Writer Method: (setf binary-executable-request-quil) ((binaryexecutablerequest binaryexecutablerequest))

Native Quil to be translated into an executable program.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: binary-executable-response-memory-descriptors (object)
Generic Writer: (setf binary-executable-response-memory-descriptors) (object)
Package

rpcq.

Methods
Reader Method: binary-executable-response-memory-descriptors ((binaryexecutableresponse binaryexecutableresponse))
Writer Method: (setf binary-executable-response-memory-descriptors) ((binaryexecutableresponse binaryexecutableresponse))

Internal field for constructing patch tables.

Source

messages.lisp.

Target Slot

memory_descriptors.

Generic Reader: binary-executable-response-program (object)
Generic Writer: (setf binary-executable-response-program) (object)
Package

rpcq.

Methods
Reader Method: binary-executable-response-program ((binaryexecutableresponse binaryexecutableresponse))
Writer Method: (setf binary-executable-response-program) ((binaryexecutableresponse binaryexecutableresponse))

Execution settings and sequencer binaries.

Source

messages.lisp.

Target Slot

program.

Generic Reader: binary-executable-response-ro-sources (object)
Generic Writer: (setf binary-executable-response-ro-sources) (object)
Package

rpcq.

Methods
Reader Method: binary-executable-response-ro-sources ((binaryexecutableresponse binaryexecutableresponse))
Writer Method: (setf binary-executable-response-ro-sources) ((binaryexecutableresponse binaryexecutableresponse))

Internal field for reshaping returned buffers.

Source

messages.lisp.

Target Slot

ro_sources.

Generic Reader: binaryexecutablerequest-num_shots (object)
Generic Writer: (setf binaryexecutablerequest-num_shots) (object)
Package

rpcq.

Methods
Reader Method: binaryexecutablerequest-num_shots ((binaryexecutablerequest binaryexecutablerequest))
Writer Method: (setf binaryexecutablerequest-num_shots) ((binaryexecutablerequest binaryexecutablerequest))

The number of times to repeat the program.

Source

messages.lisp.

Target Slot

num_shots.

Generic Reader: binaryexecutablerequest-quil (object)
Generic Writer: (setf binaryexecutablerequest-quil) (object)
Package

rpcq.

Methods
Reader Method: binaryexecutablerequest-quil ((binaryexecutablerequest binaryexecutablerequest))
Writer Method: (setf binaryexecutablerequest-quil) ((binaryexecutablerequest binaryexecutablerequest))

Native Quil to be translated into an executable program.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: binaryexecutableresponse-memory_descriptors (object)
Generic Writer: (setf binaryexecutableresponse-memory_descriptors) (object)
Package

rpcq.

Methods
Reader Method: binaryexecutableresponse-memory_descriptors ((binaryexecutableresponse binaryexecutableresponse))
Writer Method: (setf binaryexecutableresponse-memory_descriptors) ((binaryexecutableresponse binaryexecutableresponse))

Internal field for constructing patch tables.

Source

messages.lisp.

Target Slot

memory_descriptors.

Generic Reader: binaryexecutableresponse-program (object)
Generic Writer: (setf binaryexecutableresponse-program) (object)
Package

rpcq.

Methods
Reader Method: binaryexecutableresponse-program ((binaryexecutableresponse binaryexecutableresponse))
Writer Method: (setf binaryexecutableresponse-program) ((binaryexecutableresponse binaryexecutableresponse))

Execution settings and sequencer binaries.

Source

messages.lisp.

Target Slot

program.

Generic Reader: binaryexecutableresponse-ro_sources (object)
Generic Writer: (setf binaryexecutableresponse-ro_sources) (object)
Package

rpcq.

Methods
Reader Method: binaryexecutableresponse-ro_sources ((binaryexecutableresponse binaryexecutableresponse))
Writer Method: (setf binaryexecutableresponse-ro_sources) ((binaryexecutableresponse binaryexecutableresponse))

Internal field for reshaping returned buffers.

Source

messages.lisp.

Target Slot

ro_sources.

Generic Reader: capture-detuning (object)
Generic Writer: (setf capture-detuning) (object)
Package

rpcq.

Methods
Reader Method: capture-detuning ((capture capture))
Writer Method: (setf capture-detuning) ((capture capture))

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: capture-detuning (object)
Generic Writer: (setf capture-detuning) (object)
Package

rpcq.

Methods
Reader Method: capture-detuning ((capture capture))
Writer Method: (setf capture-detuning) ((capture capture))

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: capture-duration (object)
Generic Writer: (setf capture-duration) (object)
Package

rpcq.

Methods
Reader Method: capture-duration ((capture capture))
Writer Method: (setf capture-duration) ((capture capture))

The duration of the acquisition in [seconds]

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: capture-duration (object)
Generic Writer: (setf capture-duration) (object)
Package

rpcq.

Methods
Reader Method: capture-duration ((capture capture))
Writer Method: (setf capture-duration) ((capture capture))

The duration of the acquisition in [seconds]

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: capture-filters (object)
Generic Writer: (setf capture-filters) (object)
Package

rpcq.

Methods
Reader Method: capture-filters ((capture capture))
Writer Method: (setf capture-filters) ((capture capture))

An ordered list of labels of filter kernels to apply to the captured waveform.

Source

core-messages.lisp.

Target Slot

filters.

Generic Reader: capture-filters (object)
Generic Writer: (setf capture-filters) (object)
Package

rpcq.

Methods
Reader Method: capture-filters ((capture capture))
Writer Method: (setf capture-filters) ((capture capture))

An ordered list of labels of filter kernels to apply to the captured waveform.

Source

core-messages.lisp.

Target Slot

filters.

Generic Reader: capture-frame (object)
Generic Writer: (setf capture-frame) (object)
Package

rpcq.

Methods
Reader Method: capture-frame ((capture capture))
Writer Method: (setf capture-frame) ((capture capture))

The rx-frame label on which to trigger the acquisition.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: capture-frame (object)
Generic Writer: (setf capture-frame) (object)
Package

rpcq.

Methods
Reader Method: capture-frame ((capture capture))
Writer Method: (setf capture-frame) ((capture capture))

The rx-frame label on which to trigger the acquisition.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: capture-phase (object)
Generic Writer: (setf capture-phase) (object)
Package

rpcq.

Methods
Reader Method: capture-phase ((capture capture))
Writer Method: (setf capture-phase) ((capture capture))

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: capture-phase (object)
Generic Writer: (setf capture-phase) (object)
Package

rpcq.

Methods
Reader Method: capture-phase ((capture capture))
Writer Method: (setf capture-phase) ((capture capture))

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: capture-send-to-host (object)
Generic Writer: (setf capture-send-to-host) (object)
Package

rpcq.

Methods
Reader Method: capture-send-to-host ((capture capture))
Writer Method: (setf capture-send-to-host) ((capture capture))

Transmit the readout bit back to Lodgepole.
(Unnecessary for fully calibrated active reset captures).

Source

core-messages.lisp.

Target Slot

send_to_host.

Generic Reader: capture-send_to_host (object)
Generic Writer: (setf capture-send_to_host) (object)
Package

rpcq.

Methods
Reader Method: capture-send_to_host ((capture capture))
Writer Method: (setf capture-send_to_host) ((capture capture))

Transmit the readout bit back to Lodgepole.
(Unnecessary for fully calibrated active reset captures).

Source

core-messages.lisp.

Target Slot

send_to_host.

Generic Reader: conjugate-by-clifford-request-clifford (object)
Generic Writer: (setf conjugate-by-clifford-request-clifford) (object)
Package

rpcq.

Methods
Reader Method: conjugate-by-clifford-request-clifford ((conjugatebycliffordrequest conjugatebycliffordrequest))
Writer Method: (setf conjugate-by-clifford-request-clifford) ((conjugatebycliffordrequest conjugatebycliffordrequest))

Specification of a Clifford element.

Source

messages.lisp.

Target Slot

clifford.

Generic Reader: conjugate-by-clifford-request-pauli (object)
Generic Writer: (setf conjugate-by-clifford-request-pauli) (object)
Package

rpcq.

Methods
Reader Method: conjugate-by-clifford-request-pauli ((conjugatebycliffordrequest conjugatebycliffordrequest))
Writer Method: (setf conjugate-by-clifford-request-pauli) ((conjugatebycliffordrequest conjugatebycliffordrequest))

Specification of a Pauli element.

Source

messages.lisp.

Target Slot

pauli.

Generic Reader: conjugate-by-clifford-response-pauli (object)
Generic Writer: (setf conjugate-by-clifford-response-pauli) (object)
Package

rpcq.

Methods
Reader Method: conjugate-by-clifford-response-pauli ((conjugatebycliffordresponse conjugatebycliffordresponse))
Writer Method: (setf conjugate-by-clifford-response-pauli) ((conjugatebycliffordresponse conjugatebycliffordresponse))

Description of the encoded Pauli.

Source

messages.lisp.

Target Slot

pauli.

Generic Reader: conjugate-by-clifford-response-phase (object)
Generic Writer: (setf conjugate-by-clifford-response-phase) (object)
Package

rpcq.

Methods
Reader Method: conjugate-by-clifford-response-phase ((conjugatebycliffordresponse conjugatebycliffordresponse))
Writer Method: (setf conjugate-by-clifford-response-phase) ((conjugatebycliffordresponse conjugatebycliffordresponse))

Encoded global phase factor on the emitted Pauli.

Source

messages.lisp.

Target Slot

phase.

Generic Reader: conjugatebycliffordrequest-clifford (object)
Generic Writer: (setf conjugatebycliffordrequest-clifford) (object)
Package

rpcq.

Methods
Reader Method: conjugatebycliffordrequest-clifford ((conjugatebycliffordrequest conjugatebycliffordrequest))
Writer Method: (setf conjugatebycliffordrequest-clifford) ((conjugatebycliffordrequest conjugatebycliffordrequest))

Specification of a Clifford element.

Source

messages.lisp.

Target Slot

clifford.

Generic Reader: conjugatebycliffordrequest-pauli (object)
Generic Writer: (setf conjugatebycliffordrequest-pauli) (object)
Package

rpcq.

Methods
Reader Method: conjugatebycliffordrequest-pauli ((conjugatebycliffordrequest conjugatebycliffordrequest))
Writer Method: (setf conjugatebycliffordrequest-pauli) ((conjugatebycliffordrequest conjugatebycliffordrequest))

Specification of a Pauli element.

Source

messages.lisp.

Target Slot

pauli.

Generic Reader: conjugatebycliffordresponse-pauli (object)
Generic Writer: (setf conjugatebycliffordresponse-pauli) (object)
Package

rpcq.

Methods
Reader Method: conjugatebycliffordresponse-pauli ((conjugatebycliffordresponse conjugatebycliffordresponse))
Writer Method: (setf conjugatebycliffordresponse-pauli) ((conjugatebycliffordresponse conjugatebycliffordresponse))

Description of the encoded Pauli.

Source

messages.lisp.

Target Slot

pauli.

Generic Reader: conjugatebycliffordresponse-phase (object)
Generic Writer: (setf conjugatebycliffordresponse-phase) (object)
Package

rpcq.

Methods
Reader Method: conjugatebycliffordresponse-phase ((conjugatebycliffordresponse conjugatebycliffordresponse))
Writer Method: (setf conjugatebycliffordresponse-phase) ((conjugatebycliffordresponse conjugatebycliffordresponse))

Encoded global phase factor on the emitted Pauli.

Source

messages.lisp.

Target Slot

phase.

Generic Reader: cw-channel-channel-index (object)
Generic Writer: (setf cw-channel-channel-index) (object)
Package

rpcq.

Methods
Reader Method: cw-channel-channel-index ((cwchannel cwchannel))
Writer Method: (setf cw-channel-channel-index) ((cwchannel cwchannel))

The zero-indexed channel of the generator’s output.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: cw-channel-rf-output-enabled (object)
Generic Writer: (setf cw-channel-rf-output-enabled) (object)
Package

rpcq.

Methods
Reader Method: cw-channel-rf-output-enabled ((cwchannel cwchannel))
Writer Method: (setf cw-channel-rf-output-enabled) ((cwchannel cwchannel))

The state (on/off) of CW generator’s output.

Source

core-messages.lisp.

Target Slot

rf_output_enabled.

Generic Reader: cw-channel-rf-output-frequency (object)
Generic Writer: (setf cw-channel-rf-output-frequency) (object)
Package

rpcq.

Methods
Reader Method: cw-channel-rf-output-frequency ((cwchannel cwchannel))
Writer Method: (setf cw-channel-rf-output-frequency) ((cwchannel cwchannel))

The CW generator’s output frequency [Hz].

Source

core-messages.lisp.

Target Slot

rf_output_frequency.

Generic Reader: cw-channel-rf-output-power (object)
Generic Writer: (setf cw-channel-rf-output-power) (object)
Package

rpcq.

Methods
Reader Method: cw-channel-rf-output-power ((cwchannel cwchannel))
Writer Method: (setf cw-channel-rf-output-power) ((cwchannel cwchannel))

The power of CW generator’s output [dBm].

Source

core-messages.lisp.

Target Slot

rf_output_power.

Generic Reader: cw-frequency-sweep-measure (object)
Generic Writer: (setf cw-frequency-sweep-measure) (object)
Package

rpcq.

Methods
Reader Method: cw-frequency-sweep-measure ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cw-frequency-sweep-measure) ((cwfrequencysweep cwfrequencysweep))

Measure port number

Source

core-messages.lisp.

Target Slot

measure.

Generic Reader: cw-frequency-sweep-num-pts (object)
Generic Writer: (setf cw-frequency-sweep-num-pts) (object)
Package

rpcq.

Methods
Reader Method: cw-frequency-sweep-num-pts ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cw-frequency-sweep-num-pts) ((cwfrequencysweep cwfrequencysweep))

Number of frequency points to sample, cast to int.

Source

core-messages.lisp.

Target Slot

num_pts.

Generic Reader: cw-frequency-sweep-source (object)
Generic Writer: (setf cw-frequency-sweep-source) (object)
Package

rpcq.

Methods
Reader Method: cw-frequency-sweep-source ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cw-frequency-sweep-source) ((cwfrequencysweep cwfrequencysweep))

Source port number

Source

core-messages.lisp.

Target Slot

source.

Generic Reader: cw-frequency-sweep-start (object)
Generic Writer: (setf cw-frequency-sweep-start) (object)
Package

rpcq.

Methods
Reader Method: cw-frequency-sweep-start ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cw-frequency-sweep-start) ((cwfrequencysweep cwfrequencysweep))

Start frequency of the sweep, in Hz

Source

core-messages.lisp.

Target Slot

start.

Generic Reader: cw-frequency-sweep-stop (object)
Generic Writer: (setf cw-frequency-sweep-stop) (object)
Package

rpcq.

Methods
Reader Method: cw-frequency-sweep-stop ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cw-frequency-sweep-stop) ((cwfrequencysweep cwfrequencysweep))

Stop frequency of the sweep, in Hz

Source

core-messages.lisp.

Target Slot

stop.

Generic Reader: cwchannel-channel_index (object)
Generic Writer: (setf cwchannel-channel_index) (object)
Package

rpcq.

Methods
Reader Method: cwchannel-channel_index ((cwchannel cwchannel))
Writer Method: (setf cwchannel-channel_index) ((cwchannel cwchannel))

The zero-indexed channel of the generator’s output.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: cwchannel-rf_output_enabled (object)
Generic Writer: (setf cwchannel-rf_output_enabled) (object)
Package

rpcq.

Methods
Reader Method: cwchannel-rf_output_enabled ((cwchannel cwchannel))
Writer Method: (setf cwchannel-rf_output_enabled) ((cwchannel cwchannel))

The state (on/off) of CW generator’s output.

Source

core-messages.lisp.

Target Slot

rf_output_enabled.

Generic Reader: cwchannel-rf_output_frequency (object)
Generic Writer: (setf cwchannel-rf_output_frequency) (object)
Package

rpcq.

Methods
Reader Method: cwchannel-rf_output_frequency ((cwchannel cwchannel))
Writer Method: (setf cwchannel-rf_output_frequency) ((cwchannel cwchannel))

The CW generator’s output frequency [Hz].

Source

core-messages.lisp.

Target Slot

rf_output_frequency.

Generic Reader: cwchannel-rf_output_power (object)
Generic Writer: (setf cwchannel-rf_output_power) (object)
Package

rpcq.

Methods
Reader Method: cwchannel-rf_output_power ((cwchannel cwchannel))
Writer Method: (setf cwchannel-rf_output_power) ((cwchannel cwchannel))

The power of CW generator’s output [dBm].

Source

core-messages.lisp.

Target Slot

rf_output_power.

Generic Reader: cwfrequencysweep-measure (object)
Generic Writer: (setf cwfrequencysweep-measure) (object)
Package

rpcq.

Methods
Reader Method: cwfrequencysweep-measure ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cwfrequencysweep-measure) ((cwfrequencysweep cwfrequencysweep))

Measure port number

Source

core-messages.lisp.

Target Slot

measure.

Generic Reader: cwfrequencysweep-num_pts (object)
Generic Writer: (setf cwfrequencysweep-num_pts) (object)
Package

rpcq.

Methods
Reader Method: cwfrequencysweep-num_pts ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cwfrequencysweep-num_pts) ((cwfrequencysweep cwfrequencysweep))

Number of frequency points to sample, cast to int.

Source

core-messages.lisp.

Target Slot

num_pts.

Generic Reader: cwfrequencysweep-source (object)
Generic Writer: (setf cwfrequencysweep-source) (object)
Package

rpcq.

Methods
Reader Method: cwfrequencysweep-source ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cwfrequencysweep-source) ((cwfrequencysweep cwfrequencysweep))

Source port number

Source

core-messages.lisp.

Target Slot

source.

Generic Reader: cwfrequencysweep-start (object)
Generic Writer: (setf cwfrequencysweep-start) (object)
Package

rpcq.

Methods
Reader Method: cwfrequencysweep-start ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cwfrequencysweep-start) ((cwfrequencysweep cwfrequencysweep))

Start frequency of the sweep, in Hz

Source

core-messages.lisp.

Target Slot

start.

Generic Reader: cwfrequencysweep-stop (object)
Generic Writer: (setf cwfrequencysweep-stop) (object)
Package

rpcq.

Methods
Reader Method: cwfrequencysweep-stop ((cwfrequencysweep cwfrequencysweep))
Writer Method: (setf cwfrequencysweep-stop) ((cwfrequencysweep cwfrequencysweep))

Stop frequency of the sweep, in Hz

Source

core-messages.lisp.

Target Slot

stop.

Generic Reader: data-axis-name (object)
Generic Writer: (setf data-axis-name) (object)
Package

rpcq.

Methods
Reader Method: data-axis-name ((dataaxis dataaxis))
Writer Method: (setf data-axis-name) ((dataaxis dataaxis))

Label for the axis, e.g., ’time’ or ’shot_index’.

Source

core-messages.lisp.

Target Slot

name.

Generic Reader: data-axis-points (object)
Generic Writer: (setf data-axis-points) (object)
Package

rpcq.

Methods
Reader Method: data-axis-points ((dataaxis dataaxis))
Writer Method: (setf data-axis-points) ((dataaxis dataaxis))

The sequence of values along the axis.

Source

core-messages.lisp.

Target Slot

points.

Generic Reader: dataaxis-name (object)
Generic Writer: (setf dataaxis-name) (object)
Package

rpcq.

Methods
Reader Method: dataaxis-name ((dataaxis dataaxis))
Writer Method: (setf dataaxis-name) ((dataaxis dataaxis))

Label for the axis, e.g., ’time’ or ’shot_index’.

Source

core-messages.lisp.

Target Slot

name.

Generic Reader: dataaxis-points (object)
Generic Writer: (setf dataaxis-points) (object)
Package

rpcq.

Methods
Reader Method: dataaxis-points ((dataaxis dataaxis))
Writer Method: (setf dataaxis-points) ((dataaxis dataaxis))

The sequence of values along the axis.

Source

core-messages.lisp.

Target Slot

points.

Generic Reader: debug-message-frame (object)
Generic Writer: (setf debug-message-frame) (object)
Package

rpcq.

Methods
Reader Method: debug-message-frame ((debugmessage debugmessage))
Writer Method: (setf debug-message-frame) ((debugmessage debugmessage))

The frame label that owns this debug message.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: debug-message-message (object)
Generic Writer: (setf debug-message-message) (object)
Package

rpcq.

Methods
Reader Method: debug-message-message ((debugmessage debugmessage))
Writer Method: (setf debug-message-message) ((debugmessage debugmessage))

The 2-byte wide debug message to emit.

Source

core-messages.lisp.

Target Slot

message.

Generic Reader: debugmessage-frame (object)
Generic Writer: (setf debugmessage-frame) (object)
Package

rpcq.

Methods
Reader Method: debugmessage-frame ((debugmessage debugmessage))
Writer Method: (setf debugmessage-frame) ((debugmessage debugmessage))

The frame label that owns this debug message.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: debugmessage-message (object)
Generic Writer: (setf debugmessage-message) (object)
Package

rpcq.

Methods
Reader Method: debugmessage-message ((debugmessage debugmessage))
Writer Method: (setf debugmessage-message) ((debugmessage debugmessage))

The 2-byte wide debug message to emit.

Source

core-messages.lisp.

Target Slot

message.

Generic Reader: deployed-rack-instruments (object)
Generic Writer: (setf deployed-rack-instruments) (object)
Package

rpcq.

Methods
Reader Method: deployed-rack-instruments ((deployedrack deployedrack))
Writer Method: (setf deployed-rack-instruments) ((deployedrack deployedrack))

Mapping of instrument name to instrument settings.

Source

core-messages.lisp.

Target Slot

instruments.

Generic Reader: deployed-rack-qpu (object)
Generic Writer: (setf deployed-rack-qpu) (object)
Package

rpcq.

Methods
Reader Method: deployed-rack-qpu ((deployedrack deployedrack))
Writer Method: (setf deployed-rack-qpu) ((deployedrack deployedrack))

Information about the QPU.

Source

core-messages.lisp.

Target Slot

qpu.

Generic Reader: deployed-rack-rack-meta (object)
Generic Writer: (setf deployed-rack-rack-meta) (object)
Package

rpcq.

Methods
Reader Method: deployed-rack-rack-meta ((deployedrack deployedrack))
Writer Method: (setf deployed-rack-rack-meta) ((deployedrack deployedrack))

Meta information about the deployed rack.

Source

core-messages.lisp.

Target Slot

rack_meta.

Generic Reader: deployedrack-instruments (object)
Generic Writer: (setf deployedrack-instruments) (object)
Package

rpcq.

Methods
Reader Method: deployedrack-instruments ((deployedrack deployedrack))
Writer Method: (setf deployedrack-instruments) ((deployedrack deployedrack))

Mapping of instrument name to instrument settings.

Source

core-messages.lisp.

Target Slot

instruments.

Generic Reader: deployedrack-qpu (object)
Generic Writer: (setf deployedrack-qpu) (object)
Package

rpcq.

Methods
Reader Method: deployedrack-qpu ((deployedrack deployedrack))
Writer Method: (setf deployedrack-qpu) ((deployedrack deployedrack))

Information about the QPU.

Source

core-messages.lisp.

Target Slot

qpu.

Generic Reader: deployedrack-rack_meta (object)
Generic Writer: (setf deployedrack-rack_meta) (object)
Package

rpcq.

Methods
Reader Method: deployedrack-rack_meta ((deployedrack deployedrack))
Writer Method: (setf deployedrack-rack_meta) ((deployedrack deployedrack))

Meta information about the deployed rack.

Source

core-messages.lisp.

Target Slot

rack_meta.

Generic Reader: drag-gaussian-waveform-alpha (object)
Generic Writer: (setf drag-gaussian-waveform-alpha) (object)
Package

rpcq.

Methods
Reader Method: drag-gaussian-waveform-alpha ((draggaussianwaveform draggaussianwaveform))
Writer Method: (setf drag-gaussian-waveform-alpha) ((draggaussianwaveform draggaussianwaveform))

Dimensionless DRAG parameter

Source

core-messages.lisp.

Target Slot

alpha.

Generic Reader: drag-gaussian-waveform-anh (object)
Generic Writer: (setf drag-gaussian-waveform-anh) (object)
Package

rpcq.

Methods
Reader Method: drag-gaussian-waveform-anh ((draggaussianwaveform draggaussianwaveform))
Writer Method: (setf drag-gaussian-waveform-anh) ((draggaussianwaveform draggaussianwaveform))

Anharmonicity of the qubit, f01-f12 in (Hz)

Source

core-messages.lisp.

Target Slot

anh.

Generic Reader: drag-gaussian-waveform-fwhm (object)
Generic Writer: (setf drag-gaussian-waveform-fwhm) (object)
Package

rpcq.

Methods
Reader Method: drag-gaussian-waveform-fwhm ((draggaussianwaveform draggaussianwaveform))
Writer Method: (setf drag-gaussian-waveform-fwhm) ((draggaussianwaveform draggaussianwaveform))

Full Width Half Max shape paramter in seconds

Source

core-messages.lisp.

Target Slot

fwhm.

Generic Reader: drag-gaussian-waveform-t0 (object)
Generic Writer: (setf drag-gaussian-waveform-t0) (object)
Package

rpcq.

Methods
Reader Method: drag-gaussian-waveform-t0 ((draggaussianwaveform draggaussianwaveform))
Writer Method: (setf drag-gaussian-waveform-t0) ((draggaussianwaveform draggaussianwaveform))

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Source

core-messages.lisp.

Target Slot

t0.

Generic Reader: draggaussianwaveform-alpha (object)
Generic Writer: (setf draggaussianwaveform-alpha) (object)
Package

rpcq.

Methods
Reader Method: draggaussianwaveform-alpha ((draggaussianwaveform draggaussianwaveform))
Writer Method: (setf draggaussianwaveform-alpha) ((draggaussianwaveform draggaussianwaveform))

Dimensionless DRAG parameter

Source

core-messages.lisp.

Target Slot

alpha.

Generic Reader: draggaussianwaveform-anh (object)
Generic Writer: (setf draggaussianwaveform-anh) (object)
Package

rpcq.

Methods
Reader Method: draggaussianwaveform-anh ((draggaussianwaveform draggaussianwaveform))
Writer Method: (setf draggaussianwaveform-anh) ((draggaussianwaveform draggaussianwaveform))

Anharmonicity of the qubit, f01-f12 in (Hz)

Source

core-messages.lisp.

Target Slot

anh.

Generic Reader: draggaussianwaveform-fwhm (object)
Generic Writer: (setf draggaussianwaveform-fwhm) (object)
Package

rpcq.

Methods
Reader Method: draggaussianwaveform-fwhm ((draggaussianwaveform draggaussianwaveform))
Writer Method: (setf draggaussianwaveform-fwhm) ((draggaussianwaveform draggaussianwaveform))

Full Width Half Max shape paramter in seconds

Source

core-messages.lisp.

Target Slot

fwhm.

Generic Reader: draggaussianwaveform-t0 (object)
Generic Writer: (setf draggaussianwaveform-t0) (object)
Package

rpcq.

Methods
Reader Method: draggaussianwaveform-t0 ((draggaussianwaveform draggaussianwaveform))
Writer Method: (setf draggaussianwaveform-t0) ((draggaussianwaveform draggaussianwaveform))

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Source

core-messages.lisp.

Target Slot

t0.

Generic Reader: erf-square-waveform-pad-left (object)
Generic Writer: (setf erf-square-waveform-pad-left) (object)
Package

rpcq.

Methods
Reader Method: erf-square-waveform-pad-left ((erfsquarewaveform erfsquarewaveform))
Writer Method: (setf erf-square-waveform-pad-left) ((erfsquarewaveform erfsquarewaveform))

Length of zero-amplitude padding before the pulse in seconds.

Source

core-messages.lisp.

Target Slot

pad_left.

Generic Reader: erf-square-waveform-pad-right (object)
Generic Writer: (setf erf-square-waveform-pad-right) (object)
Package

rpcq.

Methods
Reader Method: erf-square-waveform-pad-right ((erfsquarewaveform erfsquarewaveform))
Writer Method: (setf erf-square-waveform-pad-right) ((erfsquarewaveform erfsquarewaveform))

Length of zero-amplitude padding after the pulse in seconds.

Source

core-messages.lisp.

Target Slot

pad_right.

Generic Reader: erf-square-waveform-risetime (object)
Generic Writer: (setf erf-square-waveform-risetime) (object)
Package

rpcq.

Methods
Reader Method: erf-square-waveform-risetime ((erfsquarewaveform erfsquarewaveform))
Writer Method: (setf erf-square-waveform-risetime) ((erfsquarewaveform erfsquarewaveform))

The width of the rise and fall sections in seconds.

Source

core-messages.lisp.

Target Slot

risetime.

Generic Reader: erfsquarewaveform-pad_left (object)
Generic Writer: (setf erfsquarewaveform-pad_left) (object)
Package

rpcq.

Methods
Reader Method: erfsquarewaveform-pad_left ((erfsquarewaveform erfsquarewaveform))
Writer Method: (setf erfsquarewaveform-pad_left) ((erfsquarewaveform erfsquarewaveform))

Length of zero-amplitude padding before the pulse in seconds.

Source

core-messages.lisp.

Target Slot

pad_left.

Generic Reader: erfsquarewaveform-pad_right (object)
Generic Writer: (setf erfsquarewaveform-pad_right) (object)
Package

rpcq.

Methods
Reader Method: erfsquarewaveform-pad_right ((erfsquarewaveform erfsquarewaveform))
Writer Method: (setf erfsquarewaveform-pad_right) ((erfsquarewaveform erfsquarewaveform))

Length of zero-amplitude padding after the pulse in seconds.

Source

core-messages.lisp.

Target Slot

pad_right.

Generic Reader: erfsquarewaveform-risetime (object)
Generic Writer: (setf erfsquarewaveform-risetime) (object)
Package

rpcq.

Methods
Reader Method: erfsquarewaveform-risetime ((erfsquarewaveform erfsquarewaveform))
Writer Method: (setf erfsquarewaveform-risetime) ((erfsquarewaveform erfsquarewaveform))

The width of the rise and fall sections in seconds.

Source

core-messages.lisp.

Target Slot

risetime.

Generic Reader: executor-job-duration (object)
Generic Writer: (setf executor-job-duration) (object)
Package

rpcq.

Methods
Reader Method: executor-job-duration ((executorjob executorjob))
Writer Method: (setf executor-job-duration) ((executorjob executorjob))

The total duration of the program execution in seconds.

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: executor-job-filter-pipeline (object)
Generic Writer: (setf executor-job-filter-pipeline) (object)
Package

rpcq.

Methods
Reader Method: executor-job-filter-pipeline ((executorjob executorjob))
Writer Method: (setf executor-job-filter-pipeline) ((executorjob executorjob))

The filter pipeline to process measured data.

Source

core-messages.lisp.

Target Slot

filter_pipeline.

Generic Reader: executor-job-instrument-settings (object)
Generic Writer: (setf executor-job-instrument-settings) (object)
Package

rpcq.

Methods
Reader Method: executor-job-instrument-settings ((executorjob executorjob))
Writer Method: (setf executor-job-instrument-settings) ((executorjob executorjob))

Dict mapping instrument names to arbitrary instrument settings.

Source

core-messages.lisp.

Target Slot

instrument_settings.

Generic Reader: executor-job-receivers (object)
Generic Writer: (setf executor-job-receivers) (object)
Package

rpcq.

Methods
Reader Method: executor-job-receivers ((executorjob executorjob))
Writer Method: (setf executor-job-receivers) ((executorjob executorjob))

Dict mapping stream names to receiver settings.

Source

core-messages.lisp.

Target Slot

receivers.

Generic Reader: executor-job-timebomb (object)
Generic Writer: (setf executor-job-timebomb) (object)
Package

rpcq.

Methods
Reader Method: executor-job-timebomb ((executorjob executorjob))
Writer Method: (setf executor-job-timebomb) ((executorjob executorjob))

An optional payload used to match this job with a particular execution target.

Source

core-messages.lisp.

Target Slot

timebomb.

Generic Reader: executorjob-duration (object)
Generic Writer: (setf executorjob-duration) (object)
Package

rpcq.

Methods
Reader Method: executorjob-duration ((executorjob executorjob))
Writer Method: (setf executorjob-duration) ((executorjob executorjob))

The total duration of the program execution in seconds.

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: executorjob-filter_pipeline (object)
Generic Writer: (setf executorjob-filter_pipeline) (object)
Package

rpcq.

Methods
Reader Method: executorjob-filter_pipeline ((executorjob executorjob))
Writer Method: (setf executorjob-filter_pipeline) ((executorjob executorjob))

The filter pipeline to process measured data.

Source

core-messages.lisp.

Target Slot

filter_pipeline.

Generic Reader: executorjob-instrument_settings (object)
Generic Writer: (setf executorjob-instrument_settings) (object)
Package

rpcq.

Methods
Reader Method: executorjob-instrument_settings ((executorjob executorjob))
Writer Method: (setf executorjob-instrument_settings) ((executorjob executorjob))

Dict mapping instrument names to arbitrary instrument settings.

Source

core-messages.lisp.

Target Slot

instrument_settings.

Generic Reader: executorjob-receivers (object)
Generic Writer: (setf executorjob-receivers) (object)
Package

rpcq.

Methods
Reader Method: executorjob-receivers ((executorjob executorjob))
Writer Method: (setf executorjob-receivers) ((executorjob executorjob))

Dict mapping stream names to receiver settings.

Source

core-messages.lisp.

Target Slot

receivers.

Generic Reader: executorjob-timebomb (object)
Generic Writer: (setf executorjob-timebomb) (object)
Package

rpcq.

Methods
Reader Method: executorjob-timebomb ((executorjob executorjob))
Writer Method: (setf executorjob-timebomb) ((executorjob executorjob))

An optional payload used to match this job with a particular execution target.

Source

core-messages.lisp.

Target Slot

timebomb.

Generic Reader: filter-kernel-bias (object)
Generic Writer: (setf filter-kernel-bias) (object)
Package

rpcq.

Methods
Reader Method: filter-kernel-bias ((filterkernel filterkernel))
Writer Method: (setf filter-kernel-bias) ((filterkernel filterkernel))

The kernel is offset by this real value. Can be used to ensure the decision threshold lies at 0.0.

Source

core-messages.lisp.

Target Slot

bias.

Generic Reader: filter-kernel-iqs (object)
Generic Writer: (setf filter-kernel-iqs) (object)
Package

rpcq.

Methods
Reader Method: filter-kernel-iqs ((filterkernel filterkernel))
Writer Method: (setf filter-kernel-iqs) ((filterkernel filterkernel))

The raw kernel coefficients, alternating real and imaginary parts.

Source

core-messages.lisp.

Target Slot

iqs.

Generic Reader: filter-node-filter-type (object)
Generic Writer: (setf filter-node-filter-type) (object)
Package

rpcq.

Methods
Reader Method: filter-node-filter-type ((filternode filternode))
Writer Method: (setf filter-node-filter-type) ((filternode filternode))

The type (class name) of the filter.

Source

core-messages.lisp.

Target Slot

filter_type.

Generic Reader: filter-node-module (object)
Generic Writer: (setf filter-node-module) (object)
Package

rpcq.

Methods
Reader Method: filter-node-module ((filternode filternode))
Writer Method: (setf filter-node-module) ((filternode filternode))

Absolute python module import path in which the filter class is defined.

Source

core-messages.lisp.

Target Slot

module.

Generic Reader: filter-node-params (object)
Generic Writer: (setf filter-node-params) (object)
Package

rpcq.

Methods
Reader Method: filter-node-params ((filternode filternode))
Writer Method: (setf filter-node-params) ((filternode filternode))

Additional filter parameters.

Source

core-messages.lisp.

Target Slot

params.

Generic Reader: filter-node-publish (object)
Generic Writer: (setf filter-node-publish) (object)
Package

rpcq.

Methods
Reader Method: filter-node-publish ((filternode filternode))
Writer Method: (setf filter-node-publish) ((filternode filternode))

If True, return the output of this node with the job results (and publish a stream for it).

Source

core-messages.lisp.

Target Slot

publish.

Generic Reader: filter-node-source (object)
Generic Writer: (setf filter-node-source) (object)
Package

rpcq.

Methods
Reader Method: filter-node-source ((filternode filternode))
Writer Method: (setf filter-node-source) ((filternode filternode))

Filter node label of the input to this node.

Source

core-messages.lisp.

Target Slot

source.

Generic Reader: filterkernel-bias (object)
Generic Writer: (setf filterkernel-bias) (object)
Package

rpcq.

Methods
Reader Method: filterkernel-bias ((filterkernel filterkernel))
Writer Method: (setf filterkernel-bias) ((filterkernel filterkernel))

The kernel is offset by this real value. Can be used to ensure the decision threshold lies at 0.0.

Source

core-messages.lisp.

Target Slot

bias.

Generic Reader: filterkernel-iqs (object)
Generic Writer: (setf filterkernel-iqs) (object)
Package

rpcq.

Methods
Reader Method: filterkernel-iqs ((filterkernel filterkernel))
Writer Method: (setf filterkernel-iqs) ((filterkernel filterkernel))

The raw kernel coefficients, alternating real and imaginary parts.

Source

core-messages.lisp.

Target Slot

iqs.

Generic Reader: filternode-filter_type (object)
Generic Writer: (setf filternode-filter_type) (object)
Package

rpcq.

Methods
Reader Method: filternode-filter_type ((filternode filternode))
Writer Method: (setf filternode-filter_type) ((filternode filternode))

The type (class name) of the filter.

Source

core-messages.lisp.

Target Slot

filter_type.

Generic Reader: filternode-module (object)
Generic Writer: (setf filternode-module) (object)
Package

rpcq.

Methods
Reader Method: filternode-module ((filternode filternode))
Writer Method: (setf filternode-module) ((filternode filternode))

Absolute python module import path in which the filter class is defined.

Source

core-messages.lisp.

Target Slot

module.

Generic Reader: filternode-params (object)
Generic Writer: (setf filternode-params) (object)
Package

rpcq.

Methods
Reader Method: filternode-params ((filternode filternode))
Writer Method: (setf filternode-params) ((filternode filternode))

Additional filter parameters.

Source

core-messages.lisp.

Target Slot

params.

Generic Reader: filternode-publish (object)
Generic Writer: (setf filternode-publish) (object)
Package

rpcq.

Methods
Reader Method: filternode-publish ((filternode filternode))
Writer Method: (setf filternode-publish) ((filternode filternode))

If True, return the output of this node with the job results (and publish a stream for it).

Source

core-messages.lisp.

Target Slot

publish.

Generic Reader: filternode-source (object)
Generic Writer: (setf filternode-source) (object)
Package

rpcq.

Methods
Reader Method: filternode-source ((filternode filternode))
Writer Method: (setf filternode-source) ((filternode filternode))

Filter node label of the input to this node.

Source

core-messages.lisp.

Target Slot

source.

Generic Reader: flat-pulse-detuning (object)
Generic Writer: (setf flat-pulse-detuning) (object)
Package

rpcq.

Methods
Reader Method: flat-pulse-detuning ((flatpulse flatpulse))
Writer Method: (setf flat-pulse-detuning) ((flatpulse flatpulse))

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: flat-pulse-duration (object)
Generic Writer: (setf flat-pulse-duration) (object)
Package

rpcq.

Methods
Reader Method: flat-pulse-duration ((flatpulse flatpulse))
Writer Method: (setf flat-pulse-duration) ((flatpulse flatpulse))

The duration of the pulse in [seconds], should be a
multiple of the associated tx-frame’s inverse sample rate.

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: flat-pulse-frame (object)
Generic Writer: (setf flat-pulse-frame) (object)
Package

rpcq.

Methods
Reader Method: flat-pulse-frame ((flatpulse flatpulse))
Writer Method: (setf flat-pulse-frame) ((flatpulse flatpulse))

The tx-frame label on which the pulse is played.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: flat-pulse-iq (object)
Generic Writer: (setf flat-pulse-iq) (object)
Package

rpcq.

Methods
Reader Method: flat-pulse-iq ((flatpulse flatpulse))
Writer Method: (setf flat-pulse-iq) ((flatpulse flatpulse))

The I and Q value of the constant pulse.

Source

core-messages.lisp.

Target Slot

iq.

Generic Reader: flat-pulse-phase (object)
Generic Writer: (setf flat-pulse-phase) (object)
Package

rpcq.

Methods
Reader Method: flat-pulse-phase ((flatpulse flatpulse))
Writer Method: (setf flat-pulse-phase) ((flatpulse flatpulse))

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: flat-pulse-scale (object)
Generic Writer: (setf flat-pulse-scale) (object)
Package

rpcq.

Methods
Reader Method: flat-pulse-scale ((flatpulse flatpulse))
Writer Method: (setf flat-pulse-scale) ((flatpulse flatpulse))

Dimensionless (re-)scaling factor which is applied to the envelope.

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: flat-waveform-iq (object)
Generic Writer: (setf flat-waveform-iq) (object)
Package

rpcq.

Methods
Reader Method: flat-waveform-iq ((flatwaveform flatwaveform))
Writer Method: (setf flat-waveform-iq) ((flatwaveform flatwaveform))

Individual IQ point to hold constant

Source

core-messages.lisp.

Target Slot

iq.

Generic Reader: flatpulse-detuning (object)
Generic Writer: (setf flatpulse-detuning) (object)
Package

rpcq.

Methods
Reader Method: flatpulse-detuning ((flatpulse flatpulse))
Writer Method: (setf flatpulse-detuning) ((flatpulse flatpulse))

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: flatpulse-duration (object)
Generic Writer: (setf flatpulse-duration) (object)
Package

rpcq.

Methods
Reader Method: flatpulse-duration ((flatpulse flatpulse))
Writer Method: (setf flatpulse-duration) ((flatpulse flatpulse))

The duration of the pulse in [seconds], should be a
multiple of the associated tx-frame’s inverse sample rate.

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: flatpulse-frame (object)
Generic Writer: (setf flatpulse-frame) (object)
Package

rpcq.

Methods
Reader Method: flatpulse-frame ((flatpulse flatpulse))
Writer Method: (setf flatpulse-frame) ((flatpulse flatpulse))

The tx-frame label on which the pulse is played.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: flatpulse-iq (object)
Generic Writer: (setf flatpulse-iq) (object)
Package

rpcq.

Methods
Reader Method: flatpulse-iq ((flatpulse flatpulse))
Writer Method: (setf flatpulse-iq) ((flatpulse flatpulse))

The I and Q value of the constant pulse.

Source

core-messages.lisp.

Target Slot

iq.

Generic Reader: flatpulse-phase (object)
Generic Writer: (setf flatpulse-phase) (object)
Package

rpcq.

Methods
Reader Method: flatpulse-phase ((flatpulse flatpulse))
Writer Method: (setf flatpulse-phase) ((flatpulse flatpulse))

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: flatpulse-scale (object)
Generic Writer: (setf flatpulse-scale) (object)
Package

rpcq.

Methods
Reader Method: flatpulse-scale ((flatpulse flatpulse))
Writer Method: (setf flatpulse-scale) ((flatpulse flatpulse))

Dimensionless (re-)scaling factor which is applied to the envelope.

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: flatwaveform-iq (object)
Generic Writer: (setf flatwaveform-iq) (object)
Package

rpcq.

Methods
Reader Method: flatwaveform-iq ((flatwaveform flatwaveform))
Writer Method: (setf flatwaveform-iq) ((flatwaveform flatwaveform))

Individual IQ point to hold constant

Source

core-messages.lisp.

Target Slot

iq.

Generic Reader: frame-direction (object)
Generic Writer: (setf frame-direction) (object)
Package

rpcq.

Methods
Reader Method: frame-direction ((frame frame))
Writer Method: (setf frame-direction) ((frame frame))

’rx’ or ’tx’

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: frame-direction (object)
Generic Writer: (setf frame-direction) (object)
Package

rpcq.

Methods
Reader Method: frame-direction ((frame frame))
Writer Method: (setf frame-direction) ((frame frame))

’rx’ or ’tx’

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: frame-frequency (object)
Generic Writer: (setf frame-frequency) (object)
Package

rpcq.

Methods
Reader Method: frame-frequency ((frame frame))
Writer Method: (setf frame-frequency) ((frame frame))

The frame frequency [Hz]

Source

core-messages.lisp.

Target Slot

frequency.

Generic Reader: frame-frequency (object)
Generic Writer: (setf frame-frequency) (object)
Package

rpcq.

Methods
Reader Method: frame-frequency ((frame frame))
Writer Method: (setf frame-frequency) ((frame frame))

The frame frequency [Hz]

Source

core-messages.lisp.

Target Slot

frequency.

Generic Reader: frame-sample-rate (object)
Generic Writer: (setf frame-sample-rate) (object)
Package

rpcq.

Methods
Reader Method: frame-sample-rate ((frame frame))
Writer Method: (setf frame-sample-rate) ((frame frame))

The sample rate [Hz] of the associated AWG/ADC

Source

core-messages.lisp.

Target Slot

sample_rate.

Generic Reader: frame-sample_rate (object)
Generic Writer: (setf frame-sample_rate) (object)
Package

rpcq.

Methods
Reader Method: frame-sample_rate ((frame frame))
Writer Method: (setf frame-sample_rate) ((frame frame))

The sample rate [Hz] of the associated AWG/ADC

Source

core-messages.lisp.

Target Slot

sample_rate.

Generic Reader: gaussian-waveform-fwhm (object)
Generic Writer: (setf gaussian-waveform-fwhm) (object)
Package

rpcq.

Methods
Reader Method: gaussian-waveform-fwhm ((gaussianwaveform gaussianwaveform))
Writer Method: (setf gaussian-waveform-fwhm) ((gaussianwaveform gaussianwaveform))

Full Width Half Max shape paramter in seconds

Source

core-messages.lisp.

Target Slot

fwhm.

Generic Reader: gaussian-waveform-t0 (object)
Generic Writer: (setf gaussian-waveform-t0) (object)
Package

rpcq.

Methods
Reader Method: gaussian-waveform-t0 ((gaussianwaveform gaussianwaveform))
Writer Method: (setf gaussian-waveform-t0) ((gaussianwaveform gaussianwaveform))

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Source

core-messages.lisp.

Target Slot

t0.

Generic Reader: gaussianwaveform-fwhm (object)
Generic Writer: (setf gaussianwaveform-fwhm) (object)
Package

rpcq.

Methods
Reader Method: gaussianwaveform-fwhm ((gaussianwaveform gaussianwaveform))
Writer Method: (setf gaussianwaveform-fwhm) ((gaussianwaveform gaussianwaveform))

Full Width Half Max shape paramter in seconds

Source

core-messages.lisp.

Target Slot

fwhm.

Generic Reader: gaussianwaveform-t0 (object)
Generic Writer: (setf gaussianwaveform-t0) (object)
Package

rpcq.

Methods
Reader Method: gaussianwaveform-t0 ((gaussianwaveform gaussianwaveform))
Writer Method: (setf gaussianwaveform-t0) ((gaussianwaveform gaussianwaveform))

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Source

core-messages.lisp.

Target Slot

t0.

Generic Reader: get-execution-results-response-buffers (object)
Generic Writer: (setf get-execution-results-response-buffers) (object)
Package

rpcq.

Methods
Reader Method: get-execution-results-response-buffers ((getexecutionresultsresponse getexecutionresultsresponse))
Writer Method: (setf get-execution-results-response-buffers) ((getexecutionresultsresponse getexecutionresultsresponse))

Result buffers for a completed ExecutorJob.

Source

messages.lisp.

Target Slot

buffers.

Generic Reader: get-execution-results-response-execution-duration-microseconds (object)
Generic Writer: (setf get-execution-results-response-execution-duration-microseconds) (object)
Package

rpcq.

Methods
Reader Method: get-execution-results-response-execution-duration-microseconds ((getexecutionresultsresponse getexecutionresultsresponse))
Writer Method: (setf get-execution-results-response-execution-duration-microseconds) ((getexecutionresultsresponse getexecutionresultsresponse))

Duration (in microseconds) ExecutorJob held exclusive access to quantum hardware.

Source

messages.lisp.

Target Slot

execution_duration_microseconds.

Generic Reader: getexecutionresultsresponse-buffers (object)
Generic Writer: (setf getexecutionresultsresponse-buffers) (object)
Package

rpcq.

Methods
Reader Method: getexecutionresultsresponse-buffers ((getexecutionresultsresponse getexecutionresultsresponse))
Writer Method: (setf getexecutionresultsresponse-buffers) ((getexecutionresultsresponse getexecutionresultsresponse))

Result buffers for a completed ExecutorJob.

Source

messages.lisp.

Target Slot

buffers.

Generic Reader: getexecutionresultsresponse-execution_duration_microseconds (object)
Generic Writer: (setf getexecutionresultsresponse-execution_duration_microseconds) (object)
Package

rpcq.

Methods
Reader Method: getexecutionresultsresponse-execution_duration_microseconds ((getexecutionresultsresponse getexecutionresultsresponse))
Writer Method: (setf getexecutionresultsresponse-execution_duration_microseconds) ((getexecutionresultsresponse getexecutionresultsresponse))

Duration (in microseconds) ExecutorJob held exclusive access to quantum hardware.

Source

messages.lisp.

Target Slot

execution_duration_microseconds.

Generic Reader: hermite-gaussian-waveform-alpha (object)
Generic Writer: (setf hermite-gaussian-waveform-alpha) (object)
Package

rpcq.

Methods
Reader Method: hermite-gaussian-waveform-alpha ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermite-gaussian-waveform-alpha) ((hermitegaussianwaveform hermitegaussianwaveform))

Dimensionless DRAG parameter

Source

core-messages.lisp.

Target Slot

alpha.

Generic Reader: hermite-gaussian-waveform-anh (object)
Generic Writer: (setf hermite-gaussian-waveform-anh) (object)
Package

rpcq.

Methods
Reader Method: hermite-gaussian-waveform-anh ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermite-gaussian-waveform-anh) ((hermitegaussianwaveform hermitegaussianwaveform))

Anharmonicity of the qubit, f01-f12 in Hz

Source

core-messages.lisp.

Target Slot

anh.

Generic Reader: hermite-gaussian-waveform-fwhm (object)
Generic Writer: (setf hermite-gaussian-waveform-fwhm) (object)
Package

rpcq.

Methods
Reader Method: hermite-gaussian-waveform-fwhm ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermite-gaussian-waveform-fwhm) ((hermitegaussianwaveform hermitegaussianwaveform))

Full Width Half Max shape paramter in seconds

Source

core-messages.lisp.

Target Slot

fwhm.

Generic Reader: hermite-gaussian-waveform-second-order-hrm-coeff (object)
Generic Writer: (setf hermite-gaussian-waveform-second-order-hrm-coeff) (object)
Package

rpcq.

Methods
Reader Method: hermite-gaussian-waveform-second-order-hrm-coeff ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermite-gaussian-waveform-second-order-hrm-coeff) ((hermitegaussianwaveform hermitegaussianwaveform))

Second order coefficient (see paper)

Source

core-messages.lisp.

Target Slot

second_order_hrm_coeff.

Generic Reader: hermite-gaussian-waveform-t0 (object)
Generic Writer: (setf hermite-gaussian-waveform-t0) (object)
Package

rpcq.

Methods
Reader Method: hermite-gaussian-waveform-t0 ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermite-gaussian-waveform-t0) ((hermitegaussianwaveform hermitegaussianwaveform))

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Source

core-messages.lisp.

Target Slot

t0.

Generic Reader: hermitegaussianwaveform-alpha (object)
Generic Writer: (setf hermitegaussianwaveform-alpha) (object)
Package

rpcq.

Methods
Reader Method: hermitegaussianwaveform-alpha ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermitegaussianwaveform-alpha) ((hermitegaussianwaveform hermitegaussianwaveform))

Dimensionless DRAG parameter

Source

core-messages.lisp.

Target Slot

alpha.

Generic Reader: hermitegaussianwaveform-anh (object)
Generic Writer: (setf hermitegaussianwaveform-anh) (object)
Package

rpcq.

Methods
Reader Method: hermitegaussianwaveform-anh ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermitegaussianwaveform-anh) ((hermitegaussianwaveform hermitegaussianwaveform))

Anharmonicity of the qubit, f01-f12 in Hz

Source

core-messages.lisp.

Target Slot

anh.

Generic Reader: hermitegaussianwaveform-fwhm (object)
Generic Writer: (setf hermitegaussianwaveform-fwhm) (object)
Package

rpcq.

Methods
Reader Method: hermitegaussianwaveform-fwhm ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermitegaussianwaveform-fwhm) ((hermitegaussianwaveform hermitegaussianwaveform))

Full Width Half Max shape paramter in seconds

Source

core-messages.lisp.

Target Slot

fwhm.

Generic Reader: hermitegaussianwaveform-second_order_hrm_coeff (object)
Generic Writer: (setf hermitegaussianwaveform-second_order_hrm_coeff) (object)
Package

rpcq.

Methods
Reader Method: hermitegaussianwaveform-second_order_hrm_coeff ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermitegaussianwaveform-second_order_hrm_coeff) ((hermitegaussianwaveform hermitegaussianwaveform))

Second order coefficient (see paper)

Source

core-messages.lisp.

Target Slot

second_order_hrm_coeff.

Generic Reader: hermitegaussianwaveform-t0 (object)
Generic Writer: (setf hermitegaussianwaveform-t0) (object)
Package

rpcq.

Methods
Reader Method: hermitegaussianwaveform-t0 ((hermitegaussianwaveform hermitegaussianwaveform))
Writer Method: (setf hermitegaussianwaveform-t0) ((hermitegaussianwaveform hermitegaussianwaveform))

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Source

core-messages.lisp.

Target Slot

t0.

Generic Reader: instruction-time (object)
Generic Writer: (setf instruction-time) (object)
Package

rpcq.

Methods
Reader Method: instruction-time ((instruction instruction))
Writer Method: (setf instruction-time) ((instruction instruction))

The time at which the instruction is emitted [in seconds].

Source

core-messages.lisp.

Target Slot

time.

Generic Reader: instruction-time (object)
Generic Writer: (setf instruction-time) (object)
Package

rpcq.

Methods
Reader Method: instruction-time ((instruction instruction))
Writer Method: (setf instruction-time) ((instruction instruction))

The time at which the instruction is emitted [in seconds].

Source

core-messages.lisp.

Target Slot

time.

Generic Reader: instrument-address (object)
Generic Writer: (setf instrument-address) (object)
Package

rpcq.

Methods
Reader Method: instrument-address ((instrument instrument))
Writer Method: (setf instrument-address) ((instrument instrument))

The full address of a QPU.

Source

core-messages.lisp.

Target Slot

address.

Generic Reader: instrument-address (object)
Generic Writer: (setf instrument-address) (object)
Package

rpcq.

Methods
Reader Method: instrument-address ((instrument instrument))
Writer Method: (setf instrument-address) ((instrument instrument))

The full address of a QPU.

Source

core-messages.lisp.

Target Slot

address.

Generic Reader: instrument-channels (object)
Generic Writer: (setf instrument-channels) (object)
Package

rpcq.

Methods
Reader Method: instrument-channels ((instrument instrument))
Writer Method: (setf instrument-channels) ((instrument instrument))

Mapping of channel labels to channel settings

Source

core-messages.lisp.

Target Slot

channels.

Generic Reader: instrument-channels (object)
Generic Writer: (setf instrument-channels) (object)
Package

rpcq.

Methods
Reader Method: instrument-channels ((instrument instrument))
Writer Method: (setf instrument-channels) ((instrument instrument))

Mapping of channel labels to channel settings

Source

core-messages.lisp.

Target Slot

channels.

Generic Reader: instrument-instrument-type (object)
Generic Writer: (setf instrument-instrument-type) (object)
Package

rpcq.

Methods
Reader Method: instrument-instrument-type ((instrument instrument))
Writer Method: (setf instrument-instrument-type) ((instrument instrument))

Instrument type (driver class name).

Source

core-messages.lisp.

Target Slot

instrument_type.

Generic Reader: instrument-instrument_type (object)
Generic Writer: (setf instrument-instrument_type) (object)
Package

rpcq.

Methods
Reader Method: instrument-instrument_type ((instrument instrument))
Writer Method: (setf instrument-instrument_type) ((instrument instrument))

Instrument type (driver class name).

Source

core-messages.lisp.

Target Slot

instrument_type.

Generic Reader: instrument-mnio-connections (object)
Generic Writer: (setf instrument-mnio-connections) (object)
Package

rpcq.

Methods
Reader Method: instrument-mnio-connections ((instrument instrument))
Writer Method: (setf instrument-mnio-connections) ((instrument instrument))

MNIO network connections between Tsunami instruments

Source

core-messages.lisp.

Target Slot

mnio_connections.

Generic Reader: instrument-mnio_connections (object)
Generic Writer: (setf instrument-mnio_connections) (object)
Package

rpcq.

Methods
Reader Method: instrument-mnio_connections ((instrument instrument))
Writer Method: (setf instrument-mnio_connections) ((instrument instrument))

MNIO network connections between Tsunami instruments

Source

core-messages.lisp.

Target Slot

mnio_connections.

Generic Reader: instrument-module (object)
Generic Writer: (setf instrument-module) (object)
Package

rpcq.

Methods
Reader Method: instrument-module ((instrument instrument))
Writer Method: (setf instrument-module) ((instrument instrument))

Full python import path for the module that includes the instrument driver.

Source

core-messages.lisp.

Target Slot

module.

Generic Reader: instrument-module (object)
Generic Writer: (setf instrument-module) (object)
Package

rpcq.

Methods
Reader Method: instrument-module ((instrument instrument))
Writer Method: (setf instrument-module) ((instrument instrument))

Full python import path for the module that includes the instrument driver.

Source

core-messages.lisp.

Target Slot

module.

Generic Reader: instrument-setup (object)
Generic Writer: (setf instrument-setup) (object)
Package

rpcq.

Methods
Reader Method: instrument-setup ((instrument instrument))
Writer Method: (setf instrument-setup) ((instrument instrument))

Any additional information used by the instrument for one-time-setup

Source

core-messages.lisp.

Target Slot

setup.

Generic Reader: instrument-setup (object)
Generic Writer: (setf instrument-setup) (object)
Package

rpcq.

Methods
Reader Method: instrument-setup ((instrument instrument))
Writer Method: (setf instrument-setup) ((instrument instrument))

Any additional information used by the instrument for one-time-setup

Source

core-messages.lisp.

Target Slot

setup.

Generic Reader: instrument-virtual (object)
Generic Writer: (setf instrument-virtual) (object)
Package

rpcq.

Methods
Reader Method: instrument-virtual ((instrument instrument))
Writer Method: (setf instrument-virtual) ((instrument instrument))

Whether the instrument is virtual.

Source

core-messages.lisp.

Target Slot

virtual.

Generic Reader: instrument-virtual (object)
Generic Writer: (setf instrument-virtual) (object)
Package

rpcq.

Methods
Reader Method: instrument-virtual ((instrument instrument))
Writer Method: (setf instrument-virtual) ((instrument instrument))

Whether the instrument is virtual.

Source

core-messages.lisp.

Target Slot

virtual.

Generic Reader: legacy-usrp-sequencer-rx-channel (object)
Generic Writer: (setf legacy-usrp-sequencer-rx-channel) (object)
Package

rpcq.

Methods
Reader Method: legacy-usrp-sequencer-rx-channel ((legacyusrpsequencer legacyusrpsequencer))
Writer Method: (setf legacy-usrp-sequencer-rx-channel) ((legacyusrpsequencer legacyusrpsequencer))

The label of the associated rx channel.

Source

core-messages.lisp.

Target Slot

rx_channel.

Generic Reader: legacy-usrp-sequencer-tx-channel (object)
Generic Writer: (setf legacy-usrp-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: legacy-usrp-sequencer-tx-channel ((legacyusrpsequencer legacyusrpsequencer))
Writer Method: (setf legacy-usrp-sequencer-tx-channel) ((legacyusrpsequencer legacyusrpsequencer))

The label of the associated tx channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: legacyusrpsequencer-rx_channel (object)
Generic Writer: (setf legacyusrpsequencer-rx_channel) (object)
Package

rpcq.

Methods
Reader Method: legacyusrpsequencer-rx_channel ((legacyusrpsequencer legacyusrpsequencer))
Writer Method: (setf legacyusrpsequencer-rx_channel) ((legacyusrpsequencer legacyusrpsequencer))

The label of the associated rx channel.

Source

core-messages.lisp.

Target Slot

rx_channel.

Generic Reader: legacyusrpsequencer-tx_channel (object)
Generic Writer: (setf legacyusrpsequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: legacyusrpsequencer-tx_channel ((legacyusrpsequencer legacyusrpsequencer))
Writer Method: (setf legacyusrpsequencer-tx_channel) ((legacyusrpsequencer legacyusrpsequencer))

The label of the associated tx channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: microwave-source-settings-frequency (object)
Generic Writer: (setf microwave-source-settings-frequency) (object)
Package

rpcq.

Methods
Reader Method: microwave-source-settings-frequency ((microwavesourcesettings microwavesourcesettings))
Writer Method: (setf microwave-source-settings-frequency) ((microwavesourcesettings microwavesourcesettings))

Frequency setting for microwave source (Hz).

Source

core-messages.lisp.

Target Slot

frequency.

Generic Reader: microwave-source-settings-output (object)
Generic Writer: (setf microwave-source-settings-output) (object)
Package

rpcq.

Methods
Reader Method: microwave-source-settings-output ((microwavesourcesettings microwavesourcesettings))
Writer Method: (setf microwave-source-settings-output) ((microwavesourcesettings microwavesourcesettings))

Output setting for microwave source. If true, the source will be turned on.

Source

core-messages.lisp.

Target Slot

output.

Generic Reader: microwave-source-settings-power (object)
Generic Writer: (setf microwave-source-settings-power) (object)
Package

rpcq.

Methods
Reader Method: microwave-source-settings-power ((microwavesourcesettings microwavesourcesettings))
Writer Method: (setf microwave-source-settings-power) ((microwavesourcesettings microwavesourcesettings))

Power setting for microwave source (dBm).

Source

core-messages.lisp.

Target Slot

power.

Generic Reader: microwavesourcesettings-frequency (object)
Generic Writer: (setf microwavesourcesettings-frequency) (object)
Package

rpcq.

Methods
Reader Method: microwavesourcesettings-frequency ((microwavesourcesettings microwavesourcesettings))
Writer Method: (setf microwavesourcesettings-frequency) ((microwavesourcesettings microwavesourcesettings))

Frequency setting for microwave source (Hz).

Source

core-messages.lisp.

Target Slot

frequency.

Generic Reader: microwavesourcesettings-output (object)
Generic Writer: (setf microwavesourcesettings-output) (object)
Package

rpcq.

Methods
Reader Method: microwavesourcesettings-output ((microwavesourcesettings microwavesourcesettings))
Writer Method: (setf microwavesourcesettings-output) ((microwavesourcesettings microwavesourcesettings))

Output setting for microwave source. If true, the source will be turned on.

Source

core-messages.lisp.

Target Slot

output.

Generic Reader: microwavesourcesettings-power (object)
Generic Writer: (setf microwavesourcesettings-power) (object)
Package

rpcq.

Methods
Reader Method: microwavesourcesettings-power ((microwavesourcesettings microwavesourcesettings))
Writer Method: (setf microwavesourcesettings-power) ((microwavesourcesettings microwavesourcesettings))

Power setting for microwave source (dBm).

Source

core-messages.lisp.

Target Slot

power.

Generic Reader: mnio-connection-destination (object)
Generic Writer: (setf mnio-connection-destination) (object)
Package

rpcq.

Methods
Reader Method: mnio-connection-destination ((mnioconnection mnioconnection))
Writer Method: (setf mnio-connection-destination) ((mnioconnection mnioconnection))

The Tsunami where this connection terminates.

Source

core-messages.lisp.

Target Slot

destination.

Generic Reader: mnio-connection-port (object)
Generic Writer: (setf mnio-connection-port) (object)
Package

rpcq.

Methods
Reader Method: mnio-connection-port ((mnioconnection mnioconnection))
Writer Method: (setf mnio-connection-port) ((mnioconnection mnioconnection))

The physical Tsunami MNIO port, indexed from 0, where this connection originates.

Source

core-messages.lisp.

Target Slot

port.

Generic Reader: mnioconnection-destination (object)
Generic Writer: (setf mnioconnection-destination) (object)
Package

rpcq.

Methods
Reader Method: mnioconnection-destination ((mnioconnection mnioconnection))
Writer Method: (setf mnioconnection-destination) ((mnioconnection mnioconnection))

The Tsunami where this connection terminates.

Source

core-messages.lisp.

Target Slot

destination.

Generic Reader: mnioconnection-port (object)
Generic Writer: (setf mnioconnection-port) (object)
Package

rpcq.

Methods
Reader Method: mnioconnection-port ((mnioconnection mnioconnection))
Writer Method: (setf mnioconnection-port) ((mnioconnection mnioconnection))

The physical Tsunami MNIO port, indexed from 0, where this connection originates.

Source

core-messages.lisp.

Target Slot

port.

Generic Reader: native-quil-metadata-final-rewiring (object)
Generic Writer: (setf native-quil-metadata-final-rewiring) (object)
Package

rpcq.

Methods
Reader Method: native-quil-metadata-final-rewiring ((nativequilmetadata nativequilmetadata))
Writer Method: (setf native-quil-metadata-final-rewiring) ((nativequilmetadata nativequilmetadata))

Output qubit index relabeling due to SWAP insertion.

Source

messages.lisp.

Target Slot

final_rewiring.

Generic Reader: native-quil-metadata-gate-depth (object)
Generic Writer: (setf native-quil-metadata-gate-depth) (object)
Package

rpcq.

Methods
Reader Method: native-quil-metadata-gate-depth ((nativequilmetadata nativequilmetadata))
Writer Method: (setf native-quil-metadata-gate-depth) ((nativequilmetadata nativequilmetadata))

Maximum number of successive gates in the native quil program.

Source

messages.lisp.

Target Slot

gate_depth.

Generic Reader: native-quil-metadata-gate-volume (object)
Generic Writer: (setf native-quil-metadata-gate-volume) (object)
Package

rpcq.

Methods
Reader Method: native-quil-metadata-gate-volume ((nativequilmetadata nativequilmetadata))
Writer Method: (setf native-quil-metadata-gate-volume) ((nativequilmetadata nativequilmetadata))

Total number of gates in the native quil program.

Source

messages.lisp.

Target Slot

gate_volume.

Generic Reader: native-quil-metadata-multiqubit-gate-depth (object)
Generic Writer: (setf native-quil-metadata-multiqubit-gate-depth) (object)
Package

rpcq.

Methods
Reader Method: native-quil-metadata-multiqubit-gate-depth ((nativequilmetadata nativequilmetadata))
Writer Method: (setf native-quil-metadata-multiqubit-gate-depth) ((nativequilmetadata nativequilmetadata))

Maximum number of successive two-qubit gates in the native quil program.

Source

messages.lisp.

Target Slot

multiqubit_gate_depth.

Generic Reader: native-quil-metadata-program-duration (object)
Generic Writer: (setf native-quil-metadata-program-duration) (object)
Package

rpcq.

Methods
Reader Method: native-quil-metadata-program-duration ((nativequilmetadata nativequilmetadata))
Writer Method: (setf native-quil-metadata-program-duration) ((nativequilmetadata nativequilmetadata))

Rough estimate of native quil program length in nanoseconds.

Source

messages.lisp.

Target Slot

program_duration.

Generic Reader: native-quil-metadata-program-fidelity (object)
Generic Writer: (setf native-quil-metadata-program-fidelity) (object)
Package

rpcq.

Methods
Reader Method: native-quil-metadata-program-fidelity ((nativequilmetadata nativequilmetadata))
Writer Method: (setf native-quil-metadata-program-fidelity) ((nativequilmetadata nativequilmetadata))

Rough estimate of the fidelity of the full native quil program, uses specs.

Source

messages.lisp.

Target Slot

program_fidelity.

Generic Reader: native-quil-metadata-qpu-runtime-estimation (object)
Generic Writer: (setf native-quil-metadata-qpu-runtime-estimation) (object)
Package

rpcq.

Methods
Reader Method: native-quil-metadata-qpu-runtime-estimation ((nativequilmetadata nativequilmetadata))
Writer Method: (setf native-quil-metadata-qpu-runtime-estimation) ((nativequilmetadata nativequilmetadata))

The estimated runtime (milliseconds) on a Rigetti QPU for a protoquil program.

Source

messages.lisp.

Target Slot

qpu_runtime_estimation.

Generic Reader: native-quil-metadata-topological-swaps (object)
Generic Writer: (setf native-quil-metadata-topological-swaps) (object)
Package

rpcq.

Methods
Reader Method: native-quil-metadata-topological-swaps ((nativequilmetadata nativequilmetadata))
Writer Method: (setf native-quil-metadata-topological-swaps) ((nativequilmetadata nativequilmetadata))

Total number of SWAPs in the native quil program.

Source

messages.lisp.

Target Slot

topological_swaps.

Generic Reader: native-quil-request-quil (object)
Generic Writer: (setf native-quil-request-quil) (object)
Package

rpcq.

Methods
Reader Method: native-quil-request-quil ((nativequilrequest nativequilrequest))
Writer Method: (setf native-quil-request-quil) ((nativequilrequest nativequilrequest))

Arbitrary Quil to be sent to quilc.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: native-quil-request-target-device (object)
Generic Writer: (setf native-quil-request-target-device) (object)
Package

rpcq.

Methods
Reader Method: native-quil-request-target-device ((nativequilrequest nativequilrequest))
Writer Method: (setf native-quil-request-target-device) ((nativequilrequest nativequilrequest))

Specifications for the device to target with quilc.

Source

messages.lisp.

Target Slot

target_device.

Generic Reader: native-quil-response-metadata (object)
Generic Writer: (setf native-quil-response-metadata) (object)
Package

rpcq.

Methods
Reader Method: native-quil-response-metadata ((nativequilresponse nativequilresponse))
Writer Method: (setf native-quil-response-metadata) ((nativequilresponse nativequilresponse))

Metadata for the returned Native Quil.

Source

messages.lisp.

Target Slot

metadata.

Generic Reader: native-quil-response-quil (object)
Generic Writer: (setf native-quil-response-quil) (object)
Package

rpcq.

Methods
Reader Method: native-quil-response-quil ((nativequilresponse nativequilresponse))
Writer Method: (setf native-quil-response-quil) ((nativequilresponse nativequilresponse))

Native Quil returned from quilc.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: nativequilmetadata-final_rewiring (object)
Generic Writer: (setf nativequilmetadata-final_rewiring) (object)
Package

rpcq.

Methods
Reader Method: nativequilmetadata-final_rewiring ((nativequilmetadata nativequilmetadata))
Writer Method: (setf nativequilmetadata-final_rewiring) ((nativequilmetadata nativequilmetadata))

Output qubit index relabeling due to SWAP insertion.

Source

messages.lisp.

Target Slot

final_rewiring.

Generic Reader: nativequilmetadata-gate_depth (object)
Generic Writer: (setf nativequilmetadata-gate_depth) (object)
Package

rpcq.

Methods
Reader Method: nativequilmetadata-gate_depth ((nativequilmetadata nativequilmetadata))
Writer Method: (setf nativequilmetadata-gate_depth) ((nativequilmetadata nativequilmetadata))

Maximum number of successive gates in the native quil program.

Source

messages.lisp.

Target Slot

gate_depth.

Generic Reader: nativequilmetadata-gate_volume (object)
Generic Writer: (setf nativequilmetadata-gate_volume) (object)
Package

rpcq.

Methods
Reader Method: nativequilmetadata-gate_volume ((nativequilmetadata nativequilmetadata))
Writer Method: (setf nativequilmetadata-gate_volume) ((nativequilmetadata nativequilmetadata))

Total number of gates in the native quil program.

Source

messages.lisp.

Target Slot

gate_volume.

Generic Reader: nativequilmetadata-multiqubit_gate_depth (object)
Generic Writer: (setf nativequilmetadata-multiqubit_gate_depth) (object)
Package

rpcq.

Methods
Reader Method: nativequilmetadata-multiqubit_gate_depth ((nativequilmetadata nativequilmetadata))
Writer Method: (setf nativequilmetadata-multiqubit_gate_depth) ((nativequilmetadata nativequilmetadata))

Maximum number of successive two-qubit gates in the native quil program.

Source

messages.lisp.

Target Slot

multiqubit_gate_depth.

Generic Reader: nativequilmetadata-program_duration (object)
Generic Writer: (setf nativequilmetadata-program_duration) (object)
Package

rpcq.

Methods
Reader Method: nativequilmetadata-program_duration ((nativequilmetadata nativequilmetadata))
Writer Method: (setf nativequilmetadata-program_duration) ((nativequilmetadata nativequilmetadata))

Rough estimate of native quil program length in nanoseconds.

Source

messages.lisp.

Target Slot

program_duration.

Generic Reader: nativequilmetadata-program_fidelity (object)
Generic Writer: (setf nativequilmetadata-program_fidelity) (object)
Package

rpcq.

Methods
Reader Method: nativequilmetadata-program_fidelity ((nativequilmetadata nativequilmetadata))
Writer Method: (setf nativequilmetadata-program_fidelity) ((nativequilmetadata nativequilmetadata))

Rough estimate of the fidelity of the full native quil program, uses specs.

Source

messages.lisp.

Target Slot

program_fidelity.

Generic Reader: nativequilmetadata-qpu_runtime_estimation (object)
Generic Writer: (setf nativequilmetadata-qpu_runtime_estimation) (object)
Package

rpcq.

Methods
Reader Method: nativequilmetadata-qpu_runtime_estimation ((nativequilmetadata nativequilmetadata))
Writer Method: (setf nativequilmetadata-qpu_runtime_estimation) ((nativequilmetadata nativequilmetadata))

The estimated runtime (milliseconds) on a Rigetti QPU for a protoquil program.

Source

messages.lisp.

Target Slot

qpu_runtime_estimation.

Generic Reader: nativequilmetadata-topological_swaps (object)
Generic Writer: (setf nativequilmetadata-topological_swaps) (object)
Package

rpcq.

Methods
Reader Method: nativequilmetadata-topological_swaps ((nativequilmetadata nativequilmetadata))
Writer Method: (setf nativequilmetadata-topological_swaps) ((nativequilmetadata nativequilmetadata))

Total number of SWAPs in the native quil program.

Source

messages.lisp.

Target Slot

topological_swaps.

Generic Reader: nativequilrequest-quil (object)
Generic Writer: (setf nativequilrequest-quil) (object)
Package

rpcq.

Methods
Reader Method: nativequilrequest-quil ((nativequilrequest nativequilrequest))
Writer Method: (setf nativequilrequest-quil) ((nativequilrequest nativequilrequest))

Arbitrary Quil to be sent to quilc.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: nativequilrequest-target_device (object)
Generic Writer: (setf nativequilrequest-target_device) (object)
Package

rpcq.

Methods
Reader Method: nativequilrequest-target_device ((nativequilrequest nativequilrequest))
Writer Method: (setf nativequilrequest-target_device) ((nativequilrequest nativequilrequest))

Specifications for the device to target with quilc.

Source

messages.lisp.

Target Slot

target_device.

Generic Reader: nativequilresponse-metadata (object)
Generic Writer: (setf nativequilresponse-metadata) (object)
Package

rpcq.

Methods
Reader Method: nativequilresponse-metadata ((nativequilresponse nativequilresponse))
Writer Method: (setf nativequilresponse-metadata) ((nativequilresponse nativequilresponse))

Metadata for the returned Native Quil.

Source

messages.lisp.

Target Slot

metadata.

Generic Reader: nativequilresponse-quil (object)
Generic Writer: (setf nativequilresponse-quil) (object)
Package

rpcq.

Methods
Reader Method: nativequilresponse-quil ((nativequilresponse nativequilresponse))
Writer Method: (setf nativequilresponse-quil) ((nativequilresponse nativequilresponse))

Native Quil returned from quilc.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: parameter-aref-index (object)
Generic Writer: (setf parameter-aref-index) (object)
Package

rpcq.

Methods
Reader Method: parameter-aref-index ((parameteraref parameteraref))
Writer Method: (setf parameter-aref-index) ((parameteraref parameteraref))

The array index.

Source

messages.lisp.

Target Slot

index.

Generic Reader: parameter-aref-name (object)
Generic Writer: (setf parameter-aref-name) (object)
Package

rpcq.

Methods
Reader Method: parameter-aref-name ((parameteraref parameteraref))
Writer Method: (setf parameter-aref-name) ((parameteraref parameteraref))

The parameter name

Source

messages.lisp.

Target Slot

name.

Generic Reader: parameter-expression-a (object)
Generic Writer: (setf parameter-expression-a) (object)
Package

rpcq.

Methods
Reader Method: parameter-expression-a ((parameterexpression parameterexpression))
Writer Method: (setf parameter-expression-a) ((parameterexpression parameterexpression))

The first operand

Source

core-messages.lisp.

Target Slot

a.

Generic Reader: parameter-expression-b (object)
Generic Writer: (setf parameter-expression-b) (object)
Package

rpcq.

Methods
Reader Method: parameter-expression-b ((parameterexpression parameterexpression))
Writer Method: (setf parameter-expression-b) ((parameterexpression parameterexpression))

The second operand

Source

core-messages.lisp.

Target Slot

b.

Generic Reader: parameter-expression-operator (object)
Generic Writer: (setf parameter-expression-operator) (object)
Package

rpcq.

Methods
Reader Method: parameter-expression-operator ((parameterexpression parameterexpression))
Writer Method: (setf parameter-expression-operator) ((parameterexpression parameterexpression))

The operator ’+’, ’-’, ’*’. The operands can be
constant floating point numbers or strings referencing a dynamic program parameter or a ParameterAref to index into an array or itself a ParameterExpression.

Source

core-messages.lisp.

Target Slot

operator.

Generic Reader: parameter-spec-length (object)
Generic Writer: (setf parameter-spec-length) (object)
Package

rpcq.

Methods
Reader Method: parameter-spec-length ((parameterspec parameterspec))
Writer Method: (setf parameter-spec-length) ((parameterspec parameterspec))

If this is not 1, the parameter is an array of this length.

Source

messages.lisp.

Target Slot

length.

Generic Reader: parameter-spec-type (object)
Generic Writer: (setf parameter-spec-type) (object)
Package

rpcq.

Methods
Reader Method: parameter-spec-type ((parameterspec parameterspec))
Writer Method: (setf parameter-spec-type) ((parameterspec parameterspec))

The parameter type, e.g., one of ’INTEGER’, or ’FLOAT’.

Source

messages.lisp.

Target Slot

type.

Generic Reader: parameteraref-index (object)
Generic Writer: (setf parameteraref-index) (object)
Package

rpcq.

Methods
Reader Method: parameteraref-index ((parameteraref parameteraref))
Writer Method: (setf parameteraref-index) ((parameteraref parameteraref))

The array index.

Source

messages.lisp.

Target Slot

index.

Generic Reader: parameteraref-name (object)
Generic Writer: (setf parameteraref-name) (object)
Package

rpcq.

Methods
Reader Method: parameteraref-name ((parameteraref parameteraref))
Writer Method: (setf parameteraref-name) ((parameteraref parameteraref))

The parameter name

Source

messages.lisp.

Target Slot

name.

Generic Reader: parameterexpression-a (object)
Generic Writer: (setf parameterexpression-a) (object)
Package

rpcq.

Methods
Reader Method: parameterexpression-a ((parameterexpression parameterexpression))
Writer Method: (setf parameterexpression-a) ((parameterexpression parameterexpression))

The first operand

Source

core-messages.lisp.

Target Slot

a.

Generic Reader: parameterexpression-b (object)
Generic Writer: (setf parameterexpression-b) (object)
Package

rpcq.

Methods
Reader Method: parameterexpression-b ((parameterexpression parameterexpression))
Writer Method: (setf parameterexpression-b) ((parameterexpression parameterexpression))

The second operand

Source

core-messages.lisp.

Target Slot

b.

Generic Reader: parameterexpression-operator (object)
Generic Writer: (setf parameterexpression-operator) (object)
Package

rpcq.

Methods
Reader Method: parameterexpression-operator ((parameterexpression parameterexpression))
Writer Method: (setf parameterexpression-operator) ((parameterexpression parameterexpression))

The operator ’+’, ’-’, ’*’. The operands can be
constant floating point numbers or strings referencing a dynamic program parameter or a ParameterAref to index into an array or itself a ParameterExpression.

Source

core-messages.lisp.

Target Slot

operator.

Generic Reader: parameterspec-length (object)
Generic Writer: (setf parameterspec-length) (object)
Package

rpcq.

Methods
Reader Method: parameterspec-length ((parameterspec parameterspec))
Writer Method: (setf parameterspec-length) ((parameterspec parameterspec))

If this is not 1, the parameter is an array of this length.

Source

messages.lisp.

Target Slot

length.

Generic Reader: parameterspec-type (object)
Generic Writer: (setf parameterspec-type) (object)
Package

rpcq.

Methods
Reader Method: parameterspec-type ((parameterspec parameterspec))
Writer Method: (setf parameterspec-type) ((parameterspec parameterspec))

The parameter type, e.g., one of ’INTEGER’, or ’FLOAT’.

Source

messages.lisp.

Target Slot

type.

Generic Reader: patch-target-patch-offset (object)
Generic Writer: (setf patch-target-patch-offset) (object)
Package

rpcq.

Methods
Reader Method: patch-target-patch-offset ((patchtarget patchtarget))
Writer Method: (setf patch-target-patch-offset) ((patchtarget patchtarget))

Memory address of the patch.

Source

messages.lisp.

Target Slot

patch_offset.

Generic Reader: patch-target-patch-type (object)
Generic Writer: (setf patch-target-patch-type) (object)
Package

rpcq.

Methods
Reader Method: patch-target-patch-type ((patchtarget patchtarget))
Writer Method: (setf patch-target-patch-type) ((patchtarget patchtarget))

Data type at this address.

Source

messages.lisp.

Target Slot

patch_type.

Generic Reader: patchable-binary-base-binary (object)
Generic Writer: (setf patchable-binary-base-binary) (object)
Package

rpcq.

Methods
Reader Method: patchable-binary-base-binary ((patchablebinary patchablebinary))
Writer Method: (setf patchable-binary-base-binary) ((patchablebinary patchablebinary))

Raw Tsunami binary object.

Source

core-messages.lisp.

Target Slot

base_binary.

Generic Reader: patchable-binary-patch-table (object)
Generic Writer: (setf patchable-binary-patch-table) (object)
Package

rpcq.

Methods
Reader Method: patchable-binary-patch-table ((patchablebinary patchablebinary))
Writer Method: (setf patchable-binary-patch-table) ((patchablebinary patchablebinary))

Dictionary mapping patch names to their memory descriptors.

Source

core-messages.lisp.

Target Slot

patch_table.

Generic Reader: patchablebinary-base_binary (object)
Generic Writer: (setf patchablebinary-base_binary) (object)
Package

rpcq.

Methods
Reader Method: patchablebinary-base_binary ((patchablebinary patchablebinary))
Writer Method: (setf patchablebinary-base_binary) ((patchablebinary patchablebinary))

Raw Tsunami binary object.

Source

core-messages.lisp.

Target Slot

base_binary.

Generic Reader: patchablebinary-patch_table (object)
Generic Writer: (setf patchablebinary-patch_table) (object)
Package

rpcq.

Methods
Reader Method: patchablebinary-patch_table ((patchablebinary patchablebinary))
Writer Method: (setf patchablebinary-patch_table) ((patchablebinary patchablebinary))

Dictionary mapping patch names to their memory descriptors.

Source

core-messages.lisp.

Target Slot

patch_table.

Generic Reader: patchtarget-patch_offset (object)
Generic Writer: (setf patchtarget-patch_offset) (object)
Package

rpcq.

Methods
Reader Method: patchtarget-patch_offset ((patchtarget patchtarget))
Writer Method: (setf patchtarget-patch_offset) ((patchtarget patchtarget))

Memory address of the patch.

Source

messages.lisp.

Target Slot

patch_offset.

Generic Reader: patchtarget-patch_type (object)
Generic Writer: (setf patchtarget-patch_type) (object)
Package

rpcq.

Methods
Reader Method: patchtarget-patch_type ((patchtarget patchtarget))
Writer Method: (setf patchtarget-patch_type) ((patchtarget patchtarget))

Data type at this address.

Source

messages.lisp.

Target Slot

patch_type.

Generic Reader: pauli-term-indices (object)
Generic Writer: (setf pauli-term-indices) (object)
Package

rpcq.

Methods
Reader Method: pauli-term-indices ((pauliterm pauliterm))
Writer Method: (setf pauli-term-indices) ((pauliterm pauliterm))

Qubit indices onto which the factors of a Pauli term are applied.

Source

messages.lisp.

Target Slot

indices.

Generic Reader: pauli-term-symbols (object)
Generic Writer: (setf pauli-term-symbols) (object)
Package

rpcq.

Methods
Reader Method: pauli-term-symbols ((pauliterm pauliterm))
Writer Method: (setf pauli-term-symbols) ((pauliterm pauliterm))

Ordered factors of a Pauli term.

Source

messages.lisp.

Target Slot

symbols.

Generic Reader: pauliterm-indices (object)
Generic Writer: (setf pauliterm-indices) (object)
Package

rpcq.

Methods
Reader Method: pauliterm-indices ((pauliterm pauliterm))
Writer Method: (setf pauliterm-indices) ((pauliterm pauliterm))

Qubit indices onto which the factors of a Pauli term are applied.

Source

messages.lisp.

Target Slot

indices.

Generic Reader: pauliterm-symbols (object)
Generic Writer: (setf pauliterm-symbols) (object)
Package

rpcq.

Methods
Reader Method: pauliterm-symbols ((pauliterm pauliterm))
Writer Method: (setf pauliterm-symbols) ((pauliterm pauliterm))

Ordered factors of a Pauli term.

Source

messages.lisp.

Target Slot

symbols.

Generic Reader: program-filters (object)
Generic Writer: (setf program-filters) (object)
Package

rpcq.

Methods
Reader Method: program-filters ((program program))
Writer Method: (setf program-filters) ((program program))

The readout filter kernels appearing in the program by feature label.

Source

core-messages.lisp.

Target Slot

filters.

Generic Reader: program-filters (object)
Generic Writer: (setf program-filters) (object)
Package

rpcq.

Methods
Reader Method: program-filters ((program program))
Writer Method: (setf program-filters) ((program program))

The readout filter kernels appearing in the program by feature label.

Source

core-messages.lisp.

Target Slot

filters.

Generic Reader: program-parameters (object)
Generic Writer: (setf program-parameters) (object)
Package

rpcq.

Methods
Reader Method: program-parameters ((program program))
Writer Method: (setf program-parameters) ((program program))

A mapping of dynamic parameter names to their type specification.

Source

core-messages.lisp.

Target Slot

parameters.

Generic Reader: program-parameters (object)
Generic Writer: (setf program-parameters) (object)
Package

rpcq.

Methods
Reader Method: program-parameters ((program program))
Writer Method: (setf program-parameters) ((program program))

A mapping of dynamic parameter names to their type specification.

Source

core-messages.lisp.

Target Slot

parameters.

Generic Reader: program-scheduled-instructions (object)
Generic Writer: (setf program-scheduled-instructions) (object)
Package

rpcq.

Methods
Reader Method: program-scheduled-instructions ((program program))
Writer Method: (setf program-scheduled-instructions) ((program program))

The ordered sequence of scheduled instruction objects.

Source

core-messages.lisp.

Target Slot

scheduled_instructions.

Generic Reader: program-scheduled_instructions (object)
Generic Writer: (setf program-scheduled_instructions) (object)
Package

rpcq.

Methods
Reader Method: program-scheduled_instructions ((program program))
Writer Method: (setf program-scheduled_instructions) ((program program))

The ordered sequence of scheduled instruction objects.

Source

core-messages.lisp.

Target Slot

scheduled_instructions.

Generic Reader: program-waveforms (object)
Generic Writer: (setf program-waveforms) (object)
Package

rpcq.

Methods
Reader Method: program-waveforms ((program program))
Writer Method: (setf program-waveforms) ((program program))

The waveforms appearing in the program by waveform label.

Source

core-messages.lisp.

Target Slot

waveforms.

Generic Reader: program-waveforms (object)
Generic Writer: (setf program-waveforms) (object)
Package

rpcq.

Methods
Reader Method: program-waveforms ((program program))
Writer Method: (setf program-waveforms) ((program program))

The waveforms appearing in the program by waveform label.

Source

core-messages.lisp.

Target Slot

waveforms.

Generic Reader: pulse-detuning (object)
Generic Writer: (setf pulse-detuning) (object)
Package

rpcq.

Methods
Reader Method: pulse-detuning ((pulse pulse))
Writer Method: (setf pulse-detuning) ((pulse pulse))

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: pulse-detuning (object)
Generic Writer: (setf pulse-detuning) (object)
Package

rpcq.

Methods
Reader Method: pulse-detuning ((pulse pulse))
Writer Method: (setf pulse-detuning) ((pulse pulse))

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: pulse-frame (object)
Generic Writer: (setf pulse-frame) (object)
Package

rpcq.

Methods
Reader Method: pulse-frame ((pulse pulse))
Writer Method: (setf pulse-frame) ((pulse pulse))

The tx-frame label on which the pulse is played.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: pulse-frame (object)
Generic Writer: (setf pulse-frame) (object)
Package

rpcq.

Methods
Reader Method: pulse-frame ((pulse pulse))
Writer Method: (setf pulse-frame) ((pulse pulse))

The tx-frame label on which the pulse is played.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: pulse-phase (object)
Generic Writer: (setf pulse-phase) (object)
Package

rpcq.

Methods
Reader Method: pulse-phase ((pulse pulse))
Writer Method: (setf pulse-phase) ((pulse pulse))

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: pulse-phase (object)
Generic Writer: (setf pulse-phase) (object)
Package

rpcq.

Methods
Reader Method: pulse-phase ((pulse pulse))
Writer Method: (setf pulse-phase) ((pulse pulse))

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: pulse-scale (object)
Generic Writer: (setf pulse-scale) (object)
Package

rpcq.

Methods
Reader Method: pulse-scale ((pulse pulse))
Writer Method: (setf pulse-scale) ((pulse pulse))

Dimensionless (re-)scaling factor which is applied to the envelope.

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: pulse-scale (object)
Generic Writer: (setf pulse-scale) (object)
Package

rpcq.

Methods
Reader Method: pulse-scale ((pulse pulse))
Writer Method: (setf pulse-scale) ((pulse pulse))

Dimensionless (re-)scaling factor which is applied to the envelope.

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: pulse-waveform (object)
Generic Writer: (setf pulse-waveform) (object)
Package

rpcq.

Methods
Reader Method: pulse-waveform ((pulse pulse))
Writer Method: (setf pulse-waveform) ((pulse pulse))

The waveform label

Source

core-messages.lisp.

Target Slot

waveform.

Generic Reader: pulse-waveform (object)
Generic Writer: (setf pulse-waveform) (object)
Package

rpcq.

Methods
Reader Method: pulse-waveform ((pulse pulse))
Writer Method: (setf pulse-waveform) ((pulse pulse))

The waveform label

Source

core-messages.lisp.

Target Slot

waveform.

Generic Reader: py-quil-executable-response-attributes (object)
Generic Writer: (setf py-quil-executable-response-attributes) (object)
Package

rpcq.

Methods
Reader Method: py-quil-executable-response-attributes ((pyquilexecutableresponse pyquilexecutableresponse))
Writer Method: (setf py-quil-executable-response-attributes) ((pyquilexecutableresponse pyquilexecutableresponse))

Miscellaneous attributes to be unpacked onto the pyQuil Program object.

Source

messages.lisp.

Target Slot

attributes.

Generic Reader: py-quil-executable-response-program (object)
Generic Writer: (setf py-quil-executable-response-program) (object)
Package

rpcq.

Methods
Reader Method: py-quil-executable-response-program ((pyquilexecutableresponse pyquilexecutableresponse))
Writer Method: (setf py-quil-executable-response-program) ((pyquilexecutableresponse pyquilexecutableresponse))

String representation of a Quil program.

Source

messages.lisp.

Target Slot

program.

Generic Reader: pyquilexecutableresponse-attributes (object)
Generic Writer: (setf pyquilexecutableresponse-attributes) (object)
Package

rpcq.

Methods
Reader Method: pyquilexecutableresponse-attributes ((pyquilexecutableresponse pyquilexecutableresponse))
Writer Method: (setf pyquilexecutableresponse-attributes) ((pyquilexecutableresponse pyquilexecutableresponse))

Miscellaneous attributes to be unpacked onto the pyQuil Program object.

Source

messages.lisp.

Target Slot

attributes.

Generic Reader: pyquilexecutableresponse-program (object)
Generic Writer: (setf pyquilexecutableresponse-program) (object)
Package

rpcq.

Methods
Reader Method: pyquilexecutableresponse-program ((pyquilexecutableresponse pyquilexecutableresponse))
Writer Method: (setf pyquilexecutableresponse-program) ((pyquilexecutableresponse pyquilexecutableresponse))

String representation of a Quil program.

Source

messages.lisp.

Target Slot

program.

Generic Reader: qdo-fast-flux-channel-channel-index (object)
Generic Writer: (setf qdo-fast-flux-channel-channel-index) (object)
Package

rpcq.

Methods
Reader Method: qdo-fast-flux-channel-channel-index ((qdofastfluxchannel qdofastfluxchannel))
Writer Method: (setf qdo-fast-flux-channel-channel-index) ((qdofastfluxchannel qdofastfluxchannel))

The channel index on the QDO, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qdo-fast-flux-channel-delay (object)
Generic Writer: (setf qdo-fast-flux-channel-delay) (object)
Package

rpcq.

Methods
Reader Method: qdo-fast-flux-channel-delay ((qdofastfluxchannel qdofastfluxchannel))
Writer Method: (setf qdo-fast-flux-channel-delay) ((qdofastfluxchannel qdofastfluxchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qdo-fast-flux-channel-direction (object)
Generic Writer: (setf qdo-fast-flux-channel-direction) (object)
Package

rpcq.

Methods
Reader Method: qdo-fast-flux-channel-direction ((qdofastfluxchannel qdofastfluxchannel))
Writer Method: (setf qdo-fast-flux-channel-direction) ((qdofastfluxchannel qdofastfluxchannel))

The QDO is a device that transmits pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qdo-fast-flux-channel-flux-current (object)
Generic Writer: (setf qdo-fast-flux-channel-flux-current) (object)
Package

rpcq.

Methods
Reader Method: qdo-fast-flux-channel-flux-current ((qdofastfluxchannel qdofastfluxchannel))
Writer Method: (setf qdo-fast-flux-channel-flux-current) ((qdofastfluxchannel qdofastfluxchannel))

Flux current [Amps].

Source

core-messages.lisp.

Target Slot

flux_current.

Generic Reader: qdo-sequencer-sequencer-index (object)
Generic Writer: (setf qdo-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: qdo-sequencer-sequencer-index ((qdosequencer qdosequencer))
Writer Method: (setf qdo-sequencer-sequencer-index) ((qdosequencer qdosequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qdo-sequencer-tx-channel (object)
Generic Writer: (setf qdo-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: qdo-sequencer-tx-channel ((qdosequencer qdosequencer))
Writer Method: (setf qdo-sequencer-tx-channel) ((qdosequencer qdosequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qdo-slow-flux-channel-channel-index (object)
Generic Writer: (setf qdo-slow-flux-channel-channel-index) (object)
Package

rpcq.

Methods
Reader Method: qdo-slow-flux-channel-channel-index ((qdoslowfluxchannel qdoslowfluxchannel))
Writer Method: (setf qdo-slow-flux-channel-channel-index) ((qdoslowfluxchannel qdoslowfluxchannel))

The channel index on the QDO, zero indexed from the
lowest channel, as installed in the box. Flux index typically starts at 4.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qdo-slow-flux-channel-flux-current (object)
Generic Writer: (setf qdo-slow-flux-channel-flux-current) (object)
Package

rpcq.

Methods
Reader Method: qdo-slow-flux-channel-flux-current ((qdoslowfluxchannel qdoslowfluxchannel))
Writer Method: (setf qdo-slow-flux-channel-flux-current) ((qdoslowfluxchannel qdoslowfluxchannel))

Flux current [Amps].

Source

core-messages.lisp.

Target Slot

flux_current.

Generic Reader: qdo-slow-flux-channel-relay-closed (object)
Generic Writer: (setf qdo-slow-flux-channel-relay-closed) (object)
Package

rpcq.

Methods
Reader Method: qdo-slow-flux-channel-relay-closed ((qdoslowfluxchannel qdoslowfluxchannel))
Writer Method: (setf qdo-slow-flux-channel-relay-closed) ((qdoslowfluxchannel qdoslowfluxchannel))

Set the state of the Flux relay.
True - Relay closed, allows flux current to flow. False - Relay open, no flux current can flow.

Source

core-messages.lisp.

Target Slot

relay_closed.

Generic Reader: qdofastfluxchannel-channel_index (object)
Generic Writer: (setf qdofastfluxchannel-channel_index) (object)
Package

rpcq.

Methods
Reader Method: qdofastfluxchannel-channel_index ((qdofastfluxchannel qdofastfluxchannel))
Writer Method: (setf qdofastfluxchannel-channel_index) ((qdofastfluxchannel qdofastfluxchannel))

The channel index on the QDO, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qdofastfluxchannel-delay (object)
Generic Writer: (setf qdofastfluxchannel-delay) (object)
Package

rpcq.

Methods
Reader Method: qdofastfluxchannel-delay ((qdofastfluxchannel qdofastfluxchannel))
Writer Method: (setf qdofastfluxchannel-delay) ((qdofastfluxchannel qdofastfluxchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qdofastfluxchannel-direction (object)
Generic Writer: (setf qdofastfluxchannel-direction) (object)
Package

rpcq.

Methods
Reader Method: qdofastfluxchannel-direction ((qdofastfluxchannel qdofastfluxchannel))
Writer Method: (setf qdofastfluxchannel-direction) ((qdofastfluxchannel qdofastfluxchannel))

The QDO is a device that transmits pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qdofastfluxchannel-flux_current (object)
Generic Writer: (setf qdofastfluxchannel-flux_current) (object)
Package

rpcq.

Methods
Reader Method: qdofastfluxchannel-flux_current ((qdofastfluxchannel qdofastfluxchannel))
Writer Method: (setf qdofastfluxchannel-flux_current) ((qdofastfluxchannel qdofastfluxchannel))

Flux current [Amps].

Source

core-messages.lisp.

Target Slot

flux_current.

Generic Reader: qdosequencer-sequencer_index (object)
Generic Writer: (setf qdosequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: qdosequencer-sequencer_index ((qdosequencer qdosequencer))
Writer Method: (setf qdosequencer-sequencer_index) ((qdosequencer qdosequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qdosequencer-tx_channel (object)
Generic Writer: (setf qdosequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: qdosequencer-tx_channel ((qdosequencer qdosequencer))
Writer Method: (setf qdosequencer-tx_channel) ((qdosequencer qdosequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qdoslowfluxchannel-channel_index (object)
Generic Writer: (setf qdoslowfluxchannel-channel_index) (object)
Package

rpcq.

Methods
Reader Method: qdoslowfluxchannel-channel_index ((qdoslowfluxchannel qdoslowfluxchannel))
Writer Method: (setf qdoslowfluxchannel-channel_index) ((qdoslowfluxchannel qdoslowfluxchannel))

The channel index on the QDO, zero indexed from the
lowest channel, as installed in the box. Flux index typically starts at 4.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qdoslowfluxchannel-flux_current (object)
Generic Writer: (setf qdoslowfluxchannel-flux_current) (object)
Package

rpcq.

Methods
Reader Method: qdoslowfluxchannel-flux_current ((qdoslowfluxchannel qdoslowfluxchannel))
Writer Method: (setf qdoslowfluxchannel-flux_current) ((qdoslowfluxchannel qdoslowfluxchannel))

Flux current [Amps].

Source

core-messages.lisp.

Target Slot

flux_current.

Generic Reader: qdoslowfluxchannel-relay_closed (object)
Generic Writer: (setf qdoslowfluxchannel-relay_closed) (object)
Package

rpcq.

Methods
Reader Method: qdoslowfluxchannel-relay_closed ((qdoslowfluxchannel qdoslowfluxchannel))
Writer Method: (setf qdoslowfluxchannel-relay_closed) ((qdoslowfluxchannel qdoslowfluxchannel))

Set the state of the Flux relay.
True - Relay closed, allows flux current to flow. False - Relay open, no flux current can flow.

Source

core-messages.lisp.

Target Slot

relay_closed.

Generic Reader: qf-dx-2-sequencer-sequencer-index (object)
Generic Writer: (setf qf-dx-2-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: qf-dx-2-sequencer-sequencer-index ((qfdx2sequencer qfdx2sequencer))
Writer Method: (setf qf-dx-2-sequencer-sequencer-index) ((qfdx2sequencer qfdx2sequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qf-dx-2-sequencer-tx-channel (object)
Generic Writer: (setf qf-dx-2-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: qf-dx-2-sequencer-tx-channel ((qfdx2sequencer qfdx2sequencer))
Writer Method: (setf qf-dx-2-sequencer-tx-channel) ((qfdx2sequencer qfdx2sequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qfd-channel-channel-index (object)
Generic Writer: (setf qfd-channel-channel-index) (object)
Package

rpcq.

Methods
Reader Method: qfd-channel-channel-index ((qfdchannel qfdchannel))
Writer Method: (setf qfd-channel-channel-index) ((qfdchannel qfdchannel))

The channel index on the QFD, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qfd-channel-delay (object)
Generic Writer: (setf qfd-channel-delay) (object)
Package

rpcq.

Methods
Reader Method: qfd-channel-delay ((qfdchannel qfdchannel))
Writer Method: (setf qfd-channel-delay) ((qfdchannel qfdchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qfd-channel-direction (object)
Generic Writer: (setf qfd-channel-direction) (object)
Package

rpcq.

Methods
Reader Method: qfd-channel-direction ((qfdchannel qfdchannel))
Writer Method: (setf qfd-channel-direction) ((qfdchannel qfdchannel))

The QFD is a device that transmits pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qfd-channel-flux-current (object)
Generic Writer: (setf qfd-channel-flux-current) (object)
Package

rpcq.

Methods
Reader Method: qfd-channel-flux-current ((qfdchannel qfdchannel))
Writer Method: (setf qfd-channel-flux-current) ((qfdchannel qfdchannel))

Flux current [Amps].

Source

core-messages.lisp.

Target Slot

flux_current.

Generic Reader: qfd-channel-gain (object)
Generic Writer: (setf qfd-channel-gain) (object)
Package

rpcq.

Methods
Reader Method: qfd-channel-gain ((qfdchannel qfdchannel))
Writer Method: (setf qfd-channel-gain) ((qfdchannel qfdchannel))

The output gain on the DAC in [dB]. Note that this
should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: qfd-channel-nco-frequency (object)
Generic Writer: (setf qfd-channel-nco-frequency) (object)
Package

rpcq.

Methods
Reader Method: qfd-channel-nco-frequency ((qfdchannel qfdchannel))
Writer Method: (setf qfd-channel-nco-frequency) ((qfdchannel qfdchannel))

The DAC NCO frequency [Hz].

Source

core-messages.lisp.

Target Slot

nco_frequency.

Generic Reader: qfd-channel-relay-closed (object)
Generic Writer: (setf qfd-channel-relay-closed) (object)
Package

rpcq.

Methods
Reader Method: qfd-channel-relay-closed ((qfdchannel qfdchannel))
Writer Method: (setf qfd-channel-relay-closed) ((qfdchannel qfdchannel))

Set the state of the Flux relay.
True - Relay closed, allows flux current to flow. False - Relay open, no flux current can flow.

Source

core-messages.lisp.

Target Slot

relay_closed.

Generic Reader: qfd-sequencer-sequencer-index (object)
Generic Writer: (setf qfd-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: qfd-sequencer-sequencer-index ((qfdsequencer qfdsequencer))
Writer Method: (setf qfd-sequencer-sequencer-index) ((qfdsequencer qfdsequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qfd-sequencer-tx-channel (object)
Generic Writer: (setf qfd-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: qfd-sequencer-tx-channel ((qfdsequencer qfdsequencer))
Writer Method: (setf qfd-sequencer-tx-channel) ((qfdsequencer qfdsequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qfdchannel-channel_index (object)
Generic Writer: (setf qfdchannel-channel_index) (object)
Package

rpcq.

Methods
Reader Method: qfdchannel-channel_index ((qfdchannel qfdchannel))
Writer Method: (setf qfdchannel-channel_index) ((qfdchannel qfdchannel))

The channel index on the QFD, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qfdchannel-delay (object)
Generic Writer: (setf qfdchannel-delay) (object)
Package

rpcq.

Methods
Reader Method: qfdchannel-delay ((qfdchannel qfdchannel))
Writer Method: (setf qfdchannel-delay) ((qfdchannel qfdchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qfdchannel-direction (object)
Generic Writer: (setf qfdchannel-direction) (object)
Package

rpcq.

Methods
Reader Method: qfdchannel-direction ((qfdchannel qfdchannel))
Writer Method: (setf qfdchannel-direction) ((qfdchannel qfdchannel))

The QFD is a device that transmits pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qfdchannel-flux_current (object)
Generic Writer: (setf qfdchannel-flux_current) (object)
Package

rpcq.

Methods
Reader Method: qfdchannel-flux_current ((qfdchannel qfdchannel))
Writer Method: (setf qfdchannel-flux_current) ((qfdchannel qfdchannel))

Flux current [Amps].

Source

core-messages.lisp.

Target Slot

flux_current.

Generic Reader: qfdchannel-gain (object)
Generic Writer: (setf qfdchannel-gain) (object)
Package

rpcq.

Methods
Reader Method: qfdchannel-gain ((qfdchannel qfdchannel))
Writer Method: (setf qfdchannel-gain) ((qfdchannel qfdchannel))

The output gain on the DAC in [dB]. Note that this
should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: qfdchannel-nco_frequency (object)
Generic Writer: (setf qfdchannel-nco_frequency) (object)
Package

rpcq.

Methods
Reader Method: qfdchannel-nco_frequency ((qfdchannel qfdchannel))
Writer Method: (setf qfdchannel-nco_frequency) ((qfdchannel qfdchannel))

The DAC NCO frequency [Hz].

Source

core-messages.lisp.

Target Slot

nco_frequency.

Generic Reader: qfdchannel-relay_closed (object)
Generic Writer: (setf qfdchannel-relay_closed) (object)
Package

rpcq.

Methods
Reader Method: qfdchannel-relay_closed ((qfdchannel qfdchannel))
Writer Method: (setf qfdchannel-relay_closed) ((qfdchannel qfdchannel))

Set the state of the Flux relay.
True - Relay closed, allows flux current to flow. False - Relay open, no flux current can flow.

Source

core-messages.lisp.

Target Slot

relay_closed.

Generic Reader: qfdsequencer-sequencer_index (object)
Generic Writer: (setf qfdsequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: qfdsequencer-sequencer_index ((qfdsequencer qfdsequencer))
Writer Method: (setf qfdsequencer-sequencer_index) ((qfdsequencer qfdsequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qfdsequencer-tx_channel (object)
Generic Writer: (setf qfdsequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: qfdsequencer-tx_channel ((qfdsequencer qfdsequencer))
Writer Method: (setf qfdsequencer-tx_channel) ((qfdsequencer qfdsequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qfdx2sequencer-sequencer_index (object)
Generic Writer: (setf qfdx2sequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: qfdx2sequencer-sequencer_index ((qfdx2sequencer qfdx2sequencer))
Writer Method: (setf qfdx2sequencer-sequencer_index) ((qfdx2sequencer qfdx2sequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qfdx2sequencer-tx_channel (object)
Generic Writer: (setf qfdx2sequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: qfdx2sequencer-tx_channel ((qfdx2sequencer qfdx2sequencer))
Writer Method: (setf qfdx2sequencer-tx_channel) ((qfdx2sequencer qfdx2sequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qg-sx-2-sequencer-sequencer-index (object)
Generic Writer: (setf qg-sx-2-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: qg-sx-2-sequencer-sequencer-index ((qgsx2sequencer qgsx2sequencer))
Writer Method: (setf qg-sx-2-sequencer-sequencer-index) ((qgsx2sequencer qgsx2sequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qg-sx-2-sequencer-tx-channel (object)
Generic Writer: (setf qg-sx-2-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: qg-sx-2-sequencer-tx-channel ((qgsx2sequencer qgsx2sequencer))
Writer Method: (setf qg-sx-2-sequencer-tx-channel) ((qgsx2sequencer qgsx2sequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qgs-channel-channel-index (object)
Generic Writer: (setf qgs-channel-channel-index) (object)
Package

rpcq.

Methods
Reader Method: qgs-channel-channel-index ((qgschannel qgschannel))
Writer Method: (setf qgs-channel-channel-index) ((qgschannel qgschannel))

The channel index on the QGS, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qgs-channel-delay (object)
Generic Writer: (setf qgs-channel-delay) (object)
Package

rpcq.

Methods
Reader Method: qgs-channel-delay ((qgschannel qgschannel))
Writer Method: (setf qgs-channel-delay) ((qgschannel qgschannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qgs-channel-direction (object)
Generic Writer: (setf qgs-channel-direction) (object)
Package

rpcq.

Methods
Reader Method: qgs-channel-direction ((qgschannel qgschannel))
Writer Method: (setf qgs-channel-direction) ((qgschannel qgschannel))

The QGS is a device that transmits pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qgs-channel-gain (object)
Generic Writer: (setf qgs-channel-gain) (object)
Package

rpcq.

Methods
Reader Method: qgs-channel-gain ((qgschannel qgschannel))
Writer Method: (setf qgs-channel-gain) ((qgschannel qgschannel))

The output gain on the DAC in [dB]. Note that this
should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: qgs-channel-nco-frequency (object)
Generic Writer: (setf qgs-channel-nco-frequency) (object)
Package

rpcq.

Methods
Reader Method: qgs-channel-nco-frequency ((qgschannel qgschannel))
Writer Method: (setf qgs-channel-nco-frequency) ((qgschannel qgschannel))

The DAC NCO frequency [Hz].

Source

core-messages.lisp.

Target Slot

nco_frequency.

Generic Reader: qgs-sequencer-sequencer-index (object)
Generic Writer: (setf qgs-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: qgs-sequencer-sequencer-index ((qgssequencer qgssequencer))
Writer Method: (setf qgs-sequencer-sequencer-index) ((qgssequencer qgssequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qgs-sequencer-tx-channel (object)
Generic Writer: (setf qgs-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: qgs-sequencer-tx-channel ((qgssequencer qgssequencer))
Writer Method: (setf qgs-sequencer-tx-channel) ((qgssequencer qgssequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qgschannel-channel_index (object)
Generic Writer: (setf qgschannel-channel_index) (object)
Package

rpcq.

Methods
Reader Method: qgschannel-channel_index ((qgschannel qgschannel))
Writer Method: (setf qgschannel-channel_index) ((qgschannel qgschannel))

The channel index on the QGS, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qgschannel-delay (object)
Generic Writer: (setf qgschannel-delay) (object)
Package

rpcq.

Methods
Reader Method: qgschannel-delay ((qgschannel qgschannel))
Writer Method: (setf qgschannel-delay) ((qgschannel qgschannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qgschannel-direction (object)
Generic Writer: (setf qgschannel-direction) (object)
Package

rpcq.

Methods
Reader Method: qgschannel-direction ((qgschannel qgschannel))
Writer Method: (setf qgschannel-direction) ((qgschannel qgschannel))

The QGS is a device that transmits pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qgschannel-gain (object)
Generic Writer: (setf qgschannel-gain) (object)
Package

rpcq.

Methods
Reader Method: qgschannel-gain ((qgschannel qgschannel))
Writer Method: (setf qgschannel-gain) ((qgschannel qgschannel))

The output gain on the DAC in [dB]. Note that this
should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: qgschannel-nco_frequency (object)
Generic Writer: (setf qgschannel-nco_frequency) (object)
Package

rpcq.

Methods
Reader Method: qgschannel-nco_frequency ((qgschannel qgschannel))
Writer Method: (setf qgschannel-nco_frequency) ((qgschannel qgschannel))

The DAC NCO frequency [Hz].

Source

core-messages.lisp.

Target Slot

nco_frequency.

Generic Reader: qgssequencer-sequencer_index (object)
Generic Writer: (setf qgssequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: qgssequencer-sequencer_index ((qgssequencer qgssequencer))
Writer Method: (setf qgssequencer-sequencer_index) ((qgssequencer qgssequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qgssequencer-tx_channel (object)
Generic Writer: (setf qgssequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: qgssequencer-tx_channel ((qgssequencer qgssequencer))
Writer Method: (setf qgssequencer-tx_channel) ((qgssequencer qgssequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qgsx2sequencer-sequencer_index (object)
Generic Writer: (setf qgsx2sequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: qgsx2sequencer-sequencer_index ((qgsx2sequencer qgsx2sequencer))
Writer Method: (setf qgsx2sequencer-sequencer_index) ((qgsx2sequencer qgsx2sequencer))

The sequencer index of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qgsx2sequencer-tx_channel (object)
Generic Writer: (setf qgsx2sequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: qgsx2sequencer-tx_channel ((qgsx2sequencer qgsx2sequencer))
Writer Method: (setf qgsx2sequencer-tx_channel) ((qgsx2sequencer qgsx2sequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qpu-chip-label (object)
Generic Writer: (setf qpu-chip-label) (object)
Package

rpcq.

Methods
Reader Method: qpu-chip-label ((qpu qpu))
Writer Method: (setf qpu-chip-label) ((qpu qpu))

The fabrication label for the QPU chip.

Source

core-messages.lisp.

Target Slot

chip_label.

Generic Reader: qpu-chip_label (object)
Generic Writer: (setf qpu-chip_label) (object)
Package

rpcq.

Methods
Reader Method: qpu-chip_label ((qpu qpu))
Writer Method: (setf qpu-chip_label) ((qpu qpu))

The fabrication label for the QPU chip.

Source

core-messages.lisp.

Target Slot

chip_label.

Generic Reader: qpu-controls (object)
Generic Writer: (setf qpu-controls) (object)
Package

rpcq.

Methods
Reader Method: qpu-controls ((qpu qpu))
Writer Method: (setf qpu-controls) ((qpu qpu))

A mapping of control labels to tuples (instrument label, channel label).

Source

core-messages.lisp.

Target Slot

controls.

Generic Reader: qpu-controls (object)
Generic Writer: (setf qpu-controls) (object)
Package

rpcq.

Methods
Reader Method: qpu-controls ((qpu qpu))
Writer Method: (setf qpu-controls) ((qpu qpu))

A mapping of control labels to tuples (instrument label, channel label).

Source

core-messages.lisp.

Target Slot

controls.

Generic Reader: qpu-controls-by-qubit (object)
Generic Writer: (setf qpu-controls-by-qubit) (object)
Package

rpcq.

Methods
Reader Method: qpu-controls-by-qubit ((qpu qpu))
Writer Method: (setf qpu-controls-by-qubit) ((qpu qpu))

A map of qubit label to list of controls that should be
considered blocked when the qubit is part of a job execution.

Source

core-messages.lisp.

Target Slot

controls_by_qubit.

Generic Reader: qpu-controls_by_qubit (object)
Generic Writer: (setf qpu-controls_by_qubit) (object)
Package

rpcq.

Methods
Reader Method: qpu-controls_by_qubit ((qpu qpu))
Writer Method: (setf qpu-controls_by_qubit) ((qpu qpu))

A map of qubit label to list of controls that should be
considered blocked when the qubit is part of a job execution.

Source

core-messages.lisp.

Target Slot

controls_by_qubit.

Generic Reader: qpu-qubits (object)
Generic Writer: (setf qpu-qubits) (object)
Package

rpcq.

Methods
Reader Method: qpu-qubits ((qpu qpu))
Writer Method: (setf qpu-qubits) ((qpu qpu))

A list of qubits labels.

Source

core-messages.lisp.

Target Slot

qubits.

Generic Reader: qpu-qubits (object)
Generic Writer: (setf qpu-qubits) (object)
Package

rpcq.

Methods
Reader Method: qpu-qubits ((qpu qpu))
Writer Method: (setf qpu-qubits) ((qpu qpu))

A list of qubits labels.

Source

core-messages.lisp.

Target Slot

qubits.

Generic Reader: qpu-request-id (object)
Generic Writer: (setf qpu-request-id) (object)
Package

rpcq.

Methods
Reader Method: qpu-request-id ((qpurequest qpurequest))
Writer Method: (setf qpu-request-id) ((qpurequest qpurequest))

QPU request ID.

Source

messages.lisp.

Target Slot

id.

Generic Reader: qpu-request-patch-values (object)
Generic Writer: (setf qpu-request-patch-values) (object)
Package

rpcq.

Methods
Reader Method: qpu-request-patch-values ((qpurequest qpurequest))
Writer Method: (setf qpu-request-patch-values) ((qpurequest qpurequest))

Dictionary mapping data names to data values for patching the binary.

Source

messages.lisp.

Target Slot

patch_values.

Generic Reader: qpu-request-program (object)
Generic Writer: (setf qpu-request-program) (object)
Package

rpcq.

Methods
Reader Method: qpu-request-program ((qpurequest qpurequest))
Writer Method: (setf qpu-request-program) ((qpurequest qpurequest))

Execution settings and sequencer binaries.

Source

messages.lisp.

Target Slot

program.

Generic Reader: qpurequest-id (object)
Generic Writer: (setf qpurequest-id) (object)
Package

rpcq.

Methods
Reader Method: qpurequest-id ((qpurequest qpurequest))
Writer Method: (setf qpurequest-id) ((qpurequest qpurequest))

QPU request ID.

Source

messages.lisp.

Target Slot

id.

Generic Reader: qpurequest-patch_values (object)
Generic Writer: (setf qpurequest-patch_values) (object)
Package

rpcq.

Methods
Reader Method: qpurequest-patch_values ((qpurequest qpurequest))
Writer Method: (setf qpurequest-patch_values) ((qpurequest qpurequest))

Dictionary mapping data names to data values for patching the binary.

Source

messages.lisp.

Target Slot

patch_values.

Generic Reader: qpurequest-program (object)
Generic Writer: (setf qpurequest-program) (object)
Package

rpcq.

Methods
Reader Method: qpurequest-program ((qpurequest qpurequest))
Writer Method: (setf qpurequest-program) ((qpurequest qpurequest))

Execution settings and sequencer binaries.

Source

messages.lisp.

Target Slot

program.

Generic Reader: qr-tx-2-sequencer-low-freq-range (object)
Generic Writer: (setf qr-tx-2-sequencer-low-freq-range) (object)
Package

rpcq.

Methods
Reader Method: qr-tx-2-sequencer-low-freq-range ((qrtx2sequencer qrtx2sequencer))
Writer Method: (setf qr-tx-2-sequencer-low-freq-range) ((qrtx2sequencer qrtx2sequencer))

Used to signal if this sequencer is in the low frequency configuration.

Source

core-messages.lisp.

Target Slot

low_freq_range.

Generic Reader: qr-tx-2-sequencer-sequencer-index (object)
Generic Writer: (setf qr-tx-2-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: qr-tx-2-sequencer-sequencer-index ((qrtx2sequencer qrtx2sequencer))
Writer Method: (setf qr-tx-2-sequencer-sequencer-index) ((qrtx2sequencer qrtx2sequencer))

The sequencer index (0-15) of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qr-tx-2-sequencer-tx-channel (object)
Generic Writer: (setf qr-tx-2-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: qr-tx-2-sequencer-tx-channel ((qrtx2sequencer qrtx2sequencer))
Writer Method: (setf qr-tx-2-sequencer-tx-channel) ((qrtx2sequencer qrtx2sequencer))

The label of the associated tx channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qrr-channel-channel-index (object)
Generic Writer: (setf qrr-channel-channel-index) (object)
Package

rpcq.

Methods
Reader Method: qrr-channel-channel-index ((qrrchannel qrrchannel))
Writer Method: (setf qrr-channel-channel-index) ((qrrchannel qrrchannel))

The channel index on the QRR, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qrr-channel-delay (object)
Generic Writer: (setf qrr-channel-delay) (object)
Package

rpcq.

Methods
Reader Method: qrr-channel-delay ((qrrchannel qrrchannel))
Writer Method: (setf qrr-channel-delay) ((qrrchannel qrrchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qrr-channel-direction (object)
Generic Writer: (setf qrr-channel-direction) (object)
Package

rpcq.

Methods
Reader Method: qrr-channel-direction ((qrrchannel qrrchannel))
Writer Method: (setf qrr-channel-direction) ((qrrchannel qrrchannel))

The QRR is a device that receives readout pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qrr-channel-gain (object)
Generic Writer: (setf qrr-channel-gain) (object)
Package

rpcq.

Methods
Reader Method: qrr-channel-gain ((qrrchannel qrrchannel))
Writer Method: (setf qrr-channel-gain) ((qrrchannel qrrchannel))

The input gain on the ADC in [dB]. Note that this should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: qrr-channel-nco-frequency (object)
Generic Writer: (setf qrr-channel-nco-frequency) (object)
Package

rpcq.

Methods
Reader Method: qrr-channel-nco-frequency ((qrrchannel qrrchannel))
Writer Method: (setf qrr-channel-nco-frequency) ((qrrchannel qrrchannel))

The ADC NCO frequency [Hz].

Source

core-messages.lisp.

Target Slot

nco_frequency.

Generic Reader: qrr-sequencer-rx-channel (object)
Generic Writer: (setf qrr-sequencer-rx-channel) (object)
Package

rpcq.

Methods
Reader Method: qrr-sequencer-rx-channel ((qrrsequencer qrrsequencer))
Writer Method: (setf qrr-sequencer-rx-channel) ((qrrsequencer qrrsequencer))

The label of the associated rx channel.

Source

core-messages.lisp.

Target Slot

rx_channel.

Generic Reader: qrr-sequencer-sequencer-index (object)
Generic Writer: (setf qrr-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: qrr-sequencer-sequencer-index ((qrrsequencer qrrsequencer))
Writer Method: (setf qrr-sequencer-sequencer-index) ((qrrsequencer qrrsequencer))

The sequencer index (0-15) to assign. Note that only sequencer 0 can return raw readout measurements.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qrrchannel-channel_index (object)
Generic Writer: (setf qrrchannel-channel_index) (object)
Package

rpcq.

Methods
Reader Method: qrrchannel-channel_index ((qrrchannel qrrchannel))
Writer Method: (setf qrrchannel-channel_index) ((qrrchannel qrrchannel))

The channel index on the QRR, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qrrchannel-delay (object)
Generic Writer: (setf qrrchannel-delay) (object)
Package

rpcq.

Methods
Reader Method: qrrchannel-delay ((qrrchannel qrrchannel))
Writer Method: (setf qrrchannel-delay) ((qrrchannel qrrchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qrrchannel-direction (object)
Generic Writer: (setf qrrchannel-direction) (object)
Package

rpcq.

Methods
Reader Method: qrrchannel-direction ((qrrchannel qrrchannel))
Writer Method: (setf qrrchannel-direction) ((qrrchannel qrrchannel))

The QRR is a device that receives readout pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qrrchannel-gain (object)
Generic Writer: (setf qrrchannel-gain) (object)
Package

rpcq.

Methods
Reader Method: qrrchannel-gain ((qrrchannel qrrchannel))
Writer Method: (setf qrrchannel-gain) ((qrrchannel qrrchannel))

The input gain on the ADC in [dB]. Note that this should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: qrrchannel-nco_frequency (object)
Generic Writer: (setf qrrchannel-nco_frequency) (object)
Package

rpcq.

Methods
Reader Method: qrrchannel-nco_frequency ((qrrchannel qrrchannel))
Writer Method: (setf qrrchannel-nco_frequency) ((qrrchannel qrrchannel))

The ADC NCO frequency [Hz].

Source

core-messages.lisp.

Target Slot

nco_frequency.

Generic Reader: qrrsequencer-rx_channel (object)
Generic Writer: (setf qrrsequencer-rx_channel) (object)
Package

rpcq.

Methods
Reader Method: qrrsequencer-rx_channel ((qrrsequencer qrrsequencer))
Writer Method: (setf qrrsequencer-rx_channel) ((qrrsequencer qrrsequencer))

The label of the associated rx channel.

Source

core-messages.lisp.

Target Slot

rx_channel.

Generic Reader: qrrsequencer-sequencer_index (object)
Generic Writer: (setf qrrsequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: qrrsequencer-sequencer_index ((qrrsequencer qrrsequencer))
Writer Method: (setf qrrsequencer-sequencer_index) ((qrrsequencer qrrsequencer))

The sequencer index (0-15) to assign. Note that only sequencer 0 can return raw readout measurements.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qrt-channel-channel-index (object)
Generic Writer: (setf qrt-channel-channel-index) (object)
Package

rpcq.

Methods
Reader Method: qrt-channel-channel-index ((qrtchannel qrtchannel))
Writer Method: (setf qrt-channel-channel-index) ((qrtchannel qrtchannel))

The channel index on the QRT, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qrt-channel-delay (object)
Generic Writer: (setf qrt-channel-delay) (object)
Package

rpcq.

Methods
Reader Method: qrt-channel-delay ((qrtchannel qrtchannel))
Writer Method: (setf qrt-channel-delay) ((qrtchannel qrtchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qrt-channel-direction (object)
Generic Writer: (setf qrt-channel-direction) (object)
Package

rpcq.

Methods
Reader Method: qrt-channel-direction ((qrtchannel qrtchannel))
Writer Method: (setf qrt-channel-direction) ((qrtchannel qrtchannel))

The QRT is a device that transmits readout pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qrt-channel-gain (object)
Generic Writer: (setf qrt-channel-gain) (object)
Package

rpcq.

Methods
Reader Method: qrt-channel-gain ((qrtchannel qrtchannel))
Writer Method: (setf qrt-channel-gain) ((qrtchannel qrtchannel))

The output gain on the DAC in [dB]. Note that this should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: qrt-channel-nco-frequency (object)
Generic Writer: (setf qrt-channel-nco-frequency) (object)
Package

rpcq.

Methods
Reader Method: qrt-channel-nco-frequency ((qrtchannel qrtchannel))
Writer Method: (setf qrt-channel-nco-frequency) ((qrtchannel qrtchannel))

The DAC NCO frequency [Hz].

Source

core-messages.lisp.

Target Slot

nco_frequency.

Generic Reader: qrt-sequencer-low-freq-range (object)
Generic Writer: (setf qrt-sequencer-low-freq-range) (object)
Package

rpcq.

Methods
Reader Method: qrt-sequencer-low-freq-range ((qrtsequencer qrtsequencer))
Writer Method: (setf qrt-sequencer-low-freq-range) ((qrtsequencer qrtsequencer))

Used to signal if this sequencer is in the low frequency configuration.

Source

core-messages.lisp.

Target Slot

low_freq_range.

Generic Reader: qrt-sequencer-sequencer-index (object)
Generic Writer: (setf qrt-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: qrt-sequencer-sequencer-index ((qrtsequencer qrtsequencer))
Writer Method: (setf qrt-sequencer-sequencer-index) ((qrtsequencer qrtsequencer))

The sequencer index (0-7) of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qrt-sequencer-tx-channel (object)
Generic Writer: (setf qrt-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: qrt-sequencer-tx-channel ((qrtsequencer qrtsequencer))
Writer Method: (setf qrt-sequencer-tx-channel) ((qrtsequencer qrtsequencer))

The label of the associated tx channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qrtchannel-channel_index (object)
Generic Writer: (setf qrtchannel-channel_index) (object)
Package

rpcq.

Methods
Reader Method: qrtchannel-channel_index ((qrtchannel qrtchannel))
Writer Method: (setf qrtchannel-channel_index) ((qrtchannel qrtchannel))

The channel index on the QRT, zero indexed from the lowest channel, as installed in the box.

Source

core-messages.lisp.

Target Slot

channel_index.

Generic Reader: qrtchannel-delay (object)
Generic Writer: (setf qrtchannel-delay) (object)
Package

rpcq.

Methods
Reader Method: qrtchannel-delay ((qrtchannel qrtchannel))
Writer Method: (setf qrtchannel-delay) ((qrtchannel qrtchannel))

Delay [seconds] to account for inter-channel skew.

Source

core-messages.lisp.

Target Slot

delay.

Generic Reader: qrtchannel-direction (object)
Generic Writer: (setf qrtchannel-direction) (object)
Package

rpcq.

Methods
Reader Method: qrtchannel-direction ((qrtchannel qrtchannel))
Writer Method: (setf qrtchannel-direction) ((qrtchannel qrtchannel))

The QRT is a device that transmits readout pulses.

Source

core-messages.lisp.

Target Slot

direction.

Generic Reader: qrtchannel-gain (object)
Generic Writer: (setf qrtchannel-gain) (object)
Package

rpcq.

Methods
Reader Method: qrtchannel-gain ((qrtchannel qrtchannel))
Writer Method: (setf qrtchannel-gain) ((qrtchannel qrtchannel))

The output gain on the DAC in [dB]. Note that this should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Source

core-messages.lisp.

Target Slot

gain.

Generic Reader: qrtchannel-nco_frequency (object)
Generic Writer: (setf qrtchannel-nco_frequency) (object)
Package

rpcq.

Methods
Reader Method: qrtchannel-nco_frequency ((qrtchannel qrtchannel))
Writer Method: (setf qrtchannel-nco_frequency) ((qrtchannel qrtchannel))

The DAC NCO frequency [Hz].

Source

core-messages.lisp.

Target Slot

nco_frequency.

Generic Reader: qrtsequencer-low_freq_range (object)
Generic Writer: (setf qrtsequencer-low_freq_range) (object)
Package

rpcq.

Methods
Reader Method: qrtsequencer-low_freq_range ((qrtsequencer qrtsequencer))
Writer Method: (setf qrtsequencer-low_freq_range) ((qrtsequencer qrtsequencer))

Used to signal if this sequencer is in the low frequency configuration.

Source

core-messages.lisp.

Target Slot

low_freq_range.

Generic Reader: qrtsequencer-sequencer_index (object)
Generic Writer: (setf qrtsequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: qrtsequencer-sequencer_index ((qrtsequencer qrtsequencer))
Writer Method: (setf qrtsequencer-sequencer_index) ((qrtsequencer qrtsequencer))

The sequencer index (0-7) of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qrtsequencer-tx_channel (object)
Generic Writer: (setf qrtsequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: qrtsequencer-tx_channel ((qrtsequencer qrtsequencer))
Writer Method: (setf qrtsequencer-tx_channel) ((qrtsequencer qrtsequencer))

The label of the associated tx channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: qrtx2sequencer-low_freq_range (object)
Generic Writer: (setf qrtx2sequencer-low_freq_range) (object)
Package

rpcq.

Methods
Reader Method: qrtx2sequencer-low_freq_range ((qrtx2sequencer qrtx2sequencer))
Writer Method: (setf qrtx2sequencer-low_freq_range) ((qrtx2sequencer qrtx2sequencer))

Used to signal if this sequencer is in the low frequency configuration.

Source

core-messages.lisp.

Target Slot

low_freq_range.

Generic Reader: qrtx2sequencer-sequencer_index (object)
Generic Writer: (setf qrtx2sequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: qrtx2sequencer-sequencer_index ((qrtx2sequencer qrtx2sequencer))
Writer Method: (setf qrtx2sequencer-sequencer_index) ((qrtx2sequencer qrtx2sequencer))

The sequencer index (0-15) of this sequencer.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: qrtx2sequencer-tx_channel (object)
Generic Writer: (setf qrtx2sequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: qrtx2sequencer-tx_channel ((qrtx2sequencer qrtx2sequencer))
Writer Method: (setf qrtx2sequencer-tx_channel) ((qrtx2sequencer qrtx2sequencer))

The label of the associated tx channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: quilt-binary-executable-request-num-shots (object)
Generic Writer: (setf quilt-binary-executable-request-num-shots) (object)
Package

rpcq.

Methods
Reader Method: quilt-binary-executable-request-num-shots ((quiltbinaryexecutablerequest quiltbinaryexecutablerequest))
Writer Method: (setf quilt-binary-executable-request-num-shots) ((quiltbinaryexecutablerequest quiltbinaryexecutablerequest))

The number of times to repeat the program.

Source

messages.lisp.

Target Slot

num_shots.

Generic Reader: quilt-binary-executable-request-quilt (object)
Generic Writer: (setf quilt-binary-executable-request-quilt) (object)
Package

rpcq.

Methods
Reader Method: quilt-binary-executable-request-quilt ((quiltbinaryexecutablerequest quiltbinaryexecutablerequest))
Writer Method: (setf quilt-binary-executable-request-quilt) ((quiltbinaryexecutablerequest quiltbinaryexecutablerequest))

Native Quilt to be translated into an executable program.

Source

messages.lisp.

Target Slot

quilt.

Generic Reader: quilt-binary-executable-response-debug (object)
Generic Writer: (setf quilt-binary-executable-response-debug) (object)
Package

rpcq.

Methods
Reader Method: quilt-binary-executable-response-debug ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))
Writer Method: (setf quilt-binary-executable-response-debug) ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))

Debug information associated with the translation process.

Source

messages.lisp.

Target Slot

debug.

Generic Reader: quilt-binary-executable-response-memory-descriptors (object)
Generic Writer: (setf quilt-binary-executable-response-memory-descriptors) (object)
Package

rpcq.

Methods
Reader Method: quilt-binary-executable-response-memory-descriptors ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))
Writer Method: (setf quilt-binary-executable-response-memory-descriptors) ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))

Internal field for constructing patch tables.

Source

messages.lisp.

Target Slot

memory_descriptors.

Generic Reader: quilt-binary-executable-response-program (object)
Generic Writer: (setf quilt-binary-executable-response-program) (object)
Package

rpcq.

Methods
Reader Method: quilt-binary-executable-response-program ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))
Writer Method: (setf quilt-binary-executable-response-program) ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))

Execution settings and sequencer binaries.

Source

messages.lisp.

Target Slot

program.

Generic Reader: quilt-binary-executable-response-ro-sources (object)
Generic Writer: (setf quilt-binary-executable-response-ro-sources) (object)
Package

rpcq.

Methods
Reader Method: quilt-binary-executable-response-ro-sources ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))
Writer Method: (setf quilt-binary-executable-response-ro-sources) ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))

Internal field for reshaping returned buffers.

Source

messages.lisp.

Target Slot

ro_sources.

Generic Reader: quilt-calibrations-request-target-device (object)
Generic Writer: (setf quilt-calibrations-request-target-device) (object)
Package

rpcq.

Methods
Reader Method: quilt-calibrations-request-target-device ((quiltcalibrationsrequest quiltcalibrationsrequest))
Writer Method: (setf quilt-calibrations-request-target-device) ((quiltcalibrationsrequest quiltcalibrationsrequest))

Specifications for the device to get calibrations for.

Source

messages.lisp.

Target Slot

target_device.

Generic Reader: quilt-calibrations-response-quilt (object)
Generic Writer: (setf quilt-calibrations-response-quilt) (object)
Package

rpcq.

Methods
Reader Method: quilt-calibrations-response-quilt ((quiltcalibrationsresponse quiltcalibrationsresponse))
Writer Method: (setf quilt-calibrations-response-quilt) ((quiltcalibrationsresponse quiltcalibrationsresponse))

Quilt code with definitions for frames, waveforms, and calibrations.

Source

messages.lisp.

Target Slot

quilt.

Generic Reader: quiltbinaryexecutablerequest-num_shots (object)
Generic Writer: (setf quiltbinaryexecutablerequest-num_shots) (object)
Package

rpcq.

Methods
Reader Method: quiltbinaryexecutablerequest-num_shots ((quiltbinaryexecutablerequest quiltbinaryexecutablerequest))
Writer Method: (setf quiltbinaryexecutablerequest-num_shots) ((quiltbinaryexecutablerequest quiltbinaryexecutablerequest))

The number of times to repeat the program.

Source

messages.lisp.

Target Slot

num_shots.

Generic Reader: quiltbinaryexecutablerequest-quilt (object)
Generic Writer: (setf quiltbinaryexecutablerequest-quilt) (object)
Package

rpcq.

Methods
Reader Method: quiltbinaryexecutablerequest-quilt ((quiltbinaryexecutablerequest quiltbinaryexecutablerequest))
Writer Method: (setf quiltbinaryexecutablerequest-quilt) ((quiltbinaryexecutablerequest quiltbinaryexecutablerequest))

Native Quilt to be translated into an executable program.

Source

messages.lisp.

Target Slot

quilt.

Generic Reader: quiltbinaryexecutableresponse-debug (object)
Generic Writer: (setf quiltbinaryexecutableresponse-debug) (object)
Package

rpcq.

Methods
Reader Method: quiltbinaryexecutableresponse-debug ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))
Writer Method: (setf quiltbinaryexecutableresponse-debug) ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))

Debug information associated with the translation process.

Source

messages.lisp.

Target Slot

debug.

Generic Reader: quiltbinaryexecutableresponse-memory_descriptors (object)
Generic Writer: (setf quiltbinaryexecutableresponse-memory_descriptors) (object)
Package

rpcq.

Methods
Reader Method: quiltbinaryexecutableresponse-memory_descriptors ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))
Writer Method: (setf quiltbinaryexecutableresponse-memory_descriptors) ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))

Internal field for constructing patch tables.

Source

messages.lisp.

Target Slot

memory_descriptors.

Generic Reader: quiltbinaryexecutableresponse-program (object)
Generic Writer: (setf quiltbinaryexecutableresponse-program) (object)
Package

rpcq.

Methods
Reader Method: quiltbinaryexecutableresponse-program ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))
Writer Method: (setf quiltbinaryexecutableresponse-program) ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))

Execution settings and sequencer binaries.

Source

messages.lisp.

Target Slot

program.

Generic Reader: quiltbinaryexecutableresponse-ro_sources (object)
Generic Writer: (setf quiltbinaryexecutableresponse-ro_sources) (object)
Package

rpcq.

Methods
Reader Method: quiltbinaryexecutableresponse-ro_sources ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))
Writer Method: (setf quiltbinaryexecutableresponse-ro_sources) ((quiltbinaryexecutableresponse quiltbinaryexecutableresponse))

Internal field for reshaping returned buffers.

Source

messages.lisp.

Target Slot

ro_sources.

Generic Reader: quiltcalibrationsrequest-target_device (object)
Generic Writer: (setf quiltcalibrationsrequest-target_device) (object)
Package

rpcq.

Methods
Reader Method: quiltcalibrationsrequest-target_device ((quiltcalibrationsrequest quiltcalibrationsrequest))
Writer Method: (setf quiltcalibrationsrequest-target_device) ((quiltcalibrationsrequest quiltcalibrationsrequest))

Specifications for the device to get calibrations for.

Source

messages.lisp.

Target Slot

target_device.

Generic Reader: quiltcalibrationsresponse-quilt (object)
Generic Writer: (setf quiltcalibrationsresponse-quilt) (object)
Package

rpcq.

Methods
Reader Method: quiltcalibrationsresponse-quilt ((quiltcalibrationsresponse quiltcalibrationsresponse))
Writer Method: (setf quiltcalibrationsresponse-quilt) ((quiltcalibrationsresponse quiltcalibrationsresponse))

Quilt code with definitions for frames, waveforms, and calibrations.

Source

messages.lisp.

Target Slot

quilt.

Generic Reader: rack-meta-rack-id (object)
Generic Writer: (setf rack-meta-rack-id) (object)
Package

rpcq.

Methods
Reader Method: rack-meta-rack-id ((rackmeta rackmeta))
Writer Method: (setf rack-meta-rack-id) ((rackmeta rackmeta))

A unique identifier for the rack.

Source

core-messages.lisp.

Target Slot

rack_id.

Generic Reader: rack-meta-rack-version (object)
Generic Writer: (setf rack-meta-rack-version) (object)
Package

rpcq.

Methods
Reader Method: rack-meta-rack-version ((rackmeta rackmeta))
Writer Method: (setf rack-meta-rack-version) ((rackmeta rackmeta))

A version of the rack configuration.

Source

core-messages.lisp.

Target Slot

rack_version.

Generic Reader: rack-meta-schema-version (object)
Generic Writer: (setf rack-meta-schema-version) (object)
Package

rpcq.

Methods
Reader Method: rack-meta-schema-version ((rackmeta rackmeta))
Writer Method: (setf rack-meta-schema-version) ((rackmeta rackmeta))

A version of the rack configuration.

Source

core-messages.lisp.

Target Slot

schema_version.

Generic Reader: rackmeta-rack_id (object)
Generic Writer: (setf rackmeta-rack_id) (object)
Package

rpcq.

Methods
Reader Method: rackmeta-rack_id ((rackmeta rackmeta))
Writer Method: (setf rackmeta-rack_id) ((rackmeta rackmeta))

A unique identifier for the rack.

Source

core-messages.lisp.

Target Slot

rack_id.

Generic Reader: rackmeta-rack_version (object)
Generic Writer: (setf rackmeta-rack_version) (object)
Package

rpcq.

Methods
Reader Method: rackmeta-rack_version ((rackmeta rackmeta))
Writer Method: (setf rackmeta-rack_version) ((rackmeta rackmeta))

A version of the rack configuration.

Source

core-messages.lisp.

Target Slot

rack_version.

Generic Reader: rackmeta-schema_version (object)
Generic Writer: (setf rackmeta-schema_version) (object)
Package

rpcq.

Methods
Reader Method: rackmeta-schema_version ((rackmeta rackmeta))
Writer Method: (setf rackmeta-schema_version) ((rackmeta rackmeta))

A version of the rack configuration.

Source

core-messages.lisp.

Target Slot

schema_version.

Generic Reader: randomized-benchmarking-request-depth (object)
Generic Writer: (setf randomized-benchmarking-request-depth) (object)
Package

rpcq.

Methods
Reader Method: randomized-benchmarking-request-depth ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomized-benchmarking-request-depth) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

Depth of the benchmarking sequence.

Source

messages.lisp.

Target Slot

depth.

Generic Reader: randomized-benchmarking-request-gateset (object)
Generic Writer: (setf randomized-benchmarking-request-gateset) (object)
Package

rpcq.

Methods
Reader Method: randomized-benchmarking-request-gateset ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomized-benchmarking-request-gateset) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

List of Quil programs, each describing a Clifford.

Source

messages.lisp.

Target Slot

gateset.

Generic Reader: randomized-benchmarking-request-interleaver (object)
Generic Writer: (setf randomized-benchmarking-request-interleaver) (object)
Package

rpcq.

Methods
Reader Method: randomized-benchmarking-request-interleaver ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomized-benchmarking-request-interleaver) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

Fixed Clifford, specified as a Quil string, to interleave through an RB sequence.

Source

messages.lisp.

Target Slot

interleaver.

Generic Reader: randomized-benchmarking-request-qubits (object)
Generic Writer: (setf randomized-benchmarking-request-qubits) (object)
Package

rpcq.

Methods
Reader Method: randomized-benchmarking-request-qubits ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomized-benchmarking-request-qubits) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

Number of qubits involved in the benchmarking sequence.

Source

messages.lisp.

Target Slot

qubits.

Generic Reader: randomized-benchmarking-request-seed (object)
Generic Writer: (setf randomized-benchmarking-request-seed) (object)
Package

rpcq.

Methods
Reader Method: randomized-benchmarking-request-seed ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomized-benchmarking-request-seed) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

PRNG seed. Set this to guarantee repeatable results.

Source

messages.lisp.

Target Slot

seed.

Generic Reader: randomized-benchmarking-response-sequence (object)
Generic Writer: (setf randomized-benchmarking-response-sequence) (object)
Package

rpcq.

Methods
Reader Method: randomized-benchmarking-response-sequence ((randomizedbenchmarkingresponse randomizedbenchmarkingresponse))
Writer Method: (setf randomized-benchmarking-response-sequence) ((randomizedbenchmarkingresponse randomizedbenchmarkingresponse))

List of Cliffords, each expressed as a list of generator indices.

Source

messages.lisp.

Target Slot

sequence.

Generic Reader: randomizedbenchmarkingrequest-depth (object)
Generic Writer: (setf randomizedbenchmarkingrequest-depth) (object)
Package

rpcq.

Methods
Reader Method: randomizedbenchmarkingrequest-depth ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomizedbenchmarkingrequest-depth) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

Depth of the benchmarking sequence.

Source

messages.lisp.

Target Slot

depth.

Generic Reader: randomizedbenchmarkingrequest-gateset (object)
Generic Writer: (setf randomizedbenchmarkingrequest-gateset) (object)
Package

rpcq.

Methods
Reader Method: randomizedbenchmarkingrequest-gateset ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomizedbenchmarkingrequest-gateset) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

List of Quil programs, each describing a Clifford.

Source

messages.lisp.

Target Slot

gateset.

Generic Reader: randomizedbenchmarkingrequest-interleaver (object)
Generic Writer: (setf randomizedbenchmarkingrequest-interleaver) (object)
Package

rpcq.

Methods
Reader Method: randomizedbenchmarkingrequest-interleaver ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomizedbenchmarkingrequest-interleaver) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

Fixed Clifford, specified as a Quil string, to interleave through an RB sequence.

Source

messages.lisp.

Target Slot

interleaver.

Generic Reader: randomizedbenchmarkingrequest-qubits (object)
Generic Writer: (setf randomizedbenchmarkingrequest-qubits) (object)
Package

rpcq.

Methods
Reader Method: randomizedbenchmarkingrequest-qubits ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomizedbenchmarkingrequest-qubits) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

Number of qubits involved in the benchmarking sequence.

Source

messages.lisp.

Target Slot

qubits.

Generic Reader: randomizedbenchmarkingrequest-seed (object)
Generic Writer: (setf randomizedbenchmarkingrequest-seed) (object)
Package

rpcq.

Methods
Reader Method: randomizedbenchmarkingrequest-seed ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))
Writer Method: (setf randomizedbenchmarkingrequest-seed) ((randomizedbenchmarkingrequest randomizedbenchmarkingrequest))

PRNG seed. Set this to guarantee repeatable results.

Source

messages.lisp.

Target Slot

seed.

Generic Reader: randomizedbenchmarkingresponse-sequence (object)
Generic Writer: (setf randomizedbenchmarkingresponse-sequence) (object)
Package

rpcq.

Methods
Reader Method: randomizedbenchmarkingresponse-sequence ((randomizedbenchmarkingresponse randomizedbenchmarkingresponse))
Writer Method: (setf randomizedbenchmarkingresponse-sequence) ((randomizedbenchmarkingresponse randomizedbenchmarkingresponse))

List of Cliffords, each expressed as a list of generator indices.

Source

messages.lisp.

Target Slot

sequence.

Generic Reader: receiver-channel (object)
Generic Writer: (setf receiver-channel) (object)
Package

rpcq.

Methods
Reader Method: receiver-channel ((receiver receiver))
Writer Method: (setf receiver-channel) ((receiver receiver))

The instrument channel (label)

Source

core-messages.lisp.

Target Slot

channel.

Generic Reader: receiver-channel (object)
Generic Writer: (setf receiver-channel) (object)
Package

rpcq.

Methods
Reader Method: receiver-channel ((receiver receiver))
Writer Method: (setf receiver-channel) ((receiver receiver))

The instrument channel (label)

Source

core-messages.lisp.

Target Slot

channel.

Generic Reader: receiver-data-axes (object)
Generic Writer: (setf receiver-data-axes) (object)
Package

rpcq.

Methods
Reader Method: receiver-data-axes ((receiver receiver))
Writer Method: (setf receiver-data-axes) ((receiver receiver))

Ordered list of DataAxis objects that together uniquely label each element in the stream.

Source

core-messages.lisp.

Target Slot

data_axes.

Generic Reader: receiver-data_axes (object)
Generic Writer: (setf receiver-data_axes) (object)
Package

rpcq.

Methods
Reader Method: receiver-data_axes ((receiver receiver))
Writer Method: (setf receiver-data_axes) ((receiver receiver))

Ordered list of DataAxis objects that together uniquely label each element in the stream.

Source

core-messages.lisp.

Target Slot

data_axes.

Generic Reader: receiver-instrument (object)
Generic Writer: (setf receiver-instrument) (object)
Package

rpcq.

Methods
Reader Method: receiver-instrument ((receiver receiver))
Writer Method: (setf receiver-instrument) ((receiver receiver))

The instrument name

Source

core-messages.lisp.

Target Slot

instrument.

Generic Reader: receiver-instrument (object)
Generic Writer: (setf receiver-instrument) (object)
Package

rpcq.

Methods
Reader Method: receiver-instrument ((receiver receiver))
Writer Method: (setf receiver-instrument) ((receiver receiver))

The instrument name

Source

core-messages.lisp.

Target Slot

instrument.

Generic Reader: receiver-publish (object)
Generic Writer: (setf receiver-publish) (object)
Package

rpcq.

Methods
Reader Method: receiver-publish ((receiver receiver))
Writer Method: (setf receiver-publish) ((receiver receiver))

Whether to publish the raw output stream.

Source

core-messages.lisp.

Target Slot

publish.

Generic Reader: receiver-publish (object)
Generic Writer: (setf receiver-publish) (object)
Package

rpcq.

Methods
Reader Method: receiver-publish ((receiver receiver))
Writer Method: (setf receiver-publish) ((receiver receiver))

Whether to publish the raw output stream.

Source

core-messages.lisp.

Target Slot

publish.

Generic Reader: receiver-stream (object)
Generic Writer: (setf receiver-stream) (object)
Package

rpcq.

Methods
Reader Method: receiver-stream ((receiver receiver))
Writer Method: (setf receiver-stream) ((receiver receiver))

Name of the associated (raw) output stream that should be published.

Source

core-messages.lisp.

Target Slot

stream.

Generic Reader: receiver-stream (object)
Generic Writer: (setf receiver-stream) (object)
Package

rpcq.

Methods
Reader Method: receiver-stream ((receiver receiver))
Writer Method: (setf receiver-stream) ((receiver receiver))

Name of the associated (raw) output stream that should be published.

Source

core-messages.lisp.

Target Slot

stream.

Generic Reader: resources-frames (object)
Generic Writer: (setf resources-frames) (object)
Package

rpcq.

Methods
Reader Method: resources-frames ((resources resources))
Writer Method: (setf resources-frames) ((resources resources))

RF/UHF frames by label.

Source

core-messages.lisp.

Target Slot

frames.

Generic Reader: resources-frames (object)
Generic Writer: (setf resources-frames) (object)
Package

rpcq.

Methods
Reader Method: resources-frames ((resources resources))
Writer Method: (setf resources-frames) ((resources resources))

RF/UHF frames by label.

Source

core-messages.lisp.

Target Slot

frames.

Generic Reader: resources-frames-to-controls (object)
Generic Writer: (setf resources-frames-to-controls) (object)
Package

rpcq.

Methods
Reader Method: resources-frames-to-controls ((resources resources))
Writer Method: (setf resources-frames-to-controls) ((resources resources))

Mapping of frames to control channels by labels.

Source

core-messages.lisp.

Target Slot

frames_to_controls.

Generic Reader: resources-frames_to_controls (object)
Generic Writer: (setf resources-frames_to_controls) (object)
Package

rpcq.

Methods
Reader Method: resources-frames_to_controls ((resources resources))
Writer Method: (setf resources-frames_to_controls) ((resources resources))

Mapping of frames to control channels by labels.

Source

core-messages.lisp.

Target Slot

frames_to_controls.

Generic Reader: resources-qubits (object)
Generic Writer: (setf resources-qubits) (object)
Package

rpcq.

Methods
Reader Method: resources-qubits ((resources resources))
Writer Method: (setf resources-qubits) ((resources resources))

A list of qubits blocked/required by a job.

Source

core-messages.lisp.

Target Slot

qubits.

Generic Reader: resources-qubits (object)
Generic Writer: (setf resources-qubits) (object)
Package

rpcq.

Methods
Reader Method: resources-qubits ((resources resources))
Writer Method: (setf resources-qubits) ((resources resources))

A list of qubits blocked/required by a job.

Source

core-messages.lisp.

Target Slot

qubits.

Generic Reader: rewrite-arithmetic-request-quil (object)
Generic Writer: (setf rewrite-arithmetic-request-quil) (object)
Package

rpcq.

Methods
Reader Method: rewrite-arithmetic-request-quil ((rewritearithmeticrequest rewritearithmeticrequest))
Writer Method: (setf rewrite-arithmetic-request-quil) ((rewritearithmeticrequest rewritearithmeticrequest))

Native Quil for which to rewrite arithmetic parameters.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: rewrite-arithmetic-response-original-memory-descriptors (object)
Generic Writer: (setf rewrite-arithmetic-response-original-memory-descriptors) (object)
Package

rpcq.

Methods
Reader Method: rewrite-arithmetic-response-original-memory-descriptors ((rewritearithmeticresponse rewritearithmeticresponse))
Writer Method: (setf rewrite-arithmetic-response-original-memory-descriptors) ((rewritearithmeticresponse rewritearithmeticresponse))

The declared memory descriptors in the Quil of the related request.

Source

messages.lisp.

Target Slot

original_memory_descriptors.

Generic Reader: rewrite-arithmetic-response-quil (object)
Generic Writer: (setf rewrite-arithmetic-response-quil) (object)
Package

rpcq.

Methods
Reader Method: rewrite-arithmetic-response-quil ((rewritearithmeticresponse rewritearithmeticresponse))
Writer Method: (setf rewrite-arithmetic-response-quil) ((rewritearithmeticresponse rewritearithmeticresponse))

Native Quil rewritten with no arithmetic in gate parameters.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: rewrite-arithmetic-response-recalculation-table (object)
Generic Writer: (setf rewrite-arithmetic-response-recalculation-table) (object)
Package

rpcq.

Methods
Reader Method: rewrite-arithmetic-response-recalculation-table ((rewritearithmeticresponse rewritearithmeticresponse))
Writer Method: (setf rewrite-arithmetic-response-recalculation-table) ((rewritearithmeticresponse rewritearithmeticresponse))

A mapping from memory references to the original gate arithmetic.

Source

messages.lisp.

Target Slot

recalculation_table.

Generic Reader: rewritearithmeticrequest-quil (object)
Generic Writer: (setf rewritearithmeticrequest-quil) (object)
Package

rpcq.

Methods
Reader Method: rewritearithmeticrequest-quil ((rewritearithmeticrequest rewritearithmeticrequest))
Writer Method: (setf rewritearithmeticrequest-quil) ((rewritearithmeticrequest rewritearithmeticrequest))

Native Quil for which to rewrite arithmetic parameters.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: rewritearithmeticresponse-original_memory_descriptors (object)
Generic Writer: (setf rewritearithmeticresponse-original_memory_descriptors) (object)
Package

rpcq.

Methods
Reader Method: rewritearithmeticresponse-original_memory_descriptors ((rewritearithmeticresponse rewritearithmeticresponse))
Writer Method: (setf rewritearithmeticresponse-original_memory_descriptors) ((rewritearithmeticresponse rewritearithmeticresponse))

The declared memory descriptors in the Quil of the related request.

Source

messages.lisp.

Target Slot

original_memory_descriptors.

Generic Reader: rewritearithmeticresponse-quil (object)
Generic Writer: (setf rewritearithmeticresponse-quil) (object)
Package

rpcq.

Methods
Reader Method: rewritearithmeticresponse-quil ((rewritearithmeticresponse rewritearithmeticresponse))
Writer Method: (setf rewritearithmeticresponse-quil) ((rewritearithmeticresponse rewritearithmeticresponse))

Native Quil rewritten with no arithmetic in gate parameters.

Source

messages.lisp.

Target Slot

quil.

Generic Reader: rewritearithmeticresponse-recalculation_table (object)
Generic Writer: (setf rewritearithmeticresponse-recalculation_table) (object)
Package

rpcq.

Methods
Reader Method: rewritearithmeticresponse-recalculation_table ((rewritearithmeticresponse rewritearithmeticresponse))
Writer Method: (setf rewritearithmeticresponse-recalculation_table) ((rewritearithmeticresponse rewritearithmeticresponse))

A mapping from memory references to the original gate arithmetic.

Source

messages.lisp.

Target Slot

recalculation_table.

Generic Reader: rpc-error-error (object)
Generic Writer: (setf rpc-error-error) (object)
Package

rpcq.

Methods
Reader Method: rpc-error-error ((rpcerror rpcerror))
Writer Method: (setf rpc-error-error) ((rpcerror rpcerror))

The error message.

Source

messages.lisp.

Target Slot

error.

Generic Reader: rpc-error-id (object)
Generic Writer: (setf rpc-error-id) (object)
Package

rpcq.

Methods
Reader Method: rpc-error-id ((rpcerror rpcerror))
Writer Method: (setf rpc-error-id) ((rpcerror rpcerror))

The RPC request id.

Source

messages.lisp.

Target Slot

id.

Generic Reader: rpc-error-jsonrpc (object)
Generic Writer: (setf rpc-error-jsonrpc) (object)
Package

rpcq.

Methods
Reader Method: rpc-error-jsonrpc ((rpcerror rpcerror))
Writer Method: (setf rpc-error-jsonrpc) ((rpcerror rpcerror))

The JSONRPC version.

Source

messages.lisp.

Target Slot

jsonrpc.

Generic Reader: rpc-error-warnings (object)
Generic Writer: (setf rpc-error-warnings) (object)
Package

rpcq.

Methods
Reader Method: rpc-error-warnings ((rpcerror rpcerror))
Writer Method: (setf rpc-error-warnings) ((rpcerror rpcerror))

A list of warnings that occurred during request processing.

Source

messages.lisp.

Target Slot

warnings.

Generic Reader: rpc-reply-id (object)
Generic Writer: (setf rpc-reply-id) (object)
Package

rpcq.

Methods
Reader Method: rpc-reply-id ((rpcreply rpcreply))
Writer Method: (setf rpc-reply-id) ((rpcreply rpcreply))

The RPC request id.

Source

messages.lisp.

Target Slot

id.

Generic Reader: rpc-reply-jsonrpc (object)
Generic Writer: (setf rpc-reply-jsonrpc) (object)
Package

rpcq.

Methods
Reader Method: rpc-reply-jsonrpc ((rpcreply rpcreply))
Writer Method: (setf rpc-reply-jsonrpc) ((rpcreply rpcreply))

The JSONRPC version.

Source

messages.lisp.

Target Slot

jsonrpc.

Generic Reader: rpc-reply-result (object)
Generic Writer: (setf rpc-reply-result) (object)
Package

rpcq.

Methods
Reader Method: rpc-reply-result ((rpcreply rpcreply))
Writer Method: (setf rpc-reply-result) ((rpcreply rpcreply))

The RPC result.

Source

messages.lisp.

Target Slot

result.

Generic Reader: rpc-reply-warnings (object)
Generic Writer: (setf rpc-reply-warnings) (object)
Package

rpcq.

Methods
Reader Method: rpc-reply-warnings ((rpcreply rpcreply))
Writer Method: (setf rpc-reply-warnings) ((rpcreply rpcreply))

A list of warnings that occurred during request processing.

Source

messages.lisp.

Target Slot

warnings.

Generic Reader: rpc-request-client-key (object)
Generic Writer: (setf rpc-request-client-key) (object)
Package

rpcq.

Methods
Reader Method: rpc-request-client-key ((rpcrequest rpcrequest))
Writer Method: (setf rpc-request-client-key) ((rpcrequest rpcrequest))

The ZeroMQ CURVE public key used to make the request, as received by the server. Empty if no key is used.

Source

messages.lisp.

Target Slot

client_key.

Generic Reader: rpc-request-client-timeout (object)
Generic Writer: (setf rpc-request-client-timeout) (object)
Package

rpcq.

Methods
Reader Method: rpc-request-client-timeout ((rpcrequest rpcrequest))
Writer Method: (setf rpc-request-client-timeout) ((rpcrequest rpcrequest))

The client-side timeout for the request. The server itself may be configured with a timeout that is greater than the client-side timeout, in which case the server can choose to terminate any processing of the request.

Source

messages.lisp.

Target Slot

client_timeout.

Generic Reader: rpc-request-id (object)
Generic Writer: (setf rpc-request-id) (object)
Package

rpcq.

Methods
Reader Method: rpc-request-id ((rpcrequest rpcrequest))
Writer Method: (setf rpc-request-id) ((rpcrequest rpcrequest))

RPC request id (used to verify that request and response belong together).

Source

messages.lisp.

Target Slot

id.

Generic Reader: rpc-request-jsonrpc (object)
Generic Writer: (setf rpc-request-jsonrpc) (object)
Package

rpcq.

Methods
Reader Method: rpc-request-jsonrpc ((rpcrequest rpcrequest))
Writer Method: (setf rpc-request-jsonrpc) ((rpcrequest rpcrequest))

The JSONRPC version.

Source

messages.lisp.

Target Slot

jsonrpc.

Generic Reader: rpc-request-method (object)
Generic Writer: (setf rpc-request-method) (object)
Package

rpcq.

Methods
Reader Method: rpc-request-method ((rpcrequest rpcrequest))
Writer Method: (setf rpc-request-method) ((rpcrequest rpcrequest))

The RPC function name.

Source

messages.lisp.

Target Slot

method.

Generic Reader: rpc-request-params (object)
Generic Writer: (setf rpc-request-params) (object)
Package

rpcq.

Methods
Reader Method: rpc-request-params ((rpcrequest rpcrequest))
Writer Method: (setf rpc-request-params) ((rpcrequest rpcrequest))

The RPC function arguments.

Source

messages.lisp.

Target Slot

params.

Generic Reader: rpc-warning-body (object)
Generic Writer: (setf rpc-warning-body) (object)
Package

rpcq.

Methods
Reader Method: rpc-warning-body ((rpcwarning rpcwarning))
Writer Method: (setf rpc-warning-body) ((rpcwarning rpcwarning))

The warning string.

Source

messages.lisp.

Target Slot

body.

Generic Reader: rpc-warning-kind (object)
Generic Writer: (setf rpc-warning-kind) (object)
Package

rpcq.

Methods
Reader Method: rpc-warning-kind ((rpcwarning rpcwarning))
Writer Method: (setf rpc-warning-kind) ((rpcwarning rpcwarning))

The type of the warning raised.

Source

messages.lisp.

Target Slot

kind.

Generic Reader: rpcerror-error (object)
Generic Writer: (setf rpcerror-error) (object)
Package

rpcq.

Methods
Reader Method: rpcerror-error ((rpcerror rpcerror))
Writer Method: (setf rpcerror-error) ((rpcerror rpcerror))

The error message.

Source

messages.lisp.

Target Slot

error.

Generic Reader: rpcerror-id (object)
Generic Writer: (setf rpcerror-id) (object)
Package

rpcq.

Methods
Reader Method: rpcerror-id ((rpcerror rpcerror))
Writer Method: (setf rpcerror-id) ((rpcerror rpcerror))

The RPC request id.

Source

messages.lisp.

Target Slot

id.

Generic Reader: rpcerror-jsonrpc (object)
Generic Writer: (setf rpcerror-jsonrpc) (object)
Package

rpcq.

Methods
Reader Method: rpcerror-jsonrpc ((rpcerror rpcerror))
Writer Method: (setf rpcerror-jsonrpc) ((rpcerror rpcerror))

The JSONRPC version.

Source

messages.lisp.

Target Slot

jsonrpc.

Generic Reader: rpcerror-warnings (object)
Generic Writer: (setf rpcerror-warnings) (object)
Package

rpcq.

Methods
Reader Method: rpcerror-warnings ((rpcerror rpcerror))
Writer Method: (setf rpcerror-warnings) ((rpcerror rpcerror))

A list of warnings that occurred during request processing.

Source

messages.lisp.

Target Slot

warnings.

Generic Reader: rpcreply-id (object)
Generic Writer: (setf rpcreply-id) (object)
Package

rpcq.

Methods
Reader Method: rpcreply-id ((rpcreply rpcreply))
Writer Method: (setf rpcreply-id) ((rpcreply rpcreply))

The RPC request id.

Source

messages.lisp.

Target Slot

id.

Generic Reader: rpcreply-jsonrpc (object)
Generic Writer: (setf rpcreply-jsonrpc) (object)
Package

rpcq.

Methods
Reader Method: rpcreply-jsonrpc ((rpcreply rpcreply))
Writer Method: (setf rpcreply-jsonrpc) ((rpcreply rpcreply))

The JSONRPC version.

Source

messages.lisp.

Target Slot

jsonrpc.

Generic Reader: rpcreply-result (object)
Generic Writer: (setf rpcreply-result) (object)
Package

rpcq.

Methods
Reader Method: rpcreply-result ((rpcreply rpcreply))
Writer Method: (setf rpcreply-result) ((rpcreply rpcreply))

The RPC result.

Source

messages.lisp.

Target Slot

result.

Generic Reader: rpcreply-warnings (object)
Generic Writer: (setf rpcreply-warnings) (object)
Package

rpcq.

Methods
Reader Method: rpcreply-warnings ((rpcreply rpcreply))
Writer Method: (setf rpcreply-warnings) ((rpcreply rpcreply))

A list of warnings that occurred during request processing.

Source

messages.lisp.

Target Slot

warnings.

Generic Reader: rpcrequest-client_key (object)
Generic Writer: (setf rpcrequest-client_key) (object)
Package

rpcq.

Methods
Reader Method: rpcrequest-client_key ((rpcrequest rpcrequest))
Writer Method: (setf rpcrequest-client_key) ((rpcrequest rpcrequest))

The ZeroMQ CURVE public key used to make the request, as received by the server. Empty if no key is used.

Source

messages.lisp.

Target Slot

client_key.

Generic Reader: rpcrequest-client_timeout (object)
Generic Writer: (setf rpcrequest-client_timeout) (object)
Package

rpcq.

Methods
Reader Method: rpcrequest-client_timeout ((rpcrequest rpcrequest))
Writer Method: (setf rpcrequest-client_timeout) ((rpcrequest rpcrequest))

The client-side timeout for the request. The server itself may be configured with a timeout that is greater than the client-side timeout, in which case the server can choose to terminate any processing of the request.

Source

messages.lisp.

Target Slot

client_timeout.

Generic Reader: rpcrequest-id (object)
Generic Writer: (setf rpcrequest-id) (object)
Package

rpcq.

Methods
Reader Method: rpcrequest-id ((rpcrequest rpcrequest))
Writer Method: (setf rpcrequest-id) ((rpcrequest rpcrequest))

RPC request id (used to verify that request and response belong together).

Source

messages.lisp.

Target Slot

id.

Generic Reader: rpcrequest-jsonrpc (object)
Generic Writer: (setf rpcrequest-jsonrpc) (object)
Package

rpcq.

Methods
Reader Method: rpcrequest-jsonrpc ((rpcrequest rpcrequest))
Writer Method: (setf rpcrequest-jsonrpc) ((rpcrequest rpcrequest))

The JSONRPC version.

Source

messages.lisp.

Target Slot

jsonrpc.

Generic Reader: rpcrequest-method (object)
Generic Writer: (setf rpcrequest-method) (object)
Package

rpcq.

Methods
Reader Method: rpcrequest-method ((rpcrequest rpcrequest))
Writer Method: (setf rpcrequest-method) ((rpcrequest rpcrequest))

The RPC function name.

Source

messages.lisp.

Target Slot

method.

Generic Reader: rpcrequest-params (object)
Generic Writer: (setf rpcrequest-params) (object)
Package

rpcq.

Methods
Reader Method: rpcrequest-params ((rpcrequest rpcrequest))
Writer Method: (setf rpcrequest-params) ((rpcrequest rpcrequest))

The RPC function arguments.

Source

messages.lisp.

Target Slot

params.

Generic Reader: rpcwarning-body (object)
Generic Writer: (setf rpcwarning-body) (object)
Package

rpcq.

Methods
Reader Method: rpcwarning-body ((rpcwarning rpcwarning))
Writer Method: (setf rpcwarning-body) ((rpcwarning rpcwarning))

The warning string.

Source

messages.lisp.

Target Slot

body.

Generic Reader: rpcwarning-kind (object)
Generic Writer: (setf rpcwarning-kind) (object)
Package

rpcq.

Methods
Reader Method: rpcwarning-kind ((rpcwarning rpcwarning))
Writer Method: (setf rpcwarning-kind) ((rpcwarning rpcwarning))

The type of the warning raised.

Source

messages.lisp.

Target Slot

kind.

Generic Reader: schedule-ir-job-filter-pipeline (object)
Generic Writer: (setf schedule-ir-job-filter-pipeline) (object)
Package

rpcq.

Methods
Reader Method: schedule-ir-job-filter-pipeline ((scheduleirjob scheduleirjob))
Writer Method: (setf schedule-ir-job-filter-pipeline) ((scheduleirjob scheduleirjob))

The filter pipeline. Mapping of node labels to FilterNode’s.

Source

core-messages.lisp.

Target Slot

filter_pipeline.

Generic Reader: schedule-ir-job-job-id (object)
Generic Writer: (setf schedule-ir-job-job-id) (object)
Package

rpcq.

Methods
Reader Method: schedule-ir-job-job-id ((scheduleirjob scheduleirjob))
Writer Method: (setf schedule-ir-job-job-id) ((scheduleirjob scheduleirjob))

A unique ID to help the submitter track the job.

Source

core-messages.lisp.

Target Slot

job_id.

Generic Reader: schedule-ir-job-num-shots (object)
Generic Writer: (setf schedule-ir-job-num-shots) (object)
Package

rpcq.

Methods
Reader Method: schedule-ir-job-num-shots ((scheduleirjob scheduleirjob))
Writer Method: (setf schedule-ir-job-num-shots) ((scheduleirjob scheduleirjob))

How many repetitions the job should be executed for.

Source

core-messages.lisp.

Target Slot

num_shots.

Generic Reader: schedule-ir-job-operating-point (object)
Generic Writer: (setf schedule-ir-job-operating-point) (object)
Package

rpcq.

Methods
Reader Method: schedule-ir-job-operating-point ((scheduleirjob scheduleirjob))
Writer Method: (setf schedule-ir-job-operating-point) ((scheduleirjob scheduleirjob))

Operating points or static instrument channel settings
(mapping control_name (instrument name) -> instrument channel settings (instrument settings) dictionary).

Source

core-messages.lisp.

Target Slot

operating_point.

Generic Reader: schedule-ir-job-program (object)
Generic Writer: (setf schedule-ir-job-program) (object)
Package

rpcq.

Methods
Reader Method: schedule-ir-job-program ((scheduleirjob scheduleirjob))
Writer Method: (setf schedule-ir-job-program) ((scheduleirjob scheduleirjob))

The actual program to be executed.

Source

core-messages.lisp.

Target Slot

program.

Generic Reader: schedule-ir-job-resources (object)
Generic Writer: (setf schedule-ir-job-resources) (object)
Package

rpcq.

Methods
Reader Method: schedule-ir-job-resources ((scheduleirjob scheduleirjob))
Writer Method: (setf schedule-ir-job-resources) ((scheduleirjob scheduleirjob))

The resources required by the job.

Source

core-messages.lisp.

Target Slot

resources.

Generic Reader: scheduleirjob-filter_pipeline (object)
Generic Writer: (setf scheduleirjob-filter_pipeline) (object)
Package

rpcq.

Methods
Reader Method: scheduleirjob-filter_pipeline ((scheduleirjob scheduleirjob))
Writer Method: (setf scheduleirjob-filter_pipeline) ((scheduleirjob scheduleirjob))

The filter pipeline. Mapping of node labels to FilterNode’s.

Source

core-messages.lisp.

Target Slot

filter_pipeline.

Generic Reader: scheduleirjob-job_id (object)
Generic Writer: (setf scheduleirjob-job_id) (object)
Package

rpcq.

Methods
Reader Method: scheduleirjob-job_id ((scheduleirjob scheduleirjob))
Writer Method: (setf scheduleirjob-job_id) ((scheduleirjob scheduleirjob))

A unique ID to help the submitter track the job.

Source

core-messages.lisp.

Target Slot

job_id.

Generic Reader: scheduleirjob-num_shots (object)
Generic Writer: (setf scheduleirjob-num_shots) (object)
Package

rpcq.

Methods
Reader Method: scheduleirjob-num_shots ((scheduleirjob scheduleirjob))
Writer Method: (setf scheduleirjob-num_shots) ((scheduleirjob scheduleirjob))

How many repetitions the job should be executed for.

Source

core-messages.lisp.

Target Slot

num_shots.

Generic Reader: scheduleirjob-operating_point (object)
Generic Writer: (setf scheduleirjob-operating_point) (object)
Package

rpcq.

Methods
Reader Method: scheduleirjob-operating_point ((scheduleirjob scheduleirjob))
Writer Method: (setf scheduleirjob-operating_point) ((scheduleirjob scheduleirjob))

Operating points or static instrument channel settings
(mapping control_name (instrument name) -> instrument channel settings (instrument settings) dictionary).

Source

core-messages.lisp.

Target Slot

operating_point.

Generic Reader: scheduleirjob-program (object)
Generic Writer: (setf scheduleirjob-program) (object)
Package

rpcq.

Methods
Reader Method: scheduleirjob-program ((scheduleirjob scheduleirjob))
Writer Method: (setf scheduleirjob-program) ((scheduleirjob scheduleirjob))

The actual program to be executed.

Source

core-messages.lisp.

Target Slot

program.

Generic Reader: scheduleirjob-resources (object)
Generic Writer: (setf scheduleirjob-resources) (object)
Package

rpcq.

Methods
Reader Method: scheduleirjob-resources ((scheduleirjob scheduleirjob))
Writer Method: (setf scheduleirjob-resources) ((scheduleirjob scheduleirjob))

The resources required by the job.

Source

core-messages.lisp.

Target Slot

resources.

Generic Reader: set-frequency-frame (object)
Generic Writer: (setf set-frequency-frame) (object)
Package

rpcq.

Methods
Reader Method: set-frequency-frame ((setfrequency setfrequency))
Writer Method: (setf set-frequency-frame) ((setfrequency setfrequency))

The frame label for which to set the frequency.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: set-frequency-frequency (object)
Generic Writer: (setf set-frequency-frequency) (object)
Package

rpcq.

Methods
Reader Method: set-frequency-frequency ((setfrequency setfrequency))
Writer Method: (setf set-frequency-frequency) ((setfrequency setfrequency))

The frequency [Hz] to set the frame frequency to.

Source

core-messages.lisp.

Target Slot

frequency.

Generic Reader: set-phase-frame (object)
Generic Writer: (setf set-phase-frame) (object)
Package

rpcq.

Methods
Reader Method: set-phase-frame ((setphase setphase))
Writer Method: (setf set-phase-frame) ((setphase setphase))

The frame label for which to set the phase.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: set-phase-phase (object)
Generic Writer: (setf set-phase-phase) (object)
Package

rpcq.

Methods
Reader Method: set-phase-phase ((setphase setphase))
Writer Method: (setf set-phase-phase) ((setphase setphase))

Phase angle [units of tau=2pi] to update the frame phase to.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: set-scale-frame (object)
Generic Writer: (setf set-scale-frame) (object)
Package

rpcq.

Methods
Reader Method: set-scale-frame ((setscale setscale))
Writer Method: (setf set-scale-frame) ((setscale setscale))

The frame label for which to set the scale.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: set-scale-scale (object)
Generic Writer: (setf set-scale-scale) (object)
Package

rpcq.

Methods
Reader Method: set-scale-scale ((setscale setscale))
Writer Method: (setf set-scale-scale) ((setscale setscale))

Scale (unitless) to apply to waveforms generated on the frame.

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: setfrequency-frame (object)
Generic Writer: (setf setfrequency-frame) (object)
Package

rpcq.

Methods
Reader Method: setfrequency-frame ((setfrequency setfrequency))
Writer Method: (setf setfrequency-frame) ((setfrequency setfrequency))

The frame label for which to set the frequency.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: setfrequency-frequency (object)
Generic Writer: (setf setfrequency-frequency) (object)
Package

rpcq.

Methods
Reader Method: setfrequency-frequency ((setfrequency setfrequency))
Writer Method: (setf setfrequency-frequency) ((setfrequency setfrequency))

The frequency [Hz] to set the frame frequency to.

Source

core-messages.lisp.

Target Slot

frequency.

Generic Reader: setphase-frame (object)
Generic Writer: (setf setphase-frame) (object)
Package

rpcq.

Methods
Reader Method: setphase-frame ((setphase setphase))
Writer Method: (setf setphase-frame) ((setphase setphase))

The frame label for which to set the phase.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: setphase-phase (object)
Generic Writer: (setf setphase-phase) (object)
Package

rpcq.

Methods
Reader Method: setphase-phase ((setphase setphase))
Writer Method: (setf setphase-phase) ((setphase setphase))

Phase angle [units of tau=2pi] to update the frame phase to.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: setscale-frame (object)
Generic Writer: (setf setscale-frame) (object)
Package

rpcq.

Methods
Reader Method: setscale-frame ((setscale setscale))
Writer Method: (setf setscale-frame) ((setscale setscale))

The frame label for which to set the scale.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: setscale-scale (object)
Generic Writer: (setf setscale-scale) (object)
Package

rpcq.

Methods
Reader Method: setscale-scale ((setscale setscale))
Writer Method: (setf setscale-scale) ((setscale setscale))

Scale (unitless) to apply to waveforms generated on the frame.

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: shift-frequency-delta (object)
Generic Writer: (setf shift-frequency-delta) (object)
Package

rpcq.

Methods
Reader Method: shift-frequency-delta ((shiftfrequency shiftfrequency))
Writer Method: (setf shift-frequency-delta) ((shiftfrequency shiftfrequency))

Frequency shift (new-old) [Hz] to apply to the frame frequency.

Source

core-messages.lisp.

Target Slot

delta.

Generic Reader: shift-frequency-frame (object)
Generic Writer: (setf shift-frequency-frame) (object)
Package

rpcq.

Methods
Reader Method: shift-frequency-frame ((shiftfrequency shiftfrequency))
Writer Method: (setf shift-frequency-frame) ((shiftfrequency shiftfrequency))

The frame label for which to set the frequency.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: shift-phase-delta (object)
Generic Writer: (setf shift-phase-delta) (object)
Package

rpcq.

Methods
Reader Method: shift-phase-delta ((shiftphase shiftphase))
Writer Method: (setf shift-phase-delta) ((shiftphase shiftphase))

Phase angle [units of tau=2pi] by which to shift the
frame phase. Can be a numerical value, a ParameterExpression or a ParameterAref.

Source

core-messages.lisp.

Target Slot

delta.

Generic Reader: shift-phase-frame (object)
Generic Writer: (setf shift-phase-frame) (object)
Package

rpcq.

Methods
Reader Method: shift-phase-frame ((shiftphase shiftphase))
Writer Method: (setf shift-phase-frame) ((shiftphase shiftphase))

The frame label for which to set the phase.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: shiftfrequency-delta (object)
Generic Writer: (setf shiftfrequency-delta) (object)
Package

rpcq.

Methods
Reader Method: shiftfrequency-delta ((shiftfrequency shiftfrequency))
Writer Method: (setf shiftfrequency-delta) ((shiftfrequency shiftfrequency))

Frequency shift (new-old) [Hz] to apply to the frame frequency.

Source

core-messages.lisp.

Target Slot

delta.

Generic Reader: shiftfrequency-frame (object)
Generic Writer: (setf shiftfrequency-frame) (object)
Package

rpcq.

Methods
Reader Method: shiftfrequency-frame ((shiftfrequency shiftfrequency))
Writer Method: (setf shiftfrequency-frame) ((shiftfrequency shiftfrequency))

The frame label for which to set the frequency.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: shiftphase-delta (object)
Generic Writer: (setf shiftphase-delta) (object)
Package

rpcq.

Methods
Reader Method: shiftphase-delta ((shiftphase shiftphase))
Writer Method: (setf shiftphase-delta) ((shiftphase shiftphase))

Phase angle [units of tau=2pi] by which to shift the
frame phase. Can be a numerical value, a ParameterExpression or a ParameterAref.

Source

core-messages.lisp.

Target Slot

delta.

Generic Reader: shiftphase-frame (object)
Generic Writer: (setf shiftphase-frame) (object)
Package

rpcq.

Methods
Reader Method: shiftphase-frame ((shiftphase shiftphase))
Writer Method: (setf shiftphase-frame) ((shiftphase shiftphase))

The frame label for which to set the phase.

Source

core-messages.lisp.

Target Slot

frame.

Generic Reader: swap-phases-frame-a (object)
Generic Writer: (setf swap-phases-frame-a) (object)
Package

rpcq.

Methods
Reader Method: swap-phases-frame-a ((swapphases swapphases))
Writer Method: (setf swap-phases-frame-a) ((swapphases swapphases))

The first frame’s label.

Source

core-messages.lisp.

Target Slot

frame_a.

Generic Reader: swap-phases-frame-b (object)
Generic Writer: (setf swap-phases-frame-b) (object)
Package

rpcq.

Methods
Reader Method: swap-phases-frame-b ((swapphases swapphases))
Writer Method: (setf swap-phases-frame-b) ((swapphases swapphases))

The second frame’s label.

Source

core-messages.lisp.

Target Slot

frame_b.

Generic Reader: swapphases-frame_a (object)
Generic Writer: (setf swapphases-frame_a) (object)
Package

rpcq.

Methods
Reader Method: swapphases-frame_a ((swapphases swapphases))
Writer Method: (setf swapphases-frame_a) ((swapphases swapphases))

The first frame’s label.

Source

core-messages.lisp.

Target Slot

frame_a.

Generic Reader: swapphases-frame_b (object)
Generic Writer: (setf swapphases-frame_b) (object)
Package

rpcq.

Methods
Reader Method: swapphases-frame_b ((swapphases swapphases))
Writer Method: (setf swapphases-frame_b) ((swapphases swapphases))

The second frame’s label.

Source

core-messages.lisp.

Target Slot

frame_b.

Generic Reader: target-device-isa (object)
Generic Writer: (setf target-device-isa) (object)
Package

rpcq.

Methods
Reader Method: target-device-isa ((targetdevice targetdevice))
Writer Method: (setf target-device-isa) ((targetdevice targetdevice))

Instruction-set architecture for this device.

Source

messages.lisp.

Target Slot

isa.

Generic Reader: target-device-specs (object)
Generic Writer: (setf target-device-specs) (object)
Package

rpcq.

Methods
Reader Method: target-device-specs ((targetdevice targetdevice))
Writer Method: (setf target-device-specs) ((targetdevice targetdevice))

Fidelities and coherence times for this device.

Source

messages.lisp.

Target Slot

specs.

Generic Reader: targetdevice-isa (object)
Generic Writer: (setf targetdevice-isa) (object)
Package

rpcq.

Methods
Reader Method: targetdevice-isa ((targetdevice targetdevice))
Writer Method: (setf targetdevice-isa) ((targetdevice targetdevice))

Instruction-set architecture for this device.

Source

messages.lisp.

Target Slot

isa.

Generic Reader: targetdevice-specs (object)
Generic Writer: (setf targetdevice-specs) (object)
Package

rpcq.

Methods
Reader Method: targetdevice-specs ((targetdevice targetdevice))
Writer Method: (setf targetdevice-specs) ((targetdevice targetdevice))

Fidelities and coherence times for this device.

Source

messages.lisp.

Target Slot

specs.

Generic Reader: template-kernel-bias (object)
Generic Writer: (setf template-kernel-bias) (object)
Package

rpcq.

Methods
Reader Method: template-kernel-bias ((templatekernel templatekernel))
Writer Method: (setf template-kernel-bias) ((templatekernel templatekernel))

The kernel is offset by this real value. Can be used to ensure the decision threshold lies at 0.0.

Source

core-messages.lisp.

Target Slot

bias.

Generic Reader: template-kernel-detuning (object)
Generic Writer: (setf template-kernel-detuning) (object)
Package

rpcq.

Methods
Reader Method: template-kernel-detuning ((templatekernel templatekernel))
Writer Method: (setf template-kernel-detuning) ((templatekernel templatekernel))

Modulation to apply to the filter kernel in Hz

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: template-kernel-duration (object)
Generic Writer: (setf template-kernel-duration) (object)
Package

rpcq.

Methods
Reader Method: template-kernel-duration ((templatekernel templatekernel))
Writer Method: (setf template-kernel-duration) ((templatekernel templatekernel))

Length of the boxcar kernel in seconds

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: template-kernel-phase (object)
Generic Writer: (setf template-kernel-phase) (object)
Package

rpcq.

Methods
Reader Method: template-kernel-phase ((templatekernel templatekernel))
Writer Method: (setf template-kernel-phase) ((templatekernel templatekernel))

Phase [units of tau=2pi] to rotate the kernel by.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: template-kernel-scale (object)
Generic Writer: (setf template-kernel-scale) (object)
Package

rpcq.

Methods
Reader Method: template-kernel-scale ((templatekernel templatekernel))
Writer Method: (setf template-kernel-scale) ((templatekernel templatekernel))

Scale to apply to boxcar kernel

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: template-waveform-detuning (object)
Generic Writer: (setf template-waveform-detuning) (object)
Package

rpcq.

Methods
Reader Method: template-waveform-detuning ((templatewaveform templatewaveform))
Writer Method: (setf template-waveform-detuning) ((templatewaveform templatewaveform))

Modulation to apply to the waveform in Hz

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: template-waveform-duration (object)
Generic Writer: (setf template-waveform-duration) (object)
Package

rpcq.

Methods
Reader Method: template-waveform-duration ((templatewaveform templatewaveform))
Writer Method: (setf template-waveform-duration) ((templatewaveform templatewaveform))

Length of the pulse in seconds

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: template-waveform-phase (object)
Generic Writer: (setf template-waveform-phase) (object)
Package

rpcq.

Methods
Reader Method: template-waveform-phase ((templatewaveform templatewaveform))
Writer Method: (setf template-waveform-phase) ((templatewaveform templatewaveform))

Phase [units of tau=2pi] to rotate the complex waveform envelope.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: template-waveform-scale (object)
Generic Writer: (setf template-waveform-scale) (object)
Package

rpcq.

Methods
Reader Method: template-waveform-scale ((templatewaveform templatewaveform))
Writer Method: (setf template-waveform-scale) ((templatewaveform templatewaveform))

Scale to apply to waveform envelope

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: templatekernel-bias (object)
Generic Writer: (setf templatekernel-bias) (object)
Package

rpcq.

Methods
Reader Method: templatekernel-bias ((templatekernel templatekernel))
Writer Method: (setf templatekernel-bias) ((templatekernel templatekernel))

The kernel is offset by this real value. Can be used to ensure the decision threshold lies at 0.0.

Source

core-messages.lisp.

Target Slot

bias.

Generic Reader: templatekernel-detuning (object)
Generic Writer: (setf templatekernel-detuning) (object)
Package

rpcq.

Methods
Reader Method: templatekernel-detuning ((templatekernel templatekernel))
Writer Method: (setf templatekernel-detuning) ((templatekernel templatekernel))

Modulation to apply to the filter kernel in Hz

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: templatekernel-duration (object)
Generic Writer: (setf templatekernel-duration) (object)
Package

rpcq.

Methods
Reader Method: templatekernel-duration ((templatekernel templatekernel))
Writer Method: (setf templatekernel-duration) ((templatekernel templatekernel))

Length of the boxcar kernel in seconds

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: templatekernel-phase (object)
Generic Writer: (setf templatekernel-phase) (object)
Package

rpcq.

Methods
Reader Method: templatekernel-phase ((templatekernel templatekernel))
Writer Method: (setf templatekernel-phase) ((templatekernel templatekernel))

Phase [units of tau=2pi] to rotate the kernel by.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: templatekernel-scale (object)
Generic Writer: (setf templatekernel-scale) (object)
Package

rpcq.

Methods
Reader Method: templatekernel-scale ((templatekernel templatekernel))
Writer Method: (setf templatekernel-scale) ((templatekernel templatekernel))

Scale to apply to boxcar kernel

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: templatewaveform-detuning (object)
Generic Writer: (setf templatewaveform-detuning) (object)
Package

rpcq.

Methods
Reader Method: templatewaveform-detuning ((templatewaveform templatewaveform))
Writer Method: (setf templatewaveform-detuning) ((templatewaveform templatewaveform))

Modulation to apply to the waveform in Hz

Source

core-messages.lisp.

Target Slot

detuning.

Generic Reader: templatewaveform-duration (object)
Generic Writer: (setf templatewaveform-duration) (object)
Package

rpcq.

Methods
Reader Method: templatewaveform-duration ((templatewaveform templatewaveform))
Writer Method: (setf templatewaveform-duration) ((templatewaveform templatewaveform))

Length of the pulse in seconds

Source

core-messages.lisp.

Target Slot

duration.

Generic Reader: templatewaveform-phase (object)
Generic Writer: (setf templatewaveform-phase) (object)
Package

rpcq.

Methods
Reader Method: templatewaveform-phase ((templatewaveform templatewaveform))
Writer Method: (setf templatewaveform-phase) ((templatewaveform templatewaveform))

Phase [units of tau=2pi] to rotate the complex waveform envelope.

Source

core-messages.lisp.

Target Slot

phase.

Generic Reader: templatewaveform-scale (object)
Generic Writer: (setf templatewaveform-scale) (object)
Package

rpcq.

Methods
Reader Method: templatewaveform-scale ((templatewaveform templatewaveform))
Writer Method: (setf templatewaveform-scale) ((templatewaveform templatewaveform))

Scale to apply to waveform envelope

Source

core-messages.lisp.

Target Slot

scale.

Generic Reader: time-bomb-chip-label (object)
Generic Writer: (setf time-bomb-chip-label) (object)
Package

rpcq.

Methods
Reader Method: time-bomb-chip-label ((timebomb timebomb))
Writer Method: (setf time-bomb-chip-label) ((timebomb timebomb))

Label string for the chip on which this job is meant to execute.

Source

core-messages.lisp.

Target Slot

chip_label.

Generic Reader: time-bomb-deadline (object)
Generic Writer: (setf time-bomb-deadline) (object)
Package

rpcq.

Methods
Reader Method: time-bomb-deadline ((timebomb timebomb))
Writer Method: (setf time-bomb-deadline) ((timebomb timebomb))

Deadline, specified in the format
’%Y-%m-%dT%H:%M:%S.000Z’, after which this job becomes unexecutable.

Source

core-messages.lisp.

Target Slot

deadline.

Generic Reader: timebomb-chip_label (object)
Generic Writer: (setf timebomb-chip_label) (object)
Package

rpcq.

Methods
Reader Method: timebomb-chip_label ((timebomb timebomb))
Writer Method: (setf timebomb-chip_label) ((timebomb timebomb))

Label string for the chip on which this job is meant to execute.

Source

core-messages.lisp.

Target Slot

chip_label.

Generic Reader: timebomb-deadline (object)
Generic Writer: (setf timebomb-deadline) (object)
Package

rpcq.

Methods
Reader Method: timebomb-deadline ((timebomb timebomb))
Writer Method: (setf timebomb-deadline) ((timebomb timebomb))

Deadline, specified in the format
’%Y-%m-%dT%H:%M:%S.000Z’, after which this job becomes unexecutable.

Source

core-messages.lisp.

Target Slot

deadline.

Generic Reader: usi-card-sequencer-tx-channel (object)
Generic Writer: (setf usi-card-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: usi-card-sequencer-tx-channel ((usicardsequencer usicardsequencer))
Writer Method: (setf usi-card-sequencer-tx-channel) ((usicardsequencer usicardsequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: usi-target-sequencer-rx-channel (object)
Generic Writer: (setf usi-target-sequencer-rx-channel) (object)
Package

rpcq.

Methods
Reader Method: usi-target-sequencer-rx-channel ((usitargetsequencer usitargetsequencer))
Writer Method: (setf usi-target-sequencer-rx-channel) ((usitargetsequencer usitargetsequencer))

The label of the associated initial rx channel.

Source

core-messages.lisp.

Target Slot

rx_channel.

Generic Reader: usi-target-sequencer-sequencer-index (object)
Generic Writer: (setf usi-target-sequencer-sequencer-index) (object)
Package

rpcq.

Methods
Reader Method: usi-target-sequencer-sequencer-index ((usitargetsequencer usitargetsequencer))
Writer Method: (setf usi-target-sequencer-sequencer-index) ((usitargetsequencer usitargetsequencer))

The sequencer index (0-7) to assign. Note that only
sequencer 0 has the ability to use the NCO or capture raw readout streams.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: usi-target-sequencer-tx-channel (object)
Generic Writer: (setf usi-target-sequencer-tx-channel) (object)
Package

rpcq.

Methods
Reader Method: usi-target-sequencer-tx-channel ((usitargetsequencer usitargetsequencer))
Writer Method: (setf usi-target-sequencer-tx-channel) ((usitargetsequencer usitargetsequencer))

The label of the associated intial tx channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: usicardsequencer-tx_channel (object)
Generic Writer: (setf usicardsequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: usicardsequencer-tx_channel ((usicardsequencer usicardsequencer))
Writer Method: (setf usicardsequencer-tx_channel) ((usicardsequencer usicardsequencer))

The label of the associated channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: usitargetsequencer-rx_channel (object)
Generic Writer: (setf usitargetsequencer-rx_channel) (object)
Package

rpcq.

Methods
Reader Method: usitargetsequencer-rx_channel ((usitargetsequencer usitargetsequencer))
Writer Method: (setf usitargetsequencer-rx_channel) ((usitargetsequencer usitargetsequencer))

The label of the associated initial rx channel.

Source

core-messages.lisp.

Target Slot

rx_channel.

Generic Reader: usitargetsequencer-sequencer_index (object)
Generic Writer: (setf usitargetsequencer-sequencer_index) (object)
Package

rpcq.

Methods
Reader Method: usitargetsequencer-sequencer_index ((usitargetsequencer usitargetsequencer))
Writer Method: (setf usitargetsequencer-sequencer_index) ((usitargetsequencer usitargetsequencer))

The sequencer index (0-7) to assign. Note that only
sequencer 0 has the ability to use the NCO or capture raw readout streams.

Source

core-messages.lisp.

Target Slot

sequencer_index.

Generic Reader: usitargetsequencer-tx_channel (object)
Generic Writer: (setf usitargetsequencer-tx_channel) (object)
Package

rpcq.

Methods
Reader Method: usitargetsequencer-tx_channel ((usitargetsequencer usitargetsequencer))
Writer Method: (setf usitargetsequencer-tx_channel) ((usitargetsequencer usitargetsequencer))

The label of the associated intial tx channel.

Source

core-messages.lisp.

Target Slot

tx_channel.

Generic Reader: vna-settings-averaging (object)
Generic Writer: (setf vna-settings-averaging) (object)
Package

rpcq.

Methods
Reader Method: vna-settings-averaging ((vnasettings vnasettings))
Writer Method: (setf vna-settings-averaging) ((vnasettings vnasettings))

Sets the number of points to combine into an averaged trace

Source

core-messages.lisp.

Target Slot

averaging.

Generic Reader: vna-settings-bandwidth (object)
Generic Writer: (setf vna-settings-bandwidth) (object)
Package

rpcq.

Methods
Reader Method: vna-settings-bandwidth ((vnasettings vnasettings))
Writer Method: (setf vna-settings-bandwidth) ((vnasettings vnasettings))

Bandwidth of the sweep, in Hz

Source

core-messages.lisp.

Target Slot

bandwidth.

Generic Reader: vna-settings-e-delay (object)
Generic Writer: (setf vna-settings-e-delay) (object)
Package

rpcq.

Methods
Reader Method: vna-settings-e-delay ((vnasettings vnasettings))
Writer Method: (setf vna-settings-e-delay) ((vnasettings vnasettings))

Electrical delay in seconds from source to measure port

Source

core-messages.lisp.

Target Slot

e_delay.

Generic Reader: vna-settings-freq-sweep (object)
Generic Writer: (setf vna-settings-freq-sweep) (object)
Package

rpcq.

Methods
Reader Method: vna-settings-freq-sweep ((vnasettings vnasettings))
Writer Method: (setf vna-settings-freq-sweep) ((vnasettings vnasettings))

Frequency sweep settings

Source

core-messages.lisp.

Target Slot

freq_sweep.

Generic Reader: vna-settings-phase-offset (object)
Generic Writer: (setf vna-settings-phase-offset) (object)
Package

rpcq.

Methods
Reader Method: vna-settings-phase-offset ((vnasettings vnasettings))
Writer Method: (setf vna-settings-phase-offset) ((vnasettings vnasettings))

Phase offset in degrees from measured to reported phase

Source

core-messages.lisp.

Target Slot

phase_offset.

Generic Reader: vna-settings-power (object)
Generic Writer: (setf vna-settings-power) (object)
Package

rpcq.

Methods
Reader Method: vna-settings-power ((vnasettings vnasettings))
Writer Method: (setf vna-settings-power) ((vnasettings vnasettings))

Source power in dBm

Source

core-messages.lisp.

Target Slot

power.

Generic Reader: vnasettings-averaging (object)
Generic Writer: (setf vnasettings-averaging) (object)
Package

rpcq.

Methods
Reader Method: vnasettings-averaging ((vnasettings vnasettings))
Writer Method: (setf vnasettings-averaging) ((vnasettings vnasettings))

Sets the number of points to combine into an averaged trace

Source

core-messages.lisp.

Target Slot

averaging.

Generic Reader: vnasettings-bandwidth (object)
Generic Writer: (setf vnasettings-bandwidth) (object)
Package

rpcq.

Methods
Reader Method: vnasettings-bandwidth ((vnasettings vnasettings))
Writer Method: (setf vnasettings-bandwidth) ((vnasettings vnasettings))

Bandwidth of the sweep, in Hz

Source

core-messages.lisp.

Target Slot

bandwidth.

Generic Reader: vnasettings-e_delay (object)
Generic Writer: (setf vnasettings-e_delay) (object)
Package

rpcq.

Methods
Reader Method: vnasettings-e_delay ((vnasettings vnasettings))
Writer Method: (setf vnasettings-e_delay) ((vnasettings vnasettings))

Electrical delay in seconds from source to measure port

Source

core-messages.lisp.

Target Slot

e_delay.

Generic Reader: vnasettings-freq_sweep (object)
Generic Writer: (setf vnasettings-freq_sweep) (object)
Package

rpcq.

Methods
Reader Method: vnasettings-freq_sweep ((vnasettings vnasettings))
Writer Method: (setf vnasettings-freq_sweep) ((vnasettings vnasettings))

Frequency sweep settings

Source

core-messages.lisp.

Target Slot

freq_sweep.

Generic Reader: vnasettings-phase_offset (object)
Generic Writer: (setf vnasettings-phase_offset) (object)
Package

rpcq.

Methods
Reader Method: vnasettings-phase_offset ((vnasettings vnasettings))
Writer Method: (setf vnasettings-phase_offset) ((vnasettings vnasettings))

Phase offset in degrees from measured to reported phase

Source

core-messages.lisp.

Target Slot

phase_offset.

Generic Reader: vnasettings-power (object)
Generic Writer: (setf vnasettings-power) (object)
Package

rpcq.

Methods
Reader Method: vnasettings-power ((vnasettings vnasettings))
Writer Method: (setf vnasettings-power) ((vnasettings vnasettings))

Source power in dBm

Source

core-messages.lisp.

Target Slot

power.

Generic Reader: waveform-iqs (object)
Generic Writer: (setf waveform-iqs) (object)
Package

rpcq.

Methods
Reader Method: waveform-iqs ((waveform waveform))
Writer Method: (setf waveform-iqs) ((waveform waveform))

The raw waveform envelope samples, alternating I and Q values.

Source

core-messages.lisp.

Target Slot

iqs.

Generic Reader: waveform-iqs (object)
Generic Writer: (setf waveform-iqs) (object)
Package

rpcq.

Methods
Reader Method: waveform-iqs ((waveform waveform))
Writer Method: (setf waveform-iqs) ((waveform waveform))

The raw waveform envelope samples, alternating I and Q values.

Source

core-messages.lisp.

Target Slot

iqs.


5.2.4 Structures

Structure: rpc-client

Holds the data for an (active) RPCQ client connection.

Package

rpcq.

Source

client.lisp.

Direct superclasses

structure-object.

Direct methods

print-object.

Direct slots
Slot: socket
Readers

rpc-client-socket.

Writers

(setf rpc-client-socket).

Slot: timeout
Type

(or null (real 0))

Readers

rpc-client-timeout.

Writers

(setf rpc-client-timeout).


5.2.5 Classes

Class: abstractkernel

An integration kernel defined for a specific frame. This abstract class is made concrete by either a ‘FilterKernel‘ or ‘TemplateKernel‘

Package

rpcq.

Source

core-messages.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: frame

The label of the associated rx-frame.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Class: abstractwaveform

A waveform envelope defined for a specific frame. This abstract class is made concrete by either a ‘Waveform‘ or a templated waveform such as ‘GaussianWaveform‘

Package

rpcq.

Source

core-messages.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: frame

The label of the associated tx-frame.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Class: activereset

An active reset control sequence consisting of a repeated
sequence of a measurement block and a feedback block conditional on the outcome of a specific measurement bit. Regardless of the measurement outcomes the total duration of the control sequence is [attempts x (measurement_duration + feedback_duration)]. The total measurement_duration must be chosen to allow for enough time after any Capture commands for the measurement bit to propagate back to the gate cards that are actuating the feedback.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: time

Time at which the ActiveReset begins in [seconds].

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "time"))

Initargs

:|time|

Readers
Writers
Slot: attempts

The number of times to repeat the active reset sequence.

Type

fixnum

Initform

3

Initargs

:|attempts|

Readers
Writers
Slot: measurement_duration

The duration of measurement block in [seconds]. The
measurement bit is expected to have arrived on the QGS after this time relative to the overall start of the ActiveReset block.

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "measurement_duration"))

Initargs

:|measurement_duration|

Readers
Writers
Slot: feedback_duration

The duration of feedback block in [seconds]

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "feedback_duration"))

Initargs

:|feedback_duration|

Readers
Writers
Slot: measurement_instructions

The ordered sequence of scheduled measurement instructions.

Type

vector

Initform

#()

Initargs

:|measurement_instructions|

Readers
Writers
Slot: measurement_bit

The address of the readout bit to condition the
feedback on. The bit is first accessed after measurement_duration has elapsed.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "measurement_bit"))

Initargs

:|measurement_bit|

Readers
Writers
Slot: apply_feedback_when

Apply the feedback when the measurement_bit equals the value of this flag.

Type

rpcq:optional-bool

Initform

t

Initargs

:|apply_feedback_when|

Readers
Writers
Slot: feedback_instructions

The ordered sequence of scheduled feedback instructions.

Type

vector

Initform

#()

Initargs

:|feedback_instructions|

Readers
Writers
Class: awgchannel

Configuration of a single RF channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: sample_rate

The sampling rate [Hz] of the associated DAC/ADC component.

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "sample_rate"))

Initargs

:|sample_rate|

Readers
Writers
Slot: lo_frequency

The local oscillator frequency [Hz] of the channel.

Type

(or null double-float)

Initargs

:|lo_frequency|

Readers
Writers
Slot: gain

If there is an amplifier, the amplifier gain [dB].

Type

(or null double-float)

Initargs

:|gain|

Readers
Writers
Slot: direction

’rx’ or ’tx’

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "direction"))

Initargs

:|direction|

Readers
Writers
Slot: delay

Delay [seconds] to account for inter-channel skew.

Type

double-float

Initform

0.0d0

Initargs

:|delay|

Readers
Writers
Class: binaryexecutablerequest

Native Quil and the information needed to create binary executables.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: quil

Native Quil to be translated into an executable program.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "quil"))

Initargs

:|quil|

Readers
Writers
Slot: num_shots

The number of times to repeat the program.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "num_shots"))

Initargs

:|num_shots|

Readers
Writers
Class: binaryexecutableresponse

Program to run on the QPU.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: program

Execution settings and sequencer binaries.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "program"))

Initargs

:|program|

Readers
Writers
Slot: memory_descriptors

Internal field for constructing patch tables.

Type

(or null hash-table)

Initform

(make-hash-table :test (quote equalp))

Initargs

:|memory_descriptors|

Readers
Writers
Slot: ro_sources

Internal field for reshaping returned buffers.

Type

vector

Initform

#()

Initargs

:|ro_sources|

Readers
Writers
Class: boxcaraveragerkernel

A normalized flat or boxcar integration kernel.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

templatekernel.

Direct methods
Class: capture

Specify an acquisition on an rx-frame as well as the filters to apply.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The rx-frame label on which to trigger the acquisition.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: duration

The duration of the acquisition in [seconds]

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "duration"))

Initargs

:|duration|

Readers
Writers
Slot: filters

An ordered list of labels of filter kernels to apply to the captured waveform.

Type

vector

Initform

#()

Initargs

:|filters|

Readers
Writers
Slot: send_to_host

Transmit the readout bit back to Lodgepole.
(Unnecessary for fully calibrated active reset captures).

Type

rpcq:optional-bool

Initform

t

Initargs

:|send_to_host|

Readers
Writers
Slot: phase

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Type

double-float

Initform

0.0d0

Initargs

:|phase|

Readers
Writers
Slot: detuning

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Type

double-float

Initform

0.0d0

Initargs

:|detuning|

Readers
Writers
Class: conjugatebycliffordrequest

RPC request payload for conjugating a Pauli element by a Clifford element.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: pauli

Specification of a Pauli element.

Type

rpcq::|pauliterm|

Initform

(error (concatenate (quote string) "missing value for field " "pauli"))

Initargs

:|pauli|

Readers
Writers
Slot: clifford

Specification of a Clifford element.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "clifford"))

Initargs

:|clifford|

Readers
Writers
Class: conjugatebycliffordresponse

RPC reply payload for a Pauli element as conjugated by a Clifford element.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: phase

Encoded global phase factor on the emitted Pauli.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "phase"))

Initargs

:|phase|

Readers
Writers
Slot: pauli

Description of the encoded Pauli.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "pauli"))

Initargs

:|pauli|

Readers
Writers
Class: cwchannel

Configuration for a single CW Generator Channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: channel_index

The zero-indexed channel of the generator’s output.

Type

fixnum

Initform

0

Initargs

:|channel_index|

Readers
Writers
Slot: rf_output_frequency

The CW generator’s output frequency [Hz].

Type

(or null fixnum)

Initform

1000000000

Initargs

:|rf_output_frequency|

Readers
Writers
Slot: rf_output_power

The power of CW generator’s output [dBm].

Type

(or null double-float)

Initform

0.0d0

Initargs

:|rf_output_power|

Readers
Writers
Slot: rf_output_enabled

The state (on/off) of CW generator’s output.

Type

(or null rpcq:optional-bool)

Initform

t

Initargs

:|rf_output_enabled|

Readers
Writers
Class: cwfrequencysweep

Configuration of a continuous wave frequency sweep.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: start

Start frequency of the sweep, in Hz

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "start"))

Initargs

:|start|

Readers
Writers
Slot: stop

Stop frequency of the sweep, in Hz

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "stop"))

Initargs

:|stop|

Readers
Writers
Slot: num_pts

Number of frequency points to sample, cast to int.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "num_pts"))

Initargs

:|num_pts|

Readers
Writers
Slot: source

Source port number

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "source"))

Initargs

:|source|

Readers
Writers
Slot: measure

Measure port number

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "measure"))

Initargs

:|measure|

Readers
Writers
Class: dataaxis

A data axis allows to label element(s) of a stream.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: name

Label for the axis, e.g., ’time’ or ’shot_index’.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "name"))

Initargs

:|name|

Readers
Writers
Slot: points

The sequence of values along the axis.

Type

vector

Initform

#()

Initargs

:|points|

Readers
Writers
Class: debugmessage

Instructs the target to emit a specified debug message.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The frame label that owns this debug message.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: message

The 2-byte wide debug message to emit.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "message"))

Initargs

:|message|

Readers
Writers
Class: deployedrack

The rack configuration for lodgepole.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: rack_meta

Meta information about the deployed rack.

Type

rpcq::|rackmeta|

Initform

(error (concatenate (quote string) "missing value for field " "rack_meta"))

Initargs

:|rack_meta|

Readers
Writers
Slot: qpu

Information about the QPU.

Type

rpcq::qpu

Initform

(error (concatenate (quote string) "missing value for field " "qpu"))

Initargs

:|qpu|

Readers
Writers
Slot: instruments

Mapping of instrument name to instrument settings.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|instruments|

Readers
Writers
Class: draggaussianwaveform

A DRAG Gaussian shaped waveform envelope defined for a specific frame.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

templatewaveform.

Direct methods
Direct slots
Slot: fwhm

Full Width Half Max shape paramter in seconds

Type

(or null double-float)

Initargs

:|fwhm|

Readers
Writers
Slot: t0

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Type

(or null double-float)

Initargs

:|t0|

Readers
Writers
Slot: anh

Anharmonicity of the qubit, f01-f12 in (Hz)

Type

double-float

Initform

-2.1d8

Initargs

:|anh|

Readers
Writers
Slot: alpha

Dimensionless DRAG parameter

Type

double-float

Initform

0.0d0

Initargs

:|alpha|

Readers
Writers
Class: erfsquarewaveform

Pulse with a flat top and rounded shoulders given by error functions

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

templatewaveform.

Direct methods
Direct slots
Slot: risetime

The width of the rise and fall sections in seconds.

Type

double-float

Initform

9.999999717180685d-10

Initargs

:|risetime|

Readers
Writers
Slot: pad_left

Length of zero-amplitude padding before the pulse in seconds.

Type

double-float

Initform

0.0d0

Initargs

:|pad_left|

Readers
Writers
Slot: pad_right

Length of zero-amplitude padding after the pulse in seconds.

Type

double-float

Initform

0.0d0

Initargs

:|pad_right|

Readers
Writers
Class: executorjob

Job which is sent directly to the executor

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: instrument_settings

Dict mapping instrument names to arbitrary instrument settings.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "instrument_settings"))

Initargs

:|instrument_settings|

Readers
Writers
Slot: filter_pipeline

The filter pipeline to process measured data.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "filter_pipeline"))

Initargs

:|filter_pipeline|

Readers
Writers
Slot: receivers

Dict mapping stream names to receiver settings.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "receivers"))

Initargs

:|receivers|

Readers
Writers
Slot: duration

The total duration of the program execution in seconds.

Type

(or null double-float)

Initargs

:|duration|

Readers
Writers
Slot: timebomb

An optional payload used to match this job with a particular execution target.

Type

(or null rpcq::|timebomb|)

Initargs

:|timebomb|

Readers
Writers
Class: filterkernel

A filter kernel to produce scalar readout features from acquired readout waveforms.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

abstractkernel.

Direct methods
Direct slots
Slot: iqs

The raw kernel coefficients, alternating real and imaginary parts.

Type

vector

Initform

#()

Initargs

:|iqs|

Readers
Writers
Slot: bias

The kernel is offset by this real value. Can be used to ensure the decision threshold lies at 0.0.

Type

double-float

Initform

0.0d0

Initargs

:|bias|

Readers
Writers
Class: filternode

A node in the filter pipeline.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: module

Absolute python module import path in which the filter class is defined.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "module"))

Initargs

:|module|

Readers
Writers
Slot: filter_type

The type (class name) of the filter.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "filter_type"))

Initargs

:|filter_type|

Readers
Writers
Slot: params

Additional filter parameters.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|params|

Readers
Writers
Slot: source

Filter node label of the input to this node.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "source"))

Initargs

:|source|

Readers
Writers
Slot: publish

If True, return the output of this node with the job results (and publish a stream for it).

Type

rpcq:optional-bool

Initform

(error (concatenate (quote string) "missing value for field " "publish"))

Initargs

:|publish|

Readers
Writers
Class: flatkernel

An unnormalized flat or boxcar integration kernel.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

templatekernel.

Direct methods
Class: flatpulse

Instruction to play a pulse with a constant amplitude
(except for phase modulation) at a specific time on a specific frame.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The tx-frame label on which the pulse is played.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: iq

The I and Q value of the constant pulse.

Type

vector

Initform

(error (concatenate (quote string) "missing value for field " "iq"))

Initargs

:|iq|

Readers
Writers
Slot: duration

The duration of the pulse in [seconds], should be a
multiple of the associated tx-frame’s inverse sample rate.

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "duration"))

Initargs

:|duration|

Readers
Writers
Slot: phase

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Type

double-float

Initform

0.0d0

Initargs

:|phase|

Readers
Writers
Slot: detuning

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Type

double-float

Initform

0.0d0

Initargs

:|detuning|

Readers
Writers
Slot: scale

Dimensionless (re-)scaling factor which is applied to the envelope.

Type

(or null double-float)

Initform

1.0d0

Initargs

:|scale|

Readers
Writers
Class: flatwaveform

Flat pulse.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

templatewaveform.

Direct methods
Direct slots
Slot: iq

Individual IQ point to hold constant

Type

vector

Initform

#()

Initargs

:|iq|

Readers
Writers
Class: frame

A frame encapsulates any rotating frame
relative to which control or readout waveforms may be defined.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: direction

’rx’ or ’tx’

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "direction"))

Initargs

:|direction|

Readers
Writers
Slot: sample_rate

The sample rate [Hz] of the associated AWG/ADC

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "sample_rate"))

Initargs

:|sample_rate|

Readers
Writers
Slot: frequency

The frame frequency [Hz]

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "frequency"))

Initargs

:|frequency|

Readers
Writers
Class: gaussianwaveform

A Gaussian shaped waveform envelope defined for a specific frame.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

templatewaveform.

Direct methods
Direct slots
Slot: fwhm

Full Width Half Max shape paramter in seconds

Type

(or null double-float)

Initargs

:|fwhm|

Readers
Writers
Slot: t0

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Type

(or null double-float)

Initargs

:|t0|

Readers
Writers
Class: getexecutionresultsresponse

Results of a completed ExecutorJob execution.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: buffers

Result buffers for a completed ExecutorJob.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "buffers"))

Initargs

:|buffers|

Readers
Writers
Slot: execution_duration_microseconds

Duration (in microseconds) ExecutorJob held exclusive access to quantum hardware.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "execution_duration_microseconds"))

Initargs

:|execution_duration_microseconds|

Readers
Writers
Class: hermitegaussianwaveform

Hermite-Gaussian shaped pulse. Reference: Effects of arbitrary laser
or NMR pulse shapes on population inversion and coherence Warren S. Warren. 81, (1984); doi: 10.1063/1.447644

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

templatewaveform.

Direct methods
Direct slots
Slot: fwhm

Full Width Half Max shape paramter in seconds

Type

(or null double-float)

Initargs

:|fwhm|

Readers
Writers
Slot: t0

Center time coordinate of the shape in seconds. Defaults to mid-point of pulse.

Type

double-float

Initform

0.0d0

Initargs

:|t0|

Readers
Writers
Slot: anh

Anharmonicity of the qubit, f01-f12 in Hz

Type

double-float

Initform

-2.1d8

Initargs

:|anh|

Readers
Writers
Slot: alpha

Dimensionless DRAG parameter

Type

double-float

Initform

0.0d0

Initargs

:|alpha|

Readers
Writers
Slot: second_order_hrm_coeff

Second order coefficient (see paper)

Type

double-float

Initform

0.9559999704360962d0

Initargs

:|second_order_hrm_coeff|

Readers
Writers
Class: instruction

An instruction superclass.

Package

rpcq.

Source

core-messages.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: time

The time at which the instruction is emitted [in seconds].

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "time"))

Initargs

:|time|

Readers
Writers
Class: instrument

Instrument settings.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: address

The full address of a QPU.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "address"))

Initargs

:|address|

Readers
Writers
Slot: module

Full python import path for the module that includes the instrument driver.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "module"))

Initargs

:|module|

Readers
Writers
Slot: instrument_type

Instrument type (driver class name).

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "instrument_type"))

Initargs

:|instrument_type|

Readers
Writers
Slot: mnio_connections

MNIO network connections between Tsunami instruments

Type

(or null hash-table)

Initform

(make-hash-table :test (quote equalp))

Initargs

:|mnio_connections|

Readers
Writers
Slot: channels

Mapping of channel labels to channel settings

Type

(or null hash-table)

Initform

(make-hash-table :test (quote equalp))

Initargs

:|channels|

Readers
Writers
Slot: virtual

Whether the instrument is virtual.

Type

rpcq:optional-bool

Initargs

:|virtual|

Readers
Writers
Slot: setup

Any additional information used by the instrument for one-time-setup

Type

(or null hash-table)

Initform

(make-hash-table :test (quote equalp))

Initargs

:|setup|

Readers
Writers
Class: legacyusrpsequencer

Configuration for a Legacy USRP Sequencer

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated tx channel.

Type

(or null (simple-array character))

Initargs

:|tx_channel|

Readers
Writers
Slot: rx_channel

The label of the associated rx channel.

Type

(or null (simple-array character))

Initargs

:|rx_channel|

Readers
Writers
Class: microwavesourcesettings

Configuration of Microwave Source settings for operating amplifiers.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: frequency

Frequency setting for microwave source (Hz).

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "frequency"))

Initargs

:|frequency|

Readers
Writers
Slot: power

Power setting for microwave source (dBm).

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "power"))

Initargs

:|power|

Readers
Writers
Slot: output

Output setting for microwave source. If true, the source will be turned on.

Type

rpcq:optional-bool

Initform

(error (concatenate (quote string) "missing value for field " "output"))

Initargs

:|output|

Readers
Writers
Class: mnioconnection

Description of one side of an MNIO connection between two Tsunamis.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: port

The physical Tsunami MNIO port, indexed from 0, where this connection originates.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "port"))

Initargs

:|port|

Readers
Writers
Slot: destination

The Tsunami where this connection terminates.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "destination"))

Initargs

:|destination|

Readers
Writers
Class: nativequilmetadata

Metadata for a native quil program.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: final_rewiring

Output qubit index relabeling due to SWAP insertion.

Type

vector

Initform

#()

Initargs

:|final_rewiring|

Readers
Writers
Slot: gate_depth

Maximum number of successive gates in the native quil program.

Type

(or null fixnum)

Initargs

:|gate_depth|

Readers
Writers
Slot: gate_volume

Total number of gates in the native quil program.

Type

(or null fixnum)

Initargs

:|gate_volume|

Readers
Writers
Slot: multiqubit_gate_depth

Maximum number of successive two-qubit gates in the native quil program.

Type

(or null fixnum)

Initargs

:|multiqubit_gate_depth|

Readers
Writers
Slot: program_duration

Rough estimate of native quil program length in nanoseconds.

Type

(or null double-float)

Initargs

:|program_duration|

Readers
Writers
Slot: program_fidelity

Rough estimate of the fidelity of the full native quil program, uses specs.

Type

(or null double-float)

Initargs

:|program_fidelity|

Readers
Writers
Slot: topological_swaps

Total number of SWAPs in the native quil program.

Type

(or null fixnum)

Initargs

:|topological_swaps|

Readers
Writers
Slot: qpu_runtime_estimation

The estimated runtime (milliseconds) on a Rigetti QPU for a protoquil program.

Type

(or null double-float)

Initargs

:|qpu_runtime_estimation|

Readers
Writers
Class: nativequilrequest

Quil and the device metadata necessary for quilc.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: quil

Arbitrary Quil to be sent to quilc.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "quil"))

Initargs

:|quil|

Readers
Writers
Slot: target_device

Specifications for the device to target with quilc.

Type

rpcq::|targetdevice|

Initform

(error (concatenate (quote string) "missing value for field " "target_device"))

Initargs

:|target_device|

Readers
Writers
Class: nativequilresponse

Native Quil and associated metadata returned from quilc.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: quil

Native Quil returned from quilc.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "quil"))

Initargs

:|quil|

Readers
Writers
Slot: metadata

Metadata for the returned Native Quil.

Type

(or null rpcq::|nativequilmetadata|)

Initargs

:|metadata|

Readers
Writers
Class: parameteraref

A parametric expression.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: name

The parameter name

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "name"))

Initargs

:|name|

Readers
Writers
Slot: index

The array index.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "index"))

Initargs

:|index|

Readers
Writers
Class: parameterexpression

A parametric expression.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: operator

The operator ’+’, ’-’, ’*’. The operands can be
constant floating point numbers or strings referencing a dynamic program parameter or a ParameterAref to index into an array or itself a ParameterExpression.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "operator"))

Initargs

:|operator|

Readers
Writers
Slot: a

The first operand

Initform

(error (concatenate (quote string) "missing value for field " "a"))

Initargs

:|a|

Readers
Writers
Slot: b

The second operand

Initform

(error (concatenate (quote string) "missing value for field " "b"))

Initargs

:|b|

Readers
Writers
Class: parameterspec

Specification of a dynamic parameter type and array-length.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: type

The parameter type, e.g., one of ’INTEGER’, or ’FLOAT’.

Type

(simple-array character)

Initform

""

Initargs

:|type|

Readers
Writers
Slot: length

If this is not 1, the parameter is an array of this length.

Type

fixnum

Initform

1

Initargs

:|length|

Readers
Writers
Class: patchablebinary

Tsunami binary with patching metadata for classical parameter modification.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: base_binary

Raw Tsunami binary object.

Initform

(error (concatenate (quote string) "missing value for field " "base_binary"))

Initargs

:|base_binary|

Readers
Writers
Slot: patch_table

Dictionary mapping patch names to their memory descriptors.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "patch_table"))

Initargs

:|patch_table|

Readers
Writers
Class: patchtarget

Patchable memory location descriptor.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: patch_type

Data type at this address.

Type

rpcq::|parameterspec|

Initform

(error (concatenate (quote string) "missing value for field " "patch_type"))

Initargs

:|patch_type|

Readers
Writers
Slot: patch_offset

Memory address of the patch.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "patch_offset"))

Initargs

:|patch_offset|

Readers
Writers
Class: pauliterm

Specification of a single Pauli term as a tensor product of Pauli factors.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: indices

Qubit indices onto which the factors of a Pauli term are applied.

Type

vector

Initform

(error (concatenate (quote string) "missing value for field " "indices"))

Initargs

:|indices|

Readers
Writers
Slot: symbols

Ordered factors of a Pauli term.

Type

vector

Initform

(error (concatenate (quote string) "missing value for field " "symbols"))

Initargs

:|symbols|

Readers
Writers
Class: program

The dynamic aspects (waveforms, readout kernels, scheduled instructions and parameters) of a job.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: waveforms

The waveforms appearing in the program by waveform label.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|waveforms|

Readers
Writers
Slot: filters

The readout filter kernels appearing in the program by feature label.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|filters|

Readers
Writers
Slot: scheduled_instructions

The ordered sequence of scheduled instruction objects.

Type

vector

Initform

#()

Initargs

:|scheduled_instructions|

Readers
Writers
Slot: parameters

A mapping of dynamic parameter names to their type specification.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|parameters|

Readers
Writers
Class: pulse

Instruction to play a pulse with some (modified) waveform envelope at a specific time on a specific frame.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The tx-frame label on which the pulse is played.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: waveform

The waveform label

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "waveform"))

Initargs

:|waveform|

Readers
Writers
Slot: scale

Dimensionless (re-)scaling factor which is applied to the envelope.

Type

(or null double-float)

Initform

1.0d0

Initargs

:|scale|

Readers
Writers
Slot: phase

Static phase angle [units of tau=2pi] by which the envelope quadratures are rotated.

Type

double-float

Initform

0.0d0

Initargs

:|phase|

Readers
Writers
Slot: detuning

Detuning [Hz] with which the pulse envelope should be modulated relative to the frame frequency.

Type

double-float

Initform

0.0d0

Initargs

:|detuning|

Readers
Writers
Class: pyquilexecutableresponse

rpcQ-serializable form of a pyQuil Program object.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: program

String representation of a Quil program.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "program"))

Initargs

:|program|

Readers
Writers
Slot: attributes

Miscellaneous attributes to be unpacked onto the pyQuil Program object.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "attributes"))

Initargs

:|attributes|

Readers
Writers
Class: qdofastfluxchannel

Configuration for a single QDO Fast Flux Channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: direction

The QDO is a device that transmits pulses.

Type

(or null (simple-array character))

Initform

"tx"

Initargs

:|direction|

Readers
Writers
Slot: channel_index

The channel index on the QDO, zero indexed from the lowest channel, as installed in the box.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "channel_index"))

Initargs

:|channel_index|

Readers
Writers
Slot: delay

Delay [seconds] to account for inter-channel skew.

Type

double-float

Initform

0.0d0

Initargs

:|delay|

Readers
Writers
Slot: flux_current

Flux current [Amps].

Type

(or null double-float)

Initargs

:|flux_current|

Readers
Writers
Class: qdosequencer

Configuration for a single QDO Sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index of this sequencer.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Class: qdoslowfluxchannel

Configuration for a single QDO Slow Flux Channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: channel_index

The channel index on the QDO, zero indexed from the
lowest channel, as installed in the box. Flux index typically starts at 4.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "channel_index"))

Initargs

:|channel_index|

Readers
Writers
Slot: flux_current

Flux current [Amps].

Type

(or null double-float)

Initargs

:|flux_current|

Readers
Writers
Slot: relay_closed

Set the state of the Flux relay.
True - Relay closed, allows flux current to flow. False - Relay open, no flux current can flow.

Type

(or null rpcq:optional-bool)

Initargs

:|relay_closed|

Readers
Writers
Class: qfdchannel

Configuration for a single QFD Channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: direction

The QFD is a device that transmits pulses.

Type

(or null (simple-array character))

Initform

"tx"

Initargs

:|direction|

Readers
Writers
Slot: nco_frequency

The DAC NCO frequency [Hz].

Type

(or null double-float)

Initform

0.0d0

Initargs

:|nco_frequency|

Readers
Writers
Slot: gain

The output gain on the DAC in [dB]. Note that this
should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Type

(or null double-float)

Initform

0.0d0

Initargs

:|gain|

Readers
Writers
Slot: channel_index

The channel index on the QFD, zero indexed from the lowest channel, as installed in the box.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "channel_index"))

Initargs

:|channel_index|

Readers
Writers
Slot: delay

Delay [seconds] to account for inter-channel skew.

Type

double-float

Initform

0.0d0

Initargs

:|delay|

Readers
Writers
Slot: flux_current

Flux current [Amps].

Type

(or null double-float)

Initargs

:|flux_current|

Readers
Writers
Slot: relay_closed

Set the state of the Flux relay.
True - Relay closed, allows flux current to flow. False - Relay open, no flux current can flow.

Type

(or null rpcq:optional-bool)

Initform

:none

Initargs

:|relay_closed|

Readers
Writers
Class: qfdsequencer

Configuration for a single QFD Sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index of this sequencer.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Class: qfdx2sequencer

Configuration for a single QFDx2 Sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index of this sequencer.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Class: qgschannel

Configuration for a single QGS Channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: direction

The QGS is a device that transmits pulses.

Type

(or null (simple-array character))

Initform

"tx"

Initargs

:|direction|

Readers
Writers
Slot: nco_frequency

The DAC NCO frequency [Hz].

Type

(or null double-float)

Initform

2.0d9

Initargs

:|nco_frequency|

Readers
Writers
Slot: gain

The output gain on the DAC in [dB]. Note that this
should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Type

(or null double-float)

Initform

0.0d0

Initargs

:|gain|

Readers
Writers
Slot: channel_index

The channel index on the QGS, zero indexed from the lowest channel, as installed in the box.

Type

(or null fixnum)

Initform

0

Initargs

:|channel_index|

Readers
Writers
Slot: delay

Delay [seconds] to account for inter-channel skew.

Type

double-float

Initform

0.0d0

Initargs

:|delay|

Readers
Writers
Class: qgssequencer

Configuration for a single QGS Sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index of this sequencer.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Class: qgsx2sequencer

Configuration for a single QGSx2 Sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index of this sequencer.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Class: qpu

Configuration info for the QPU

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: chip_label

The fabrication label for the QPU chip.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "chip_label"))

Initargs

:|chip_label|

Readers
Writers
Slot: qubits

A list of qubits labels.

Type

vector

Initform

#()

Initargs

:|qubits|

Readers
Writers
Slot: controls

A mapping of control labels to tuples (instrument label, channel label).

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|controls|

Readers
Writers
Slot: controls_by_qubit

A map of qubit label to list of controls that should be
considered blocked when the qubit is part of a job execution.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|controls_by_qubit|

Readers
Writers
Class: qpurequest

Program and patch values to send to the QPU for execution.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: program

Execution settings and sequencer binaries.

Initform

(error (concatenate (quote string) "missing value for field " "program"))

Initargs

:|program|

Readers
Writers
Slot: patch_values

Dictionary mapping data names to data values for patching the binary.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "patch_values"))

Initargs

:|patch_values|

Readers
Writers
Slot: id

QPU request ID.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "id"))

Initargs

:|id|

Readers
Writers
Class: qrrchannel

Configuration for a single QRR Channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: direction

The QRR is a device that receives readout pulses.

Type

(or null (simple-array character))

Initform

"rx"

Initargs

:|direction|

Readers
Writers
Slot: nco_frequency

The ADC NCO frequency [Hz].

Type

(or null double-float)

Initform

0.0d0

Initargs

:|nco_frequency|

Readers
Writers
Slot: gain

The input gain on the ADC in [dB]. Note that this should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Type

(or null double-float)

Initform

0.0d0

Initargs

:|gain|

Readers
Writers
Slot: channel_index

The channel index on the QRR, zero indexed from the lowest channel, as installed in the box.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "channel_index"))

Initargs

:|channel_index|

Readers
Writers
Slot: delay

Delay [seconds] to account for inter-channel skew.

Type

double-float

Initform

0.0d0

Initargs

:|delay|

Readers
Writers
Class: qrrsequencer

Configuration for a single readout receive (QRR) sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: rx_channel

The label of the associated rx channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "rx_channel"))

Initargs

:|rx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index (0-15) to assign. Note that only sequencer 0 can return raw readout measurements.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Class: qrtchannel

Configuration for a single QRT Channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: direction

The QRT is a device that transmits readout pulses.

Type

(or null (simple-array character))

Initform

"tx"

Initargs

:|direction|

Readers
Writers
Slot: nco_frequency

The DAC NCO frequency [Hz].

Type

(or null double-float)

Initform

1.25d9

Initargs

:|nco_frequency|

Readers
Writers
Slot: gain

The output gain on the DAC in [dB]. Note that this should be in the range -45dB to 0dB and is rounded to the nearest 3dB step.

Type

(or null double-float)

Initform

0.0d0

Initargs

:|gain|

Readers
Writers
Slot: channel_index

The channel index on the QRT, zero indexed from the lowest channel, as installed in the box.

Type

(or null fixnum)

Initform

0

Initargs

:|channel_index|

Readers
Writers
Slot: delay

Delay [seconds] to account for inter-channel skew.

Type

double-float

Initform

0.0d0

Initargs

:|delay|

Readers
Writers
Class: qrtsequencer

Configuration for a single readout transmit (QRT) sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated tx channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index (0-7) of this sequencer.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Slot: low_freq_range

Used to signal if this sequencer is in the low frequency configuration.

Type

(or null rpcq:optional-bool)

Initargs

:|low_freq_range|

Readers
Writers
Class: qrtx2sequencer

Configuration for a dual readout transmit (QRTx2) sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated tx channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index (0-15) of this sequencer.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Slot: low_freq_range

Used to signal if this sequencer is in the low frequency configuration.

Type

(or null rpcq:optional-bool)

Initargs

:|low_freq_range|

Readers
Writers
Class: quiltbinaryexecutablerequest

Native Quilt and the information needed to create binary executables.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: quilt

Native Quilt to be translated into an executable program.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "quilt"))

Initargs

:|quilt|

Readers
Writers
Slot: num_shots

The number of times to repeat the program.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "num_shots"))

Initargs

:|num_shots|

Readers
Writers
Class: quiltbinaryexecutableresponse

Program to run on the QPU.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: program

Execution settings and sequencer binaries.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "program"))

Initargs

:|program|

Readers
Writers
Slot: memory_descriptors

Internal field for constructing patch tables.

Type

(or null hash-table)

Initform

(make-hash-table :test (quote equalp))

Initargs

:|memory_descriptors|

Readers
Writers
Slot: ro_sources

Internal field for reshaping returned buffers.

Type

vector

Initform

#()

Initargs

:|ro_sources|

Readers
Writers
Slot: debug

Debug information associated with the translation process.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "debug"))

Initargs

:|debug|

Readers
Writers
Class: quiltcalibrationsrequest

A request for up-to-date Quilt calibrations.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: target_device

Specifications for the device to get calibrations for.

Type

rpcq::|targetdevice|

Initform

(error (concatenate (quote string) "missing value for field " "target_device"))

Initargs

:|target_device|

Readers
Writers
Class: quiltcalibrationsresponse

Up-to-date Quilt calibrations.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: quilt

Quilt code with definitions for frames, waveforms, and calibrations.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "quilt"))

Initargs

:|quilt|

Readers
Writers
Class: rackmeta

Meta information about a rack configuration.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: rack_id

A unique identifier for the rack.

Type

(or null (simple-array character))

Initargs

:|rack_id|

Readers
Writers
Slot: rack_version

A version of the rack configuration.

Type

(or null fixnum)

Initargs

:|rack_version|

Readers
Writers
Slot: schema_version

A version of the rack configuration.

Type

fixnum

Initform

0

Initargs

:|schema_version|

Readers
Writers
Class: randomizedbenchmarkingrequest

RPC request payload for generating a randomized benchmarking sequence.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: depth

Depth of the benchmarking sequence.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "depth"))

Initargs

:|depth|

Readers
Writers
Slot: qubits

Number of qubits involved in the benchmarking sequence.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "qubits"))

Initargs

:|qubits|

Readers
Writers
Slot: gateset

List of Quil programs, each describing a Clifford.

Type

vector

Initform

(error (concatenate (quote string) "missing value for field " "gateset"))

Initargs

:|gateset|

Readers
Writers
Slot: seed

PRNG seed. Set this to guarantee repeatable results.

Type

(or null fixnum)

Initargs

:|seed|

Readers
Writers
Slot: interleaver

Fixed Clifford, specified as a Quil string, to interleave through an RB sequence.

Type

(or null (simple-array character))

Initargs

:|interleaver|

Readers
Writers
Class: randomizedbenchmarkingresponse

RPC reply payload for a randomly generated benchmarking sequence.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: sequence

List of Cliffords, each expressed as a list of generator indices.

Type

vector

Initform

(error (concatenate (quote string) "missing value for field " "sequence"))

Initargs

:|sequence|

Readers
Writers
Class: receiver

The receiver settings generated by the low-level translator.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: instrument

The instrument name

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "instrument"))

Initargs

:|instrument|

Readers
Writers
Slot: channel

The instrument channel (label)

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "channel"))

Initargs

:|channel|

Readers
Writers
Slot: stream

Name of the associated (raw) output stream that should be published.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "stream"))

Initargs

:|stream|

Readers
Writers
Slot: publish

Whether to publish the raw output stream.

Type

rpcq:optional-bool

Initform

(error (concatenate (quote string) "missing value for field " "publish"))

Initargs

:|publish|

Readers
Writers
Slot: data_axes

Ordered list of DataAxis objects that together uniquely label each element in the stream.

Type

vector

Initform

#()

Initargs

:|data_axes|

Readers
Writers
Class: resources

The resources required by a job

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: qubits

A list of qubits blocked/required by a job.

Type

vector

Initform

#()

Initargs

:|qubits|

Readers
Writers
Slot: frames

RF/UHF frames by label.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|frames|

Readers
Writers
Slot: frames_to_controls

Mapping of frames to control channels by labels.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|frames_to_controls|

Readers
Writers
Class: rewritearithmeticrequest

A request type to handle compiling arithmetic out of gate parameters.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: quil

Native Quil for which to rewrite arithmetic parameters.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "quil"))

Initargs

:|quil|

Readers
Writers
Class: rewritearithmeticresponse

The data needed to run programs with gate arithmetic on the hardware.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: quil

Native Quil rewritten with no arithmetic in gate parameters.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "quil"))

Initargs

:|quil|

Readers
Writers
Slot: original_memory_descriptors

The declared memory descriptors in the Quil of the related request.

Type

(or null hash-table)

Initform

(make-hash-table :test (quote equalp))

Initargs

:|original_memory_descriptors|

Readers
Writers
Slot: recalculation_table

A mapping from memory references to the original gate arithmetic.

Type

(or null hash-table)

Initform

(make-hash-table :test (quote equalp))

Initargs

:|recalculation_table|

Readers
Writers
Class: rpcerror

A error message for JSONRPC requests.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: jsonrpc

The JSONRPC version.

Type

(simple-array character)

Initform

"2.0"

Initargs

:|jsonrpc|

Readers
Writers
Slot: error

The error message.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "error"))

Initargs

:|error|

Readers
Writers
Slot: id

The RPC request id.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "id"))

Initargs

:|id|

Readers
Writers
Slot: warnings

A list of warnings that occurred during request processing.

Type

vector

Initform

#()

Initargs

:|warnings|

Readers
Writers
Class: rpcreply

The reply for a JSONRPC request.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: jsonrpc

The JSONRPC version.

Type

(simple-array character)

Initform

"2.0"

Initargs

:|jsonrpc|

Readers
Writers
Slot: result

The RPC result.

Type

(or null t)

Initargs

:|result|

Readers
Writers
Slot: id

The RPC request id.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "id"))

Initargs

:|id|

Readers
Writers
Slot: warnings

A list of warnings that occurred during request processing.

Type

vector

Initform

#()

Initargs

:|warnings|

Readers
Writers
Class: rpcrequest

A single request object according to the JSONRPC standard.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: jsonrpc

The JSONRPC version.

Type

(simple-array character)

Initform

"2.0"

Initargs

:|jsonrpc|

Readers
Writers
Slot: method

The RPC function name.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "method"))

Initargs

:|method|

Readers
Writers
Slot: params

The RPC function arguments.

Initform

(error (concatenate (quote string) "missing value for field " "params"))

Initargs

:|params|

Readers
Writers
Slot: id

RPC request id (used to verify that request and response belong together).

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "id"))

Initargs

:|id|

Readers
Writers
Slot: client_timeout

The client-side timeout for the request. The server itself may be configured with a timeout that is greater than the client-side timeout, in which case the server can choose to terminate any processing of the request.

Type

(or null double-float)

Initargs

:|client_timeout|

Readers
Writers
Slot: client_key

The ZeroMQ CURVE public key used to make the request, as received by the server. Empty if no key is used.

Type

(or null (simple-array character))

Initargs

:|client_key|

Readers
Writers
Class: rpcwarning

An individual warning emitted in the course of RPC processing.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: body

The warning string.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "body"))

Initargs

:|body|

Readers
Writers
Slot: kind

The type of the warning raised.

Type

(or null (simple-array character))

Initargs

:|kind|

Readers
Writers
Class: scheduleirjob

The unit of work to be executed.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: job_id

A unique ID to help the submitter track the job.

Type

(or null (simple-array character))

Initargs

:|job_id|

Readers
Writers
Slot: num_shots

How many repetitions the job should be executed for.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "num_shots"))

Initargs

:|num_shots|

Readers
Writers
Slot: resources

The resources required by the job.

Type

rpcq::|resources|

Initform

(error (concatenate (quote string) "missing value for field " "resources"))

Initargs

:|resources|

Readers
Writers
Slot: operating_point

Operating points or static instrument channel settings
(mapping control_name (instrument name) -> instrument channel settings (instrument settings) dictionary).

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|operating_point|

Readers
Writers
Slot: program

The actual program to be executed.

Type

rpcq::|program|

Initform

(error (concatenate (quote string) "missing value for field " "program"))

Initargs

:|program|

Readers
Writers
Slot: filter_pipeline

The filter pipeline. Mapping of node labels to FilterNode’s.

Type

hash-table

Initform

(make-hash-table :test (quote equalp))

Initargs

:|filter_pipeline|

Readers
Writers
Class: setfrequency

Set the frequency of a tx-frame to a specific value at a specific time.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The frame label for which to set the frequency.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: frequency

The frequency [Hz] to set the frame frequency to.

Type

double-float

Initform

0.0d0

Initargs

:|frequency|

Readers
Writers
Class: setphase

Set the phase of a frame to an absolute value at a specific time.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The frame label for which to set the phase.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: phase

Phase angle [units of tau=2pi] to update the frame phase to.

Type

double-float

Initform

0.0d0

Initargs

:|phase|

Readers
Writers
Class: setscale

Set the scale of a tx-frame to a value at a specific time.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The frame label for which to set the scale.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: scale

Scale (unitless) to apply to waveforms generated on the frame.

Type

double-float

Initform

1.0d0

Initargs

:|scale|

Readers
Writers
Class: shiftfrequency

Shift the frequency of a tx-frame by a specific amount at a specific time.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The frame label for which to set the frequency.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: delta

Frequency shift (new-old) [Hz] to apply to the frame frequency.

Type

double-float

Initform

0.0d0

Initargs

:|delta|

Readers
Writers
Class: shiftphase

Shift the phase of a frame by a relative value at a specific time.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame

The frame label for which to set the phase.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame"))

Initargs

:|frame|

Readers
Writers
Slot: delta

Phase angle [units of tau=2pi] by which to shift the
frame phase. Can be a numerical value, a ParameterExpression or a ParameterAref.

Initform

0.0

Initargs

:|delta|

Readers
Writers
Class: swapphases

Swap the phases of two tx-frames at a specific time.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

instruction.

Direct methods
Direct slots
Slot: frame_a

The first frame’s label.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame_a"))

Initargs

:|frame_a|

Readers
Writers
Slot: frame_b

The second frame’s label.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "frame_b"))

Initargs

:|frame_b|

Readers
Writers
Class: targetdevice

ISA and specs for a particular device.

Package

rpcq.

Source

messages.lisp.

Direct methods
Direct slots
Slot: isa

Instruction-set architecture for this device.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "isa"))

Initargs

:|isa|

Readers
Writers
Slot: specs

Fidelities and coherence times for this device.

Type

hash-table

Initform

(error (concatenate (quote string) "missing value for field " "specs"))

Initargs

:|specs|

Readers
Writers
Class: templatekernel

An integration kernel defined for a specific frame.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

abstractkernel.

Direct subclasses
Direct methods
Direct slots
Slot: duration

Length of the boxcar kernel in seconds

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "duration"))

Initargs

:|duration|

Readers
Writers
Slot: bias

The kernel is offset by this real value. Can be used to ensure the decision threshold lies at 0.0.

Type

double-float

Initform

0.0d0

Initargs

:|bias|

Readers
Writers
Slot: scale

Scale to apply to boxcar kernel

Type

double-float

Initform

1.0d0

Initargs

:|scale|

Readers
Writers
Slot: phase

Phase [units of tau=2pi] to rotate the kernel by.

Type

double-float

Initform

0.0d0

Initargs

:|phase|

Readers
Writers
Slot: detuning

Modulation to apply to the filter kernel in Hz

Type

double-float

Initform

0.0d0

Initargs

:|detuning|

Readers
Writers
Class: templatewaveform

A waveform envelope defined for a specific frame. A templated waveform is defined by a parameterized pulseshape rather than explicit IQ values. The message specification does not enforce that the duration is implementable on the hardware.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

abstractwaveform.

Direct subclasses
Direct methods
Direct slots
Slot: duration

Length of the pulse in seconds

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "duration"))

Initargs

:|duration|

Readers
Writers
Slot: scale

Scale to apply to waveform envelope

Type

double-float

Initform

1.0d0

Initargs

:|scale|

Readers
Writers
Slot: phase

Phase [units of tau=2pi] to rotate the complex waveform envelope.

Type

double-float

Initform

0.0d0

Initargs

:|phase|

Readers
Writers
Slot: detuning

Modulation to apply to the waveform in Hz

Type

double-float

Initform

0.0d0

Initargs

:|detuning|

Readers
Writers
Class: timebomb

Payload used to match a job with a particular execution target.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: deadline

Deadline, specified in the format
’%Y-%m-%dT%H:%M:%S.000Z’, after which this job becomes unexecutable.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "deadline"))

Initargs

:|deadline|

Readers
Writers
Slot: chip_label

Label string for the chip on which this job is meant to execute.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "chip_label"))

Initargs

:|chip_label|

Readers
Writers
Class: usicardsequencer

Configuration for the card which
interfaces with the USI Target on the USRP.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Class: usitargetsequencer

Configuration for a single USITarget Sequencer.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: tx_channel

The label of the associated intial tx channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "tx_channel"))

Initargs

:|tx_channel|

Readers
Writers
Slot: rx_channel

The label of the associated initial rx channel.

Type

(simple-array character)

Initform

(error (concatenate (quote string) "missing value for field " "rx_channel"))

Initargs

:|rx_channel|

Readers
Writers
Slot: sequencer_index

The sequencer index (0-7) to assign. Note that only
sequencer 0 has the ability to use the NCO or capture raw readout streams.

Type

fixnum

Initform

(error (concatenate (quote string) "missing value for field " "sequencer_index"))

Initargs

:|sequencer_index|

Readers
Writers
Class: vnasettings

Configuration of VNA settings for a continuous wave sweep.

Package

rpcq.

Source

core-messages.lisp.

Direct methods
Direct slots
Slot: e_delay

Electrical delay in seconds from source to measure port

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "e_delay"))

Initargs

:|e_delay|

Readers
Writers
Slot: phase_offset

Phase offset in degrees from measured to reported phase

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "phase_offset"))

Initargs

:|phase_offset|

Readers
Writers
Slot: bandwidth

Bandwidth of the sweep, in Hz

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "bandwidth"))

Initargs

:|bandwidth|

Readers
Writers
Slot: power

Source power in dBm

Type

double-float

Initform

(error (concatenate (quote string) "missing value for field " "power"))

Initargs

:|power|

Readers
Writers
Slot: averaging

Sets the number of points to combine into an averaged trace

Type

fixnum

Initform

1

Initargs

:|averaging|

Readers
Writers
Slot: freq_sweep

Frequency sweep settings

Type

rpcq::|cwfrequencysweep|

Initform

(error (concatenate (quote string) "missing value for field " "freq_sweep"))

Initargs

:|freq_sweep|

Readers
Writers
Class: waveform

A waveform envelope defined by specific IQ values for a specific frame.

Package

rpcq.

Source

core-messages.lisp.

Direct superclasses

abstractwaveform.

Direct methods
Direct slots
Slot: iqs

The raw waveform envelope samples, alternating I and Q values.

Type

vector

Initform

#()

Initargs

:|iqs|

Readers
Writers
Class: yokogawags200channel

Configuration for a single Yokogawa GS200 Channel.

Package

rpcq.

Source

core-messages.lisp.

Direct methods

5.2.6 Types

Type: atom-type ()
Package

rpcq.

Source

rpcq.lisp.

Type: dispatch-table ()
Package

rpcq.

Source

server.lisp.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   %   (  
A   B   C   D   E   F   G   H   I   L   M   N   P   Q   R   S   T   U   V   W  
Index Entry  Section

%
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%deserialize-struct: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%%serialize: Private generic functions
%deserialize: Private generic functions
%deserialize: Private generic functions
%deserialize: Private generic functions
%deserialize: Private generic functions
%deserialize: Private generic functions
%deserialize: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%deserialize-struct: Private generic functions
%plist-to-string-hash-table: Private ordinary functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%print-slots: Private generic functions
%process-raw-request: Private ordinary functions
%process-request: Private ordinary functions
%pull-raw-request: Private ordinary functions
%push-raw-request: Private ordinary functions
%rpc-call-raw-request: Private ordinary functions
%rpc-server-thread-worker: Private ordinary functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions
%serialize: Private generic functions

(
(setf abstract-kernel-frame): Private generic functions
(setf abstract-kernel-frame): Private generic functions
(setf abstract-waveform-frame): Private generic functions
(setf abstract-waveform-frame): Private generic functions
(setf abstractkernel-frame): Private generic functions
(setf abstractkernel-frame): Private generic functions
(setf abstractwaveform-frame): Private generic functions
(setf abstractwaveform-frame): Private generic functions
(setf active-reset-apply-feedback-when): Private generic functions
(setf active-reset-apply-feedback-when): Private generic functions
(setf active-reset-attempts): Private generic functions
(setf active-reset-attempts): Private generic functions
(setf active-reset-feedback-duration): Private generic functions
(setf active-reset-feedback-duration): Private generic functions
(setf active-reset-feedback-instructions): Private generic functions
(setf active-reset-feedback-instructions): Private generic functions
(setf active-reset-measurement-bit): Private generic functions
(setf active-reset-measurement-bit): Private generic functions
(setf active-reset-measurement-duration): Private generic functions
(setf active-reset-measurement-duration): Private generic functions
(setf active-reset-measurement-instructions): Private generic functions
(setf active-reset-measurement-instructions): Private generic functions
(setf active-reset-time): Private generic functions
(setf active-reset-time): Private generic functions
(setf activereset-apply_feedback_when): Private generic functions
(setf activereset-apply_feedback_when): Private generic functions
(setf activereset-attempts): Private generic functions
(setf activereset-attempts): Private generic functions
(setf activereset-feedback_duration): Private generic functions
(setf activereset-feedback_duration): Private generic functions
(setf activereset-feedback_instructions): Private generic functions
(setf activereset-feedback_instructions): Private generic functions
(setf activereset-measurement_bit): Private generic functions
(setf activereset-measurement_bit): Private generic functions
(setf activereset-measurement_duration): Private generic functions
(setf activereset-measurement_duration): Private generic functions
(setf activereset-measurement_instructions): Private generic functions
(setf activereset-measurement_instructions): Private generic functions
(setf activereset-time): Private generic functions
(setf activereset-time): Private generic functions
(setf awg-channel-delay): Private generic functions
(setf awg-channel-delay): Private generic functions
(setf awg-channel-direction): Private generic functions
(setf awg-channel-direction): Private generic functions
(setf awg-channel-gain): Private generic functions
(setf awg-channel-gain): Private generic functions
(setf awg-channel-lo-frequency): Private generic functions
(setf awg-channel-lo-frequency): Private generic functions
(setf awg-channel-sample-rate): Private generic functions
(setf awg-channel-sample-rate): Private generic functions
(setf awgchannel-delay): Private generic functions
(setf awgchannel-delay): Private generic functions
(setf awgchannel-direction): Private generic functions
(setf awgchannel-direction): Private generic functions
(setf awgchannel-gain): Private generic functions
(setf awgchannel-gain): Private generic functions
(setf awgchannel-lo_frequency): Private generic functions
(setf awgchannel-lo_frequency): Private generic functions
(setf awgchannel-sample_rate): Private generic functions
(setf awgchannel-sample_rate): Private generic functions
(setf binary-executable-request-num-shots): Private generic functions
(setf binary-executable-request-num-shots): Private generic functions
(setf binary-executable-request-quil): Private generic functions
(setf binary-executable-request-quil): Private generic functions
(setf binary-executable-response-memory-descriptors): Private generic functions
(setf binary-executable-response-memory-descriptors): Private generic functions
(setf binary-executable-response-program): Private generic functions
(setf binary-executable-response-program): Private generic functions
(setf binary-executable-response-ro-sources): Private generic functions
(setf binary-executable-response-ro-sources): Private generic functions
(setf binaryexecutablerequest-num_shots): Private generic functions
(setf binaryexecutablerequest-num_shots): Private generic functions
(setf binaryexecutablerequest-quil): Private generic functions
(setf binaryexecutablerequest-quil): Private generic functions
(setf binaryexecutableresponse-memory_descriptors): Private generic functions
(setf binaryexecutableresponse-memory_descriptors): Private generic functions
(setf binaryexecutableresponse-program): Private generic functions
(setf binaryexecutableresponse-program): Private generic functions
(setf binaryexecutableresponse-ro_sources): Private generic functions
(setf binaryexecutableresponse-ro_sources): Private generic functions
(setf capture-detuning): Private generic functions
(setf capture-detuning): Private generic functions
(setf capture-detuning): Private generic functions
(setf capture-detuning): Private generic functions
(setf capture-duration): Private generic functions
(setf capture-duration): Private generic functions
(setf capture-duration): Private generic functions
(setf capture-duration): Private generic functions
(setf capture-filters): Private generic functions
(setf capture-filters): Private generic functions
(setf capture-filters): Private generic functions
(setf capture-filters): Private generic functions
(setf capture-frame): Private generic functions
(setf capture-frame): Private generic functions
(setf capture-frame): Private generic functions
(setf capture-frame): Private generic functions
(setf capture-phase): Private generic functions
(setf capture-phase): Private generic functions
(setf capture-phase): Private generic functions
(setf capture-phase): Private generic functions
(setf capture-send-to-host): Private generic functions
(setf capture-send-to-host): Private generic functions
(setf capture-send_to_host): Private generic functions
(setf capture-send_to_host): Private generic functions
(setf conjugate-by-clifford-request-clifford): Private generic functions
(setf conjugate-by-clifford-request-clifford): Private generic functions
(setf conjugate-by-clifford-request-pauli): Private generic functions
(setf conjugate-by-clifford-request-pauli): Private generic functions
(setf conjugate-by-clifford-response-pauli): Private generic functions
(setf conjugate-by-clifford-response-pauli): Private generic functions
(setf conjugate-by-clifford-response-phase): Private generic functions
(setf conjugate-by-clifford-response-phase): Private generic functions
(setf conjugatebycliffordrequest-clifford): Private generic functions
(setf conjugatebycliffordrequest-clifford): Private generic functions
(setf conjugatebycliffordrequest-pauli): Private generic functions
(setf conjugatebycliffordrequest-pauli): Private generic functions
(setf conjugatebycliffordresponse-pauli): Private generic functions
(setf conjugatebycliffordresponse-pauli): Private generic functions
(setf conjugatebycliffordresponse-phase): Private generic functions
(setf conjugatebycliffordresponse-phase): Private generic functions
(setf cw-channel-channel-index): Private generic functions
(setf cw-channel-channel-index): Private generic functions
(setf cw-channel-rf-output-enabled): Private generic functions
(setf cw-channel-rf-output-enabled): Private generic functions
(setf cw-channel-rf-output-frequency): Private generic functions
(setf cw-channel-rf-output-frequency): Private generic functions
(setf cw-channel-rf-output-power): Private generic functions
(setf cw-channel-rf-output-power): Private generic functions
(setf cw-frequency-sweep-measure): Private generic functions
(setf cw-frequency-sweep-measure): Private generic functions
(setf cw-frequency-sweep-num-pts): Private generic functions
(setf cw-frequency-sweep-num-pts): Private generic functions
(setf cw-frequency-sweep-source): Private generic functions
(setf cw-frequency-sweep-source): Private generic functions
(setf cw-frequency-sweep-start): Private generic functions
(setf cw-frequency-sweep-start): Private generic functions
(setf cw-frequency-sweep-stop): Private generic functions
(setf cw-frequency-sweep-stop): Private generic functions
(setf cwchannel-channel_index): Private generic functions
(setf cwchannel-channel_index): Private generic functions
(setf cwchannel-rf_output_enabled): Private generic functions
(setf cwchannel-rf_output_enabled): Private generic functions
(setf cwchannel-rf_output_frequency): Private generic functions
(setf cwchannel-rf_output_frequency): Private generic functions
(setf cwchannel-rf_output_power): Private generic functions
(setf cwchannel-rf_output_power): Private generic functions
(setf cwfrequencysweep-measure): Private generic functions
(setf cwfrequencysweep-measure): Private generic functions
(setf cwfrequencysweep-num_pts): Private generic functions
(setf cwfrequencysweep-num_pts): Private generic functions
(setf cwfrequencysweep-source): Private generic functions
(setf cwfrequencysweep-source): Private generic functions
(setf cwfrequencysweep-start): Private generic functions
(setf cwfrequencysweep-start): Private generic functions
(setf cwfrequencysweep-stop): Private generic functions
(setf cwfrequencysweep-stop): Private generic functions
(setf data-axis-name): Private generic functions
(setf data-axis-name): Private generic functions
(setf data-axis-points): Private generic functions
(setf data-axis-points): Private generic functions
(setf dataaxis-name): Private generic functions
(setf dataaxis-name): Private generic functions
(setf dataaxis-points): Private generic functions
(setf dataaxis-points): Private generic functions
(setf debug-message-frame): Private generic functions
(setf debug-message-frame): Private generic functions
(setf debug-message-message): Private generic functions
(setf debug-message-message): Private generic functions
(setf debugmessage-frame): Private generic functions
(setf debugmessage-frame): Private generic functions
(setf debugmessage-message): Private generic functions
(setf debugmessage-message): Private generic functions
(setf deployed-rack-instruments): Private generic functions
(setf deployed-rack-instruments): Private generic functions
(setf deployed-rack-qpu): Private generic functions
(setf deployed-rack-qpu): Private generic functions
(setf deployed-rack-rack-meta): Private generic functions
(setf deployed-rack-rack-meta): Private generic functions
(setf deployedrack-instruments): Private generic functions
(setf deployedrack-instruments): Private generic functions
(setf deployedrack-qpu): Private generic functions
(setf deployedrack-qpu): Private generic functions
(setf deployedrack-rack_meta): Private generic functions
(setf deployedrack-rack_meta): Private generic functions
(setf drag-gaussian-waveform-alpha): Private generic functions
(setf drag-gaussian-waveform-alpha): Private generic functions
(setf drag-gaussian-waveform-anh): Private generic functions
(setf drag-gaussian-waveform-anh): Private generic functions
(setf drag-gaussian-waveform-fwhm): Private generic functions
(setf drag-gaussian-waveform-fwhm): Private generic functions
(setf drag-gaussian-waveform-t0): Private generic functions
(setf drag-gaussian-waveform-t0): Private generic functions
(setf draggaussianwaveform-alpha): Private generic functions
(setf draggaussianwaveform-alpha): Private generic functions
(setf draggaussianwaveform-anh): Private generic functions
(setf draggaussianwaveform-anh): Private generic functions
(setf draggaussianwaveform-fwhm): Private generic functions
(setf draggaussianwaveform-fwhm): Private generic functions
(setf draggaussianwaveform-t0): Private generic functions
(setf draggaussianwaveform-t0): Private generic functions
(setf erf-square-waveform-pad-left): Private generic functions
(setf erf-square-waveform-pad-left): Private generic functions
(setf erf-square-waveform-pad-right): Private generic functions
(setf erf-square-waveform-pad-right): Private generic functions
(setf erf-square-waveform-risetime): Private generic functions
(setf erf-square-waveform-risetime): Private generic functions
(setf erfsquarewaveform-pad_left): Private generic functions
(setf erfsquarewaveform-pad_left): Private generic functions
(setf erfsquarewaveform-pad_right): Private generic functions
(setf erfsquarewaveform-pad_right): Private generic functions
(setf erfsquarewaveform-risetime): Private generic functions
(setf erfsquarewaveform-risetime): Private generic functions
(setf executor-job-duration): Private generic functions
(setf executor-job-duration): Private generic functions
(setf executor-job-filter-pipeline): Private generic functions
(setf executor-job-filter-pipeline): Private generic functions
(setf executor-job-instrument-settings): Private generic functions
(setf executor-job-instrument-settings): Private generic functions
(setf executor-job-receivers): Private generic functions
(setf executor-job-receivers): Private generic functions
(setf executor-job-timebomb): Private generic functions
(setf executor-job-timebomb): Private generic functions
(setf executorjob-duration): Private generic functions
(setf executorjob-duration): Private generic functions
(setf executorjob-filter_pipeline): Private generic functions
(setf executorjob-filter_pipeline): Private generic functions
(setf executorjob-instrument_settings): Private generic functions
(setf executorjob-instrument_settings): Private generic functions
(setf executorjob-receivers): Private generic functions
(setf executorjob-receivers): Private generic functions
(setf executorjob-timebomb): Private generic functions
(setf executorjob-timebomb): Private generic functions
(setf filter-kernel-bias): Private generic functions
(setf filter-kernel-bias): Private generic functions
(setf filter-kernel-iqs): Private generic functions
(setf filter-kernel-iqs): Private generic functions
(setf filter-node-filter-type): Private generic functions
(setf filter-node-filter-type): Private generic functions
(setf filter-node-module): Private generic functions
(setf filter-node-module): Private generic functions
(setf filter-node-params): Private generic functions
(setf filter-node-params): Private generic functions
(setf filter-node-publish): Private generic functions
(setf filter-node-publish): Private generic functions
(setf filter-node-source): Private generic functions
(setf filter-node-source): Private generic functions
(setf filterkernel-bias): Private generic functions
(setf filterkernel-bias): Private generic functions
(setf filterkernel-iqs): Private generic functions
(setf filterkernel-iqs): Private generic functions
(setf filternode-filter_type): Private generic functions
(setf filternode-filter_type): Private generic functions
(setf filternode-module): Private generic functions
(setf filternode-module): Private generic functions
(setf filternode-params): Private generic functions
(setf filternode-params): Private generic functions
(setf filternode-publish): Private generic functions
(setf filternode-publish): Private generic functions
(setf filternode-source): Private generic functions
(setf filternode-source): Private generic functions
(setf flat-pulse-detuning): Private generic functions
(setf flat-pulse-detuning): Private generic functions
(setf flat-pulse-duration): Private generic functions
(setf flat-pulse-duration): Private generic functions
(setf flat-pulse-frame): Private generic functions
(setf flat-pulse-frame): Private generic functions
(setf flat-pulse-iq): Private generic functions
(setf flat-pulse-iq): Private generic functions
(setf flat-pulse-phase): Private generic functions
(setf flat-pulse-phase): Private generic functions
(setf flat-pulse-scale): Private generic functions
(setf flat-pulse-scale): Private generic functions
(setf flat-waveform-iq): Private generic functions
(setf flat-waveform-iq): Private generic functions
(setf flatpulse-detuning): Private generic functions
(setf flatpulse-detuning): Private generic functions
(setf flatpulse-duration): Private generic functions
(setf flatpulse-duration): Private generic functions
(setf flatpulse-frame): Private generic functions
(setf flatpulse-frame): Private generic functions
(setf flatpulse-iq): Private generic functions
(setf flatpulse-iq): Private generic functions
(setf flatpulse-phase): Private generic functions
(setf flatpulse-phase): Private generic functions
(setf flatpulse-scale): Private generic functions
(setf flatpulse-scale): Private generic functions
(setf flatwaveform-iq): Private generic functions
(setf flatwaveform-iq): Private generic functions
(setf frame-direction): Private generic functions
(setf frame-direction): Private generic functions
(setf frame-direction): Private generic functions
(setf frame-direction): Private generic functions
(setf frame-frequency): Private generic functions
(setf frame-frequency): Private generic functions
(setf frame-frequency): Private generic functions
(setf frame-frequency): Private generic functions
(setf frame-sample-rate): Private generic functions
(setf frame-sample-rate): Private generic functions
(setf frame-sample_rate): Private generic functions
(setf frame-sample_rate): Private generic functions
(setf gaussian-waveform-fwhm): Private generic functions
(setf gaussian-waveform-fwhm): Private generic functions
(setf gaussian-waveform-t0): Private generic functions
(setf gaussian-waveform-t0): Private generic functions
(setf gaussianwaveform-fwhm): Private generic functions
(setf gaussianwaveform-fwhm): Private generic functions
(setf gaussianwaveform-t0): Private generic functions
(setf gaussianwaveform-t0): Private generic functions
(setf get-execution-results-response-buffers): Private generic functions
(setf get-execution-results-response-buffers): Private generic functions
(setf get-execution-results-response-execution-duration-microseconds): Private generic functions
(setf get-execution-results-response-execution-duration-microseconds): Private generic functions
(setf getexecutionresultsresponse-buffers): Private generic functions
(setf getexecutionresultsresponse-buffers): Private generic functions
(setf getexecutionresultsresponse-execution_duration_microseconds): Private generic functions
(setf getexecutionresultsresponse-execution_duration_microseconds): Private generic functions
(setf hermite-gaussian-waveform-alpha): Private generic functions
(setf hermite-gaussian-waveform-alpha): Private generic functions
(setf hermite-gaussian-waveform-anh): Private generic functions
(setf hermite-gaussian-waveform-anh): Private generic functions
(setf hermite-gaussian-waveform-fwhm): Private generic functions
(setf hermite-gaussian-waveform-fwhm): Private generic functions
(setf hermite-gaussian-waveform-second-order-hrm-coeff): Private generic functions
(setf hermite-gaussian-waveform-second-order-hrm-coeff): Private generic functions
(setf hermite-gaussian-waveform-t0): Private generic functions
(setf hermite-gaussian-waveform-t0): Private generic functions
(setf hermitegaussianwaveform-alpha): Private generic functions
(setf hermitegaussianwaveform-alpha): Private generic functions
(setf hermitegaussianwaveform-anh): Private generic functions
(setf hermitegaussianwaveform-anh): Private generic functions
(setf hermitegaussianwaveform-fwhm): Private generic functions
(setf hermitegaussianwaveform-fwhm): Private generic functions
(setf hermitegaussianwaveform-second_order_hrm_coeff): Private generic functions
(setf hermitegaussianwaveform-second_order_hrm_coeff): Private generic functions
(setf hermitegaussianwaveform-t0): Private generic functions
(setf hermitegaussianwaveform-t0): Private generic functions
(setf instruction-time): Private generic functions
(setf instruction-time): Private generic functions
(setf instruction-time): Private generic functions
(setf instruction-time): Private generic functions
(setf instrument-address): Private generic functions
(setf instrument-address): Private generic functions
(setf instrument-address): Private generic functions
(setf instrument-address): Private generic functions
(setf instrument-channels): Private generic functions
(setf instrument-channels): Private generic functions
(setf instrument-channels): Private generic functions
(setf instrument-channels): Private generic functions
(setf instrument-instrument-type): Private generic functions
(setf instrument-instrument-type): Private generic functions
(setf instrument-instrument_type): Private generic functions
(setf instrument-instrument_type): Private generic functions
(setf instrument-mnio-connections): Private generic functions
(setf instrument-mnio-connections): Private generic functions
(setf instrument-mnio_connections): Private generic functions
(setf instrument-mnio_connections): Private generic functions
(setf instrument-module): Private generic functions
(setf instrument-module): Private generic functions
(setf instrument-module): Private generic functions
(setf instrument-module): Private generic functions
(setf instrument-setup): Private generic functions
(setf instrument-setup): Private generic functions
(setf instrument-setup): Private generic functions
(setf instrument-setup): Private generic functions
(setf instrument-virtual): Private generic functions
(setf instrument-virtual): Private generic functions
(setf instrument-virtual): Private generic functions
(setf instrument-virtual): Private generic functions
(setf legacy-usrp-sequencer-rx-channel): Private generic functions
(setf legacy-usrp-sequencer-rx-channel): Private generic functions
(setf legacy-usrp-sequencer-tx-channel): Private generic functions
(setf legacy-usrp-sequencer-tx-channel): Private generic functions
(setf legacyusrpsequencer-rx_channel): Private generic functions
(setf legacyusrpsequencer-rx_channel): Private generic functions
(setf legacyusrpsequencer-tx_channel): Private generic functions
(setf legacyusrpsequencer-tx_channel): Private generic functions
(setf microwave-source-settings-frequency): Private generic functions
(setf microwave-source-settings-frequency): Private generic functions
(setf microwave-source-settings-output): Private generic functions
(setf microwave-source-settings-output): Private generic functions
(setf microwave-source-settings-power): Private generic functions
(setf microwave-source-settings-power): Private generic functions
(setf microwavesourcesettings-frequency): Private generic functions
(setf microwavesourcesettings-frequency): Private generic functions
(setf microwavesourcesettings-output): Private generic functions
(setf microwavesourcesettings-output): Private generic functions
(setf microwavesourcesettings-power): Private generic functions
(setf microwavesourcesettings-power): Private generic functions
(setf mnio-connection-destination): Private generic functions
(setf mnio-connection-destination): Private generic functions
(setf mnio-connection-port): Private generic functions
(setf mnio-connection-port): Private generic functions
(setf mnioconnection-destination): Private generic functions
(setf mnioconnection-destination): Private generic functions
(setf mnioconnection-port): Private generic functions
(setf mnioconnection-port): Private generic functions
(setf native-quil-metadata-final-rewiring): Private generic functions
(setf native-quil-metadata-final-rewiring): Private generic functions
(setf native-quil-metadata-gate-depth): Private generic functions
(setf native-quil-metadata-gate-depth): Private generic functions
(setf native-quil-metadata-gate-volume): Private generic functions
(setf native-quil-metadata-gate-volume): Private generic functions
(setf native-quil-metadata-multiqubit-gate-depth): Private generic functions
(setf native-quil-metadata-multiqubit-gate-depth): Private generic functions
(setf native-quil-metadata-program-duration): Private generic functions
(setf native-quil-metadata-program-duration): Private generic functions
(setf native-quil-metadata-program-fidelity): Private generic functions
(setf native-quil-metadata-program-fidelity): Private generic functions
(setf native-quil-metadata-qpu-runtime-estimation): Private generic functions
(setf native-quil-metadata-qpu-runtime-estimation): Private generic functions
(setf native-quil-metadata-topological-swaps): Private generic functions
(setf native-quil-metadata-topological-swaps): Private generic functions
(setf native-quil-request-quil): Private generic functions
(setf native-quil-request-quil): Private generic functions
(setf native-quil-request-target-device): Private generic functions
(setf native-quil-request-target-device): Private generic functions
(setf native-quil-response-metadata): Private generic functions
(setf native-quil-response-metadata): Private generic functions
(setf native-quil-response-quil): Private generic functions
(setf native-quil-response-quil): Private generic functions
(setf nativequilmetadata-final_rewiring): Private generic functions
(setf nativequilmetadata-final_rewiring): Private generic functions
(setf nativequilmetadata-gate_depth): Private generic functions
(setf nativequilmetadata-gate_depth): Private generic functions
(setf nativequilmetadata-gate_volume): Private generic functions
(setf nativequilmetadata-gate_volume): Private generic functions
(setf nativequilmetadata-multiqubit_gate_depth): Private generic functions
(setf nativequilmetadata-multiqubit_gate_depth): Private generic functions
(setf nativequilmetadata-program_duration): Private generic functions
(setf nativequilmetadata-program_duration): Private generic functions
(setf nativequilmetadata-program_fidelity): Private generic functions
(setf nativequilmetadata-program_fidelity): Private generic functions
(setf nativequilmetadata-qpu_runtime_estimation): Private generic functions
(setf nativequilmetadata-qpu_runtime_estimation): Private generic functions
(setf nativequilmetadata-topological_swaps): Private generic functions
(setf nativequilmetadata-topological_swaps): Private generic functions
(setf nativequilrequest-quil): Private generic functions
(setf nativequilrequest-quil): Private generic functions
(setf nativequilrequest-target_device): Private generic functions
(setf nativequilrequest-target_device): Private generic functions
(setf nativequilresponse-metadata): Private generic functions
(setf nativequilresponse-metadata): Private generic functions
(setf nativequilresponse-quil): Private generic functions
(setf nativequilresponse-quil): Private generic functions
(setf parameter-aref-index): Private generic functions
(setf parameter-aref-index): Private generic functions
(setf parameter-aref-name): Private generic functions
(setf parameter-aref-name): Private generic functions
(setf parameter-expression-a): Private generic functions
(setf parameter-expression-a): Private generic functions
(setf parameter-expression-b): Private generic functions
(setf parameter-expression-b): Private generic functions
(setf parameter-expression-operator): Private generic functions
(setf parameter-expression-operator): Private generic functions
(setf parameter-spec-length): Private generic functions
(setf parameter-spec-length): Private generic functions
(setf parameter-spec-type): Private generic functions
(setf parameter-spec-type): Private generic functions
(setf parameteraref-index): Private generic functions
(setf parameteraref-index): Private generic functions
(setf parameteraref-name): Private generic functions
(setf parameteraref-name): Private generic functions
(setf parameterexpression-a): Private generic functions
(setf parameterexpression-a): Private generic functions
(setf parameterexpression-b): Private generic functions
(setf parameterexpression-b): Private generic functions
(setf parameterexpression-operator): Private generic functions
(setf parameterexpression-operator): Private generic functions
(setf parameterspec-length): Private generic functions
(setf parameterspec-length): Private generic functions
(setf parameterspec-type): Private generic functions
(setf parameterspec-type): Private generic functions
(setf patch-target-patch-offset): Private generic functions
(setf patch-target-patch-offset): Private generic functions
(setf patch-target-patch-type): Private generic functions
(setf patch-target-patch-type): Private generic functions
(setf patchable-binary-base-binary): Private generic functions
(setf patchable-binary-base-binary): Private generic functions
(setf patchable-binary-patch-table): Private generic functions
(setf patchable-binary-patch-table): Private generic functions
(setf patchablebinary-base_binary): Private generic functions
(setf patchablebinary-base_binary): Private generic functions
(setf patchablebinary-patch_table): Private generic functions
(setf patchablebinary-patch_table): Private generic functions
(setf patchtarget-patch_offset): Private generic functions
(setf patchtarget-patch_offset): Private generic functions
(setf patchtarget-patch_type): Private generic functions
(setf patchtarget-patch_type): Private generic functions
(setf pauli-term-indices): Private generic functions
(setf pauli-term-indices): Private generic functions
(setf pauli-term-symbols): Private generic functions
(setf pauli-term-symbols): Private generic functions
(setf pauliterm-indices): Private generic functions
(setf pauliterm-indices): Private generic functions
(setf pauliterm-symbols): Private generic functions
(setf pauliterm-symbols): Private generic functions
(setf program-filters): Private generic functions
(setf program-filters): Private generic functions
(setf program-filters): Private generic functions
(setf program-filters): Private generic functions
(setf program-parameters): Private generic functions
(setf program-parameters): Private generic functions
(setf program-parameters): Private generic functions
(setf program-parameters): Private generic functions
(setf program-scheduled-instructions): Private generic functions
(setf program-scheduled-instructions): Private generic functions
(setf program-scheduled_instructions): Private generic functions
(setf program-scheduled_instructions): Private generic functions
(setf program-waveforms): Private generic functions
(setf program-waveforms): Private generic functions
(setf program-waveforms): Private generic functions
(setf program-waveforms): Private generic functions
(setf pulse-detuning): Private generic functions
(setf pulse-detuning): Private generic functions
(setf pulse-detuning): Private generic functions
(setf pulse-detuning): Private generic functions
(setf pulse-frame): Private generic functions
(setf pulse-frame): Private generic functions
(setf pulse-frame): Private generic functions
(setf pulse-frame): Private generic functions
(setf pulse-phase): Private generic functions
(setf pulse-phase): Private generic functions
(setf pulse-phase): Private generic functions
(setf pulse-phase): Private generic functions
(setf pulse-scale): Private generic functions
(setf pulse-scale): Private generic functions
(setf pulse-scale): Private generic functions
(setf pulse-scale): Private generic functions
(setf pulse-waveform): Private generic functions
(setf pulse-waveform): Private generic functions
(setf pulse-waveform): Private generic functions
(setf pulse-waveform): Private generic functions
(setf py-quil-executable-response-attributes): Private generic functions
(setf py-quil-executable-response-attributes): Private generic functions
(setf py-quil-executable-response-program): Private generic functions
(setf py-quil-executable-response-program): Private generic functions
(setf pyquilexecutableresponse-attributes): Private generic functions
(setf pyquilexecutableresponse-attributes): Private generic functions
(setf pyquilexecutableresponse-program): Private generic functions
(setf pyquilexecutableresponse-program): Private generic functions
(setf qdo-fast-flux-channel-channel-index): Private generic functions
(setf qdo-fast-flux-channel-channel-index): Private generic functions
(setf qdo-fast-flux-channel-delay): Private generic functions
(setf qdo-fast-flux-channel-delay): Private generic functions
(setf qdo-fast-flux-channel-direction): Private generic functions
(setf qdo-fast-flux-channel-direction): Private generic functions
(setf qdo-fast-flux-channel-flux-current): Private generic functions
(setf qdo-fast-flux-channel-flux-current): Private generic functions
(setf qdo-sequencer-sequencer-index): Private generic functions
(setf qdo-sequencer-sequencer-index): Private generic functions
(setf qdo-sequencer-tx-channel): Private generic functions
(setf qdo-sequencer-tx-channel): Private generic functions
(setf qdo-slow-flux-channel-channel-index): Private generic functions
(setf qdo-slow-flux-channel-channel-index): Private generic functions
(setf qdo-slow-flux-channel-flux-current): Private generic functions
(setf qdo-slow-flux-channel-flux-current): Private generic functions
(setf qdo-slow-flux-channel-relay-closed): Private generic functions
(setf qdo-slow-flux-channel-relay-closed): Private generic functions
(setf qdofastfluxchannel-channel_index): Private generic functions
(setf qdofastfluxchannel-channel_index): Private generic functions
(setf qdofastfluxchannel-delay): Private generic functions
(setf qdofastfluxchannel-delay): Private generic functions
(setf qdofastfluxchannel-direction): Private generic functions
(setf qdofastfluxchannel-direction): Private generic functions
(setf qdofastfluxchannel-flux_current): Private generic functions
(setf qdofastfluxchannel-flux_current): Private generic functions
(setf qdosequencer-sequencer_index): Private generic functions
(setf qdosequencer-sequencer_index): Private generic functions
(setf qdosequencer-tx_channel): Private generic functions
(setf qdosequencer-tx_channel): Private generic functions
(setf qdoslowfluxchannel-channel_index): Private generic functions
(setf qdoslowfluxchannel-channel_index): Private generic functions
(setf qdoslowfluxchannel-flux_current): Private generic functions
(setf qdoslowfluxchannel-flux_current): Private generic functions
(setf qdoslowfluxchannel-relay_closed): Private generic functions
(setf qdoslowfluxchannel-relay_closed): Private generic functions
(setf qf-dx-2-sequencer-sequencer-index): Private generic functions
(setf qf-dx-2-sequencer-sequencer-index): Private generic functions
(setf qf-dx-2-sequencer-tx-channel): Private generic functions
(setf qf-dx-2-sequencer-tx-channel): Private generic functions
(setf qfd-channel-channel-index): Private generic functions
(setf qfd-channel-channel-index): Private generic functions
(setf qfd-channel-delay): Private generic functions
(setf qfd-channel-delay): Private generic functions
(setf qfd-channel-direction): Private generic functions
(setf qfd-channel-direction): Private generic functions
(setf qfd-channel-flux-current): Private generic functions
(setf qfd-channel-flux-current): Private generic functions
(setf qfd-channel-gain): Private generic functions
(setf qfd-channel-gain): Private generic functions
(setf qfd-channel-nco-frequency): Private generic functions
(setf qfd-channel-nco-frequency): Private generic functions
(setf qfd-channel-relay-closed): Private generic functions
(setf qfd-channel-relay-closed): Private generic functions
(setf qfd-sequencer-sequencer-index): Private generic functions
(setf qfd-sequencer-sequencer-index): Private generic functions
(setf qfd-sequencer-tx-channel): Private generic functions
(setf qfd-sequencer-tx-channel): Private generic functions
(setf qfdchannel-channel_index): Private generic functions
(setf qfdchannel-channel_index): Private generic functions
(setf qfdchannel-delay): Private generic functions
(setf qfdchannel-delay): Private generic functions
(setf qfdchannel-direction): Private generic functions
(setf qfdchannel-direction): Private generic functions
(setf qfdchannel-flux_current): Private generic functions
(setf qfdchannel-flux_current): Private generic functions
(setf qfdchannel-gain): Private generic functions
(setf qfdchannel-gain): Private generic functions
(setf qfdchannel-nco_frequency): Private generic functions
(setf qfdchannel-nco_frequency): Private generic functions
(setf qfdchannel-relay_closed): Private generic functions
(setf qfdchannel-relay_closed): Private generic functions
(setf qfdsequencer-sequencer_index): Private generic functions
(setf qfdsequencer-sequencer_index): Private generic functions
(setf qfdsequencer-tx_channel): Private generic functions
(setf qfdsequencer-tx_channel): Private generic functions
(setf qfdx2sequencer-sequencer_index): Private generic functions
(setf qfdx2sequencer-sequencer_index): Private generic functions
(setf qfdx2sequencer-tx_channel): Private generic functions
(setf qfdx2sequencer-tx_channel): Private generic functions
(setf qg-sx-2-sequencer-sequencer-index): Private generic functions
(setf qg-sx-2-sequencer-sequencer-index): Private generic functions
(setf qg-sx-2-sequencer-tx-channel): Private generic functions
(setf qg-sx-2-sequencer-tx-channel): Private generic functions
(setf qgs-channel-channel-index): Private generic functions
(setf qgs-channel-channel-index): Private generic functions
(setf qgs-channel-delay): Private generic functions
(setf qgs-channel-delay): Private generic functions
(setf qgs-channel-direction): Private generic functions
(setf qgs-channel-direction): Private generic functions
(setf qgs-channel-gain): Private generic functions
(setf qgs-channel-gain): Private generic functions
(setf qgs-channel-nco-frequency): Private generic functions
(setf qgs-channel-nco-frequency): Private generic functions
(setf qgs-sequencer-sequencer-index): Private generic functions
(setf qgs-sequencer-sequencer-index): Private generic functions
(setf qgs-sequencer-tx-channel): Private generic functions
(setf qgs-sequencer-tx-channel): Private generic functions
(setf qgschannel-channel_index): Private generic functions
(setf qgschannel-channel_index): Private generic functions
(setf qgschannel-delay): Private generic functions
(setf qgschannel-delay): Private generic functions
(setf qgschannel-direction): Private generic functions
(setf qgschannel-direction): Private generic functions
(setf qgschannel-gain): Private generic functions
(setf qgschannel-gain): Private generic functions
(setf qgschannel-nco_frequency): Private generic functions
(setf qgschannel-nco_frequency): Private generic functions
(setf qgssequencer-sequencer_index): Private generic functions
(setf qgssequencer-sequencer_index): Private generic functions
(setf qgssequencer-tx_channel): Private generic functions
(setf qgssequencer-tx_channel): Private generic functions
(setf qgsx2sequencer-sequencer_index): Private generic functions
(setf qgsx2sequencer-sequencer_index): Private generic functions
(setf qgsx2sequencer-tx_channel): Private generic functions
(setf qgsx2sequencer-tx_channel): Private generic functions
(setf qpu-chip-label): Private generic functions
(setf qpu-chip-label): Private generic functions
(setf qpu-chip_label): Private generic functions
(setf qpu-chip_label): Private generic functions
(setf qpu-controls): Private generic functions
(setf qpu-controls): Private generic functions
(setf qpu-controls): Private generic functions
(setf qpu-controls): Private generic functions
(setf qpu-controls-by-qubit): Private generic functions
(setf qpu-controls-by-qubit): Private generic functions
(setf qpu-controls_by_qubit): Private generic functions
(setf qpu-controls_by_qubit): Private generic functions
(setf qpu-qubits): Private generic functions
(setf qpu-qubits): Private generic functions
(setf qpu-qubits): Private generic functions
(setf qpu-qubits): Private generic functions
(setf qpu-request-id): Private generic functions
(setf qpu-request-id): Private generic functions
(setf qpu-request-patch-values): Private generic functions
(setf qpu-request-patch-values): Private generic functions
(setf qpu-request-program): Private generic functions
(setf qpu-request-program): Private generic functions
(setf qpurequest-id): Private generic functions
(setf qpurequest-id): Private generic functions
(setf qpurequest-patch_values): Private generic functions
(setf qpurequest-patch_values): Private generic functions
(setf qpurequest-program): Private generic functions
(setf qpurequest-program): Private generic functions
(setf qr-tx-2-sequencer-low-freq-range): Private generic functions
(setf qr-tx-2-sequencer-low-freq-range): Private generic functions
(setf qr-tx-2-sequencer-sequencer-index): Private generic functions
(setf qr-tx-2-sequencer-sequencer-index): Private generic functions
(setf qr-tx-2-sequencer-tx-channel): Private generic functions
(setf qr-tx-2-sequencer-tx-channel): Private generic functions
(setf qrr-channel-channel-index): Private generic functions
(setf qrr-channel-channel-index): Private generic functions
(setf qrr-channel-delay): Private generic functions
(setf qrr-channel-delay): Private generic functions
(setf qrr-channel-direction): Private generic functions
(setf qrr-channel-direction): Private generic functions
(setf qrr-channel-gain): Private generic functions
(setf qrr-channel-gain): Private generic functions
(setf qrr-channel-nco-frequency): Private generic functions
(setf qrr-channel-nco-frequency): Private generic functions
(setf qrr-sequencer-rx-channel): Private generic functions
(setf qrr-sequencer-rx-channel): Private generic functions
(setf qrr-sequencer-sequencer-index): Private generic functions
(setf qrr-sequencer-sequencer-index): Private generic functions
(setf qrrchannel-channel_index): Private generic functions
(setf qrrchannel-channel_index): Private generic functions
(setf qrrchannel-delay): Private generic functions
(setf qrrchannel-delay): Private generic functions
(setf qrrchannel-direction): Private generic functions
(setf qrrchannel-direction): Private generic functions
(setf qrrchannel-gain): Private generic functions
(setf qrrchannel-gain): Private generic functions
(setf qrrchannel-nco_frequency): Private generic functions
(setf qrrchannel-nco_frequency): Private generic functions
(setf qrrsequencer-rx_channel): Private generic functions
(setf qrrsequencer-rx_channel): Private generic functions
(setf qrrsequencer-sequencer_index): Private generic functions
(setf qrrsequencer-sequencer_index): Private generic functions
(setf qrt-channel-channel-index): Private generic functions
(setf qrt-channel-channel-index): Private generic functions
(setf qrt-channel-delay): Private generic functions
(setf qrt-channel-delay): Private generic functions
(setf qrt-channel-direction): Private generic functions
(setf qrt-channel-direction): Private generic functions
(setf qrt-channel-gain): Private generic functions
(setf qrt-channel-gain): Private generic functions
(setf qrt-channel-nco-frequency): Private generic functions
(setf qrt-channel-nco-frequency): Private generic functions
(setf qrt-sequencer-low-freq-range): Private generic functions
(setf qrt-sequencer-low-freq-range): Private generic functions
(setf qrt-sequencer-sequencer-index): Private generic functions
(setf qrt-sequencer-sequencer-index): Private generic functions
(setf qrt-sequencer-tx-channel): Private generic functions
(setf qrt-sequencer-tx-channel): Private generic functions
(setf qrtchannel-channel_index): Private generic functions
(setf qrtchannel-channel_index): Private generic functions
(setf qrtchannel-delay): Private generic functions
(setf qrtchannel-delay): Private generic functions
(setf qrtchannel-direction): Private generic functions
(setf qrtchannel-direction): Private generic functions
(setf qrtchannel-gain): Private generic functions
(setf qrtchannel-gain): Private generic functions
(setf qrtchannel-nco_frequency): Private generic functions
(setf qrtchannel-nco_frequency): Private generic functions
(setf qrtsequencer-low_freq_range): Private generic functions
(setf qrtsequencer-low_freq_range): Private generic functions
(setf qrtsequencer-sequencer_index): Private generic functions
(setf qrtsequencer-sequencer_index): Private generic functions
(setf qrtsequencer-tx_channel): Private generic functions
(setf qrtsequencer-tx_channel): Private generic functions
(setf qrtx2sequencer-low_freq_range): Private generic functions
(setf qrtx2sequencer-low_freq_range): Private generic functions
(setf qrtx2sequencer-sequencer_index): Private generic functions
(setf qrtx2sequencer-sequencer_index): Private generic functions
(setf qrtx2sequencer-tx_channel): Private generic functions
(setf qrtx2sequencer-tx_channel): Private generic functions
(setf quilt-binary-executable-request-num-shots): Private generic functions
(setf quilt-binary-executable-request-num-shots): Private generic functions
(setf quilt-binary-executable-request-quilt): Private generic functions
(setf quilt-binary-executable-request-quilt): Private generic functions
(setf quilt-binary-executable-response-debug): Private generic functions
(setf quilt-binary-executable-response-debug): Private generic functions
(setf quilt-binary-executable-response-memory-descriptors): Private generic functions
(setf quilt-binary-executable-response-memory-descriptors): Private generic functions
(setf quilt-binary-executable-response-program): Private generic functions
(setf quilt-binary-executable-response-program): Private generic functions
(setf quilt-binary-executable-response-ro-sources): Private generic functions
(setf quilt-binary-executable-response-ro-sources): Private generic functions
(setf quilt-calibrations-request-target-device): Private generic functions
(setf quilt-calibrations-request-target-device): Private generic functions
(setf quilt-calibrations-response-quilt): Private generic functions
(setf quilt-calibrations-response-quilt): Private generic functions
(setf quiltbinaryexecutablerequest-num_shots): Private generic functions
(setf quiltbinaryexecutablerequest-num_shots): Private generic functions
(setf quiltbinaryexecutablerequest-quilt): Private generic functions
(setf quiltbinaryexecutablerequest-quilt): Private generic functions
(setf quiltbinaryexecutableresponse-debug): Private generic functions
(setf quiltbinaryexecutableresponse-debug): Private generic functions
(setf quiltbinaryexecutableresponse-memory_descriptors): Private generic functions
(setf quiltbinaryexecutableresponse-memory_descriptors): Private generic functions
(setf quiltbinaryexecutableresponse-program): Private generic functions
(setf quiltbinaryexecutableresponse-program): Private generic functions
(setf quiltbinaryexecutableresponse-ro_sources): Private generic functions
(setf quiltbinaryexecutableresponse-ro_sources): Private generic functions
(setf quiltcalibrationsrequest-target_device): Private generic functions
(setf quiltcalibrationsrequest-target_device): Private generic functions
(setf quiltcalibrationsresponse-quilt): Private generic functions
(setf quiltcalibrationsresponse-quilt): Private generic functions
(setf rack-meta-rack-id): Private generic functions
(setf rack-meta-rack-id): Private generic functions
(setf rack-meta-rack-version): Private generic functions
(setf rack-meta-rack-version): Private generic functions
(setf rack-meta-schema-version): Private generic functions
(setf rack-meta-schema-version): Private generic functions
(setf rackmeta-rack_id): Private generic functions
(setf rackmeta-rack_id): Private generic functions
(setf rackmeta-rack_version): Private generic functions
(setf rackmeta-rack_version): Private generic functions
(setf rackmeta-schema_version): Private generic functions
(setf rackmeta-schema_version): Private generic functions
(setf randomized-benchmarking-request-depth): Private generic functions
(setf randomized-benchmarking-request-depth): Private generic functions
(setf randomized-benchmarking-request-gateset): Private generic functions
(setf randomized-benchmarking-request-gateset): Private generic functions
(setf randomized-benchmarking-request-interleaver): Private generic functions
(setf randomized-benchmarking-request-interleaver): Private generic functions
(setf randomized-benchmarking-request-qubits): Private generic functions
(setf randomized-benchmarking-request-qubits): Private generic functions
(setf randomized-benchmarking-request-seed): Private generic functions
(setf randomized-benchmarking-request-seed): Private generic functions
(setf randomized-benchmarking-response-sequence): Private generic functions
(setf randomized-benchmarking-response-sequence): Private generic functions
(setf randomizedbenchmarkingrequest-depth): Private generic functions
(setf randomizedbenchmarkingrequest-depth): Private generic functions
(setf randomizedbenchmarkingrequest-gateset): Private generic functions
(setf randomizedbenchmarkingrequest-gateset): Private generic functions
(setf randomizedbenchmarkingrequest-interleaver): Private generic functions
(setf randomizedbenchmarkingrequest-interleaver): Private generic functions
(setf randomizedbenchmarkingrequest-qubits): Private generic functions
(setf randomizedbenchmarkingrequest-qubits): Private generic functions
(setf randomizedbenchmarkingrequest-seed): Private generic functions
(setf randomizedbenchmarkingrequest-seed): Private generic functions
(setf randomizedbenchmarkingresponse-sequence): Private generic functions
(setf randomizedbenchmarkingresponse-sequence): Private generic functions
(setf receiver-channel): Private generic functions
(setf receiver-channel): Private generic functions
(setf receiver-channel): Private generic functions
(setf receiver-channel): Private generic functions
(setf receiver-data-axes): Private generic functions
(setf receiver-data-axes): Private generic functions
(setf receiver-data_axes): Private generic functions
(setf receiver-data_axes): Private generic functions
(setf receiver-instrument): Private generic functions
(setf receiver-instrument): Private generic functions
(setf receiver-instrument): Private generic functions
(setf receiver-instrument): Private generic functions
(setf receiver-publish): Private generic functions
(setf receiver-publish): Private generic functions
(setf receiver-publish): Private generic functions
(setf receiver-publish): Private generic functions
(setf receiver-stream): Private generic functions
(setf receiver-stream): Private generic functions
(setf receiver-stream): Private generic functions
(setf receiver-stream): Private generic functions
(setf resources-frames): Private generic functions
(setf resources-frames): Private generic functions
(setf resources-frames): Private generic functions
(setf resources-frames): Private generic functions
(setf resources-frames-to-controls): Private generic functions
(setf resources-frames-to-controls): Private generic functions
(setf resources-frames_to_controls): Private generic functions
(setf resources-frames_to_controls): Private generic functions
(setf resources-qubits): Private generic functions
(setf resources-qubits): Private generic functions
(setf resources-qubits): Private generic functions
(setf resources-qubits): Private generic functions
(setf rewrite-arithmetic-request-quil): Private generic functions
(setf rewrite-arithmetic-request-quil): Private generic functions
(setf rewrite-arithmetic-response-original-memory-descriptors): Private generic functions
(setf rewrite-arithmetic-response-original-memory-descriptors): Private generic functions
(setf rewrite-arithmetic-response-quil): Private generic functions
(setf rewrite-arithmetic-response-quil): Private generic functions
(setf rewrite-arithmetic-response-recalculation-table): Private generic functions
(setf rewrite-arithmetic-response-recalculation-table): Private generic functions
(setf rewritearithmeticrequest-quil): Private generic functions
(setf rewritearithmeticrequest-quil): Private generic functions
(setf rewritearithmeticresponse-original_memory_descriptors): Private generic functions
(setf rewritearithmeticresponse-original_memory_descriptors): Private generic functions
(setf rewritearithmeticresponse-quil): Private generic functions
(setf rewritearithmeticresponse-quil): Private generic functions
(setf rewritearithmeticresponse-recalculation_table): Private generic functions
(setf rewritearithmeticresponse-recalculation_table): Private generic functions
(setf rpc-client-socket): Private ordinary functions
(setf rpc-client-timeout): Private ordinary functions
(setf rpc-error-error): Private generic functions
(setf rpc-error-error): Private generic functions
(setf rpc-error-id): Private generic functions
(setf rpc-error-id): Private generic functions
(setf rpc-error-jsonrpc): Private generic functions
(setf rpc-error-jsonrpc): Private generic functions
(setf rpc-error-warnings): Private generic functions
(setf rpc-error-warnings): Private generic functions
(setf rpc-reply-id): Private generic functions
(setf rpc-reply-id): Private generic functions
(setf rpc-reply-jsonrpc): Private generic functions
(setf rpc-reply-jsonrpc): Private generic functions
(setf rpc-reply-result): Private generic functions
(setf rpc-reply-result): Private generic functions
(setf rpc-reply-warnings): Private generic functions
(setf rpc-reply-warnings): Private generic functions
(setf rpc-request-client-key): Private generic functions
(setf rpc-request-client-key): Private generic functions
(setf rpc-request-client-timeout): Private generic functions
(setf rpc-request-client-timeout): Private generic functions
(setf rpc-request-id): Private generic functions
(setf rpc-request-id): Private generic functions
(setf rpc-request-jsonrpc): Private generic functions
(setf rpc-request-jsonrpc): Private generic functions
(setf rpc-request-method): Private generic functions
(setf rpc-request-method): Private generic functions
(setf rpc-request-params): Private generic functions
(setf rpc-request-params): Private generic functions
(setf rpc-warning-body): Private generic functions
(setf rpc-warning-body): Private generic functions
(setf rpc-warning-kind): Private generic functions
(setf rpc-warning-kind): Private generic functions
(setf rpcerror-error): Private generic functions
(setf rpcerror-error): Private generic functions
(setf rpcerror-id): Private generic functions
(setf rpcerror-id): Private generic functions
(setf rpcerror-jsonrpc): Private generic functions
(setf rpcerror-jsonrpc): Private generic functions
(setf rpcerror-warnings): Private generic functions
(setf rpcerror-warnings): Private generic functions
(setf rpcreply-id): Private generic functions
(setf rpcreply-id): Private generic functions
(setf rpcreply-jsonrpc): Private generic functions
(setf rpcreply-jsonrpc): Private generic functions
(setf rpcreply-result): Private generic functions
(setf rpcreply-result): Private generic functions
(setf rpcreply-warnings): Private generic functions
(setf rpcreply-warnings): Private generic functions
(setf rpcrequest-client_key): Private generic functions
(setf rpcrequest-client_key): Private generic functions
(setf rpcrequest-client_timeout): Private generic functions
(setf rpcrequest-client_timeout): Private generic functions
(setf rpcrequest-id): Private generic functions
(setf rpcrequest-id): Private generic functions
(setf rpcrequest-jsonrpc): Private generic functions
(setf rpcrequest-jsonrpc): Private generic functions
(setf rpcrequest-method): Private generic functions
(setf rpcrequest-method): Private generic functions
(setf rpcrequest-params): Private generic functions
(setf rpcrequest-params): Private generic functions
(setf rpcwarning-body): Private generic functions
(setf rpcwarning-body): Private generic functions
(setf rpcwarning-kind): Private generic functions
(setf rpcwarning-kind): Private generic functions
(setf schedule-ir-job-filter-pipeline): Private generic functions
(setf schedule-ir-job-filter-pipeline): Private generic functions
(setf schedule-ir-job-job-id): Private generic functions
(setf schedule-ir-job-job-id): Private generic functions
(setf schedule-ir-job-num-shots): Private generic functions
(setf schedule-ir-job-num-shots): Private generic functions
(setf schedule-ir-job-operating-point): Private generic functions
(setf schedule-ir-job-operating-point): Private generic functions
(setf schedule-ir-job-program): Private generic functions
(setf schedule-ir-job-program): Private generic functions
(setf schedule-ir-job-resources): Private generic functions
(setf schedule-ir-job-resources): Private generic functions
(setf scheduleirjob-filter_pipeline): Private generic functions
(setf scheduleirjob-filter_pipeline): Private generic functions
(setf scheduleirjob-job_id): Private generic functions
(setf scheduleirjob-job_id): Private generic functions
(setf scheduleirjob-num_shots): Private generic functions
(setf scheduleirjob-num_shots): Private generic functions
(setf scheduleirjob-operating_point): Private generic functions
(setf scheduleirjob-operating_point): Private generic functions
(setf scheduleirjob-program): Private generic functions
(setf scheduleirjob-program): Private generic functions
(setf scheduleirjob-resources): Private generic functions
(setf scheduleirjob-resources): Private generic functions
(setf set-frequency-frame): Private generic functions
(setf set-frequency-frame): Private generic functions
(setf set-frequency-frequency): Private generic functions
(setf set-frequency-frequency): Private generic functions
(setf set-phase-frame): Private generic functions
(setf set-phase-frame): Private generic functions
(setf set-phase-phase): Private generic functions
(setf set-phase-phase): Private generic functions
(setf set-scale-frame): Private generic functions
(setf set-scale-frame): Private generic functions
(setf set-scale-scale): Private generic functions
(setf set-scale-scale): Private generic functions
(setf setfrequency-frame): Private generic functions
(setf setfrequency-frame): Private generic functions
(setf setfrequency-frequency): Private generic functions
(setf setfrequency-frequency): Private generic functions
(setf setphase-frame): Private generic functions
(setf setphase-frame): Private generic functions
(setf setphase-phase): Private generic functions
(setf setphase-phase): Private generic functions
(setf setscale-frame): Private generic functions
(setf setscale-frame): Private generic functions
(setf setscale-scale): Private generic functions
(setf setscale-scale): Private generic functions
(setf shift-frequency-delta): Private generic functions
(setf shift-frequency-delta): Private generic functions
(setf shift-frequency-frame): Private generic functions
(setf shift-frequency-frame): Private generic functions
(setf shift-phase-delta): Private generic functions
(setf shift-phase-delta): Private generic functions
(setf shift-phase-frame): Private generic functions
(setf shift-phase-frame): Private generic functions
(setf shiftfrequency-delta): Private generic functions
(setf shiftfrequency-delta): Private generic functions
(setf shiftfrequency-frame): Private generic functions
(setf shiftfrequency-frame): Private generic functions
(setf shiftphase-delta): Private generic functions
(setf shiftphase-delta): Private generic functions
(setf shiftphase-frame): Private generic functions
(setf shiftphase-frame): Private generic functions
(setf swap-phases-frame-a): Private generic functions
(setf swap-phases-frame-a): Private generic functions
(setf swap-phases-frame-b): Private generic functions
(setf swap-phases-frame-b): Private generic functions
(setf swapphases-frame_a): Private generic functions
(setf swapphases-frame_a): Private generic functions
(setf swapphases-frame_b): Private generic functions
(setf swapphases-frame_b): Private generic functions
(setf target-device-isa): Private generic functions
(setf target-device-isa): Private generic functions
(setf target-device-specs): Private generic functions
(setf target-device-specs): Private generic functions
(setf targetdevice-isa): Private generic functions
(setf targetdevice-isa): Private generic functions
(setf targetdevice-specs): Private generic functions
(setf targetdevice-specs): Private generic functions
(setf template-kernel-bias): Private generic functions
(setf template-kernel-bias): Private generic functions
(setf template-kernel-detuning): Private generic functions
(setf template-kernel-detuning): Private generic functions
(setf template-kernel-duration): Private generic functions
(setf template-kernel-duration): Private generic functions
(setf template-kernel-phase): Private generic functions
(setf template-kernel-phase): Private generic functions
(setf template-kernel-scale): Private generic functions
(setf template-kernel-scale): Private generic functions
(setf template-waveform-detuning): Private generic functions
(setf template-waveform-detuning): Private generic functions
(setf template-waveform-duration): Private generic functions
(setf template-waveform-duration): Private generic functions
(setf template-waveform-phase): Private generic functions
(setf template-waveform-phase): Private generic functions
(setf template-waveform-scale): Private generic functions
(setf template-waveform-scale): Private generic functions
(setf templatekernel-bias): Private generic functions
(setf templatekernel-bias): Private generic functions
(setf templatekernel-detuning): Private generic functions
(setf templatekernel-detuning): Private generic functions
(setf templatekernel-duration): Private generic functions
(setf templatekernel-duration): Private generic functions
(setf templatekernel-phase): Private generic functions
(setf templatekernel-phase): Private generic functions
(setf templatekernel-scale): Private generic functions
(setf templatekernel-scale): Private generic functions
(setf templatewaveform-detuning): Private generic functions
(setf templatewaveform-detuning): Private generic functions
(setf templatewaveform-duration): Private generic functions
(setf templatewaveform-duration): Private generic functions
(setf templatewaveform-phase): Private generic functions
(setf templatewaveform-phase): Private generic functions
(setf templatewaveform-scale): Private generic functions
(setf templatewaveform-scale): Private generic functions
(setf time-bomb-chip-label): Private generic functions
(setf time-bomb-chip-label): Private generic functions
(setf time-bomb-deadline): Private generic functions
(setf time-bomb-deadline): Private generic functions
(setf timebomb-chip_label): Private generic functions
(setf timebomb-chip_label): Private generic functions
(setf timebomb-deadline): Private generic functions
(setf timebomb-deadline): Private generic functions
(setf usi-card-sequencer-tx-channel): Private generic functions
(setf usi-card-sequencer-tx-channel): Private generic functions
(setf usi-target-sequencer-rx-channel): Private generic functions
(setf usi-target-sequencer-rx-channel): Private generic functions
(setf usi-target-sequencer-sequencer-index): Private generic functions
(setf usi-target-sequencer-sequencer-index): Private generic functions
(setf usi-target-sequencer-tx-channel): Private generic functions
(setf usi-target-sequencer-tx-channel): Private generic functions
(setf usicardsequencer-tx_channel): Private generic functions
(setf usicardsequencer-tx_channel): Private generic functions
(setf usitargetsequencer-rx_channel): Private generic functions
(setf usitargetsequencer-rx_channel): Private generic functions
(setf usitargetsequencer-sequencer_index): Private generic functions
(setf usitargetsequencer-sequencer_index): Private generic functions
(setf usitargetsequencer-tx_channel): Private generic functions
(setf usitargetsequencer-tx_channel): Private generic functions
(setf vna-settings-averaging): Private generic functions
(setf vna-settings-averaging): Private generic functions
(setf vna-settings-bandwidth): Private generic functions
(setf vna-settings-bandwidth): Private generic functions
(setf vna-settings-e-delay): Private generic functions
(setf vna-settings-e-delay): Private generic functions
(setf vna-settings-freq-sweep): Private generic functions
(setf vna-settings-freq-sweep): Private generic functions
(setf vna-settings-phase-offset): Private generic functions
(setf vna-settings-phase-offset): Private generic functions
(setf vna-settings-power): Private generic functions
(setf vna-settings-power): Private generic functions
(setf vnasettings-averaging): Private generic functions
(setf vnasettings-averaging): Private generic functions
(setf vnasettings-bandwidth): Private generic functions
(setf vnasettings-bandwidth): Private generic functions
(setf vnasettings-e_delay): Private generic functions
(setf vnasettings-e_delay): Private generic functions
(setf vnasettings-freq_sweep): Private generic functions
(setf vnasettings-freq_sweep): Private generic functions
(setf vnasettings-phase_offset): Private generic functions
(setf vnasettings-phase_offset): Private generic functions
(setf vnasettings-power): Private generic functions
(setf vnasettings-power): Private generic functions
(setf waveform-iqs): Private generic functions
(setf waveform-iqs): Private generic functions
(setf waveform-iqs): Private generic functions
(setf waveform-iqs): Private generic functions

A
abstract-kernel-frame: Private generic functions
abstract-kernel-frame: Private generic functions
abstract-waveform-frame: Private generic functions
abstract-waveform-frame: Private generic functions
abstractkernel-frame: Private generic functions
abstractkernel-frame: Private generic functions
abstractwaveform-frame: Private generic functions
abstractwaveform-frame: Private generic functions
active-reset-apply-feedback-when: Private generic functions
active-reset-apply-feedback-when: Private generic functions
active-reset-attempts: Private generic functions
active-reset-attempts: Private generic functions
active-reset-feedback-duration: Private generic functions
active-reset-feedback-duration: Private generic functions
active-reset-feedback-instructions: Private generic functions
active-reset-feedback-instructions: Private generic functions
active-reset-measurement-bit: Private generic functions
active-reset-measurement-bit: Private generic functions
active-reset-measurement-duration: Private generic functions
active-reset-measurement-duration: Private generic functions
active-reset-measurement-instructions: Private generic functions
active-reset-measurement-instructions: Private generic functions
active-reset-time: Private generic functions
active-reset-time: Private generic functions
activereset-apply_feedback_when: Private generic functions
activereset-apply_feedback_when: Private generic functions
activereset-attempts: Private generic functions
activereset-attempts: Private generic functions
activereset-feedback_duration: Private generic functions
activereset-feedback_duration: Private generic functions
activereset-feedback_instructions: Private generic functions
activereset-feedback_instructions: Private generic functions
activereset-measurement_bit: Private generic functions
activereset-measurement_bit: Private generic functions
activereset-measurement_duration: Private generic functions
activereset-measurement_duration: Private generic functions
activereset-measurement_instructions: Private generic functions
activereset-measurement_instructions: Private generic functions
activereset-time: Private generic functions
activereset-time: Private generic functions
awg-channel-delay: Private generic functions
awg-channel-delay: Private generic functions
awg-channel-direction: Private generic functions
awg-channel-direction: Private generic functions
awg-channel-gain: Private generic functions
awg-channel-gain: Private generic functions
awg-channel-lo-frequency: Private generic functions
awg-channel-lo-frequency: Private generic functions
awg-channel-sample-rate: Private generic functions
awg-channel-sample-rate: Private generic functions
awgchannel-delay: Private generic functions
awgchannel-delay: Private generic functions
awgchannel-direction: Private generic functions
awgchannel-direction: Private generic functions
awgchannel-gain: Private generic functions
awgchannel-gain: Private generic functions
awgchannel-lo_frequency: Private generic functions
awgchannel-lo_frequency: Private generic functions
awgchannel-sample_rate: Private generic functions
awgchannel-sample_rate: Private generic functions

B
binary-executable-request-num-shots: Private generic functions
binary-executable-request-num-shots: Private generic functions
binary-executable-request-quil: Private generic functions
binary-executable-request-quil: Private generic functions
binary-executable-response-memory-descriptors: Private generic functions
binary-executable-response-memory-descriptors: Private generic functions
binary-executable-response-program: Private generic functions
binary-executable-response-program: Private generic functions
binary-executable-response-ro-sources: Private generic functions
binary-executable-response-ro-sources: Private generic functions
binaryexecutablerequest-num_shots: Private generic functions
binaryexecutablerequest-num_shots: Private generic functions
binaryexecutablerequest-quil: Private generic functions
binaryexecutablerequest-quil: Private generic functions
binaryexecutableresponse-memory_descriptors: Private generic functions
binaryexecutableresponse-memory_descriptors: Private generic functions
binaryexecutableresponse-program: Private generic functions
binaryexecutableresponse-program: Private generic functions
binaryexecutableresponse-ro_sources: Private generic functions
binaryexecutableresponse-ro_sources: Private generic functions

C
camel-to-kebab: Private ordinary functions
capture-detuning: Private generic functions
capture-detuning: Private generic functions
capture-detuning: Private generic functions
capture-detuning: Private generic functions
capture-duration: Private generic functions
capture-duration: Private generic functions
capture-duration: Private generic functions
capture-duration: Private generic functions
capture-filters: Private generic functions
capture-filters: Private generic functions
capture-filters: Private generic functions
capture-filters: Private generic functions
capture-frame: Private generic functions
capture-frame: Private generic functions
capture-frame: Private generic functions
capture-frame: Private generic functions
capture-phase: Private generic functions
capture-phase: Private generic functions
capture-phase: Private generic functions
capture-phase: Private generic functions
capture-send-to-host: Private generic functions
capture-send-to-host: Private generic functions
capture-send_to_host: Private generic functions
capture-send_to_host: Private generic functions
clear-messages: Public ordinary functions
client-auth-config-client-public-key: Public ordinary functions
client-auth-config-client-secret-key: Public ordinary functions
client-auth-config-p: Private ordinary functions
client-auth-config-server-public-key: Public ordinary functions
conjugate-by-clifford-request-clifford: Private generic functions
conjugate-by-clifford-request-clifford: Private generic functions
conjugate-by-clifford-request-pauli: Private generic functions
conjugate-by-clifford-request-pauli: Private generic functions
conjugate-by-clifford-response-pauli: Private generic functions
conjugate-by-clifford-response-pauli: Private generic functions
conjugate-by-clifford-response-phase: Private generic functions
conjugate-by-clifford-response-phase: Private generic functions
conjugatebycliffordrequest-clifford: Private generic functions
conjugatebycliffordrequest-clifford: Private generic functions
conjugatebycliffordrequest-pauli: Private generic functions
conjugatebycliffordrequest-pauli: Private generic functions
conjugatebycliffordresponse-pauli: Private generic functions
conjugatebycliffordresponse-pauli: Private generic functions
conjugatebycliffordresponse-phase: Private generic functions
conjugatebycliffordresponse-phase: Private generic functions
copy-client-auth-config: Private ordinary functions
copy-rpc-client: Private ordinary functions
copy-server-auth-config: Private ordinary functions
current-namespace: Private ordinary functions
cw-channel-channel-index: Private generic functions
cw-channel-channel-index: Private generic functions
cw-channel-rf-output-enabled: Private generic functions
cw-channel-rf-output-enabled: Private generic functions
cw-channel-rf-output-frequency: Private generic functions
cw-channel-rf-output-frequency: Private generic functions
cw-channel-rf-output-power: Private generic functions
cw-channel-rf-output-power: Private generic functions
cw-frequency-sweep-measure: Private generic functions
cw-frequency-sweep-measure: Private generic functions
cw-frequency-sweep-num-pts: Private generic functions
cw-frequency-sweep-num-pts: Private generic functions
cw-frequency-sweep-source: Private generic functions
cw-frequency-sweep-source: Private generic functions
cw-frequency-sweep-start: Private generic functions
cw-frequency-sweep-start: Private generic functions
cw-frequency-sweep-stop: Private generic functions
cw-frequency-sweep-stop: Private generic functions
cwchannel-channel_index: Private generic functions
cwchannel-channel_index: Private generic functions
cwchannel-rf_output_enabled: Private generic functions
cwchannel-rf_output_enabled: Private generic functions
cwchannel-rf_output_frequency: Private generic functions
cwchannel-rf_output_frequency: Private generic functions
cwchannel-rf_output_power: Private generic functions
cwchannel-rf_output_power: Private generic functions
cwfrequencysweep-measure: Private generic functions
cwfrequencysweep-measure: Private generic functions
cwfrequencysweep-num_pts: Private generic functions
cwfrequencysweep-num_pts: Private generic functions
cwfrequencysweep-source: Private generic functions
cwfrequencysweep-source: Private generic functions
cwfrequencysweep-start: Private generic functions
cwfrequencysweep-start: Private generic functions
cwfrequencysweep-stop: Private generic functions
cwfrequencysweep-stop: Private generic functions

D
data-axis-name: Private generic functions
data-axis-name: Private generic functions
data-axis-points: Private generic functions
data-axis-points: Private generic functions
dataaxis-name: Private generic functions
dataaxis-name: Private generic functions
dataaxis-points: Private generic functions
dataaxis-points: Private generic functions
debug-message-frame: Private generic functions
debug-message-frame: Private generic functions
debug-message-message: Private generic functions
debug-message-message: Private generic functions
debugmessage-frame: Private generic functions
debugmessage-frame: Private generic functions
debugmessage-message: Private generic functions
debugmessage-message: Private generic functions
defmessage: Public macros
deployed-rack-instruments: Private generic functions
deployed-rack-instruments: Private generic functions
deployed-rack-qpu: Private generic functions
deployed-rack-qpu: Private generic functions
deployed-rack-rack-meta: Private generic functions
deployed-rack-rack-meta: Private generic functions
deployedrack-instruments: Private generic functions
deployedrack-instruments: Private generic functions
deployedrack-qpu: Private generic functions
deployedrack-qpu: Private generic functions
deployedrack-rack_meta: Private generic functions
deployedrack-rack_meta: Private generic functions
deserialize: Public ordinary functions
dispatch-table-add-handler: Public ordinary functions
drag-gaussian-waveform-alpha: Private generic functions
drag-gaussian-waveform-alpha: Private generic functions
drag-gaussian-waveform-anh: Private generic functions
drag-gaussian-waveform-anh: Private generic functions
drag-gaussian-waveform-fwhm: Private generic functions
drag-gaussian-waveform-fwhm: Private generic functions
drag-gaussian-waveform-t0: Private generic functions
drag-gaussian-waveform-t0: Private generic functions
draggaussianwaveform-alpha: Private generic functions
draggaussianwaveform-alpha: Private generic functions
draggaussianwaveform-anh: Private generic functions
draggaussianwaveform-anh: Private generic functions
draggaussianwaveform-fwhm: Private generic functions
draggaussianwaveform-fwhm: Private generic functions
draggaussianwaveform-t0: Private generic functions
draggaussianwaveform-t0: Private generic functions

E
erf-square-waveform-pad-left: Private generic functions
erf-square-waveform-pad-left: Private generic functions
erf-square-waveform-pad-right: Private generic functions
erf-square-waveform-pad-right: Private generic functions
erf-square-waveform-risetime: Private generic functions
erf-square-waveform-risetime: Private generic functions
erfsquarewaveform-pad_left: Private generic functions
erfsquarewaveform-pad_left: Private generic functions
erfsquarewaveform-pad_right: Private generic functions
erfsquarewaveform-pad_right: Private generic functions
erfsquarewaveform-risetime: Private generic functions
erfsquarewaveform-risetime: Private generic functions
executor-job-duration: Private generic functions
executor-job-duration: Private generic functions
executor-job-filter-pipeline: Private generic functions
executor-job-filter-pipeline: Private generic functions
executor-job-instrument-settings: Private generic functions
executor-job-instrument-settings: Private generic functions
executor-job-receivers: Private generic functions
executor-job-receivers: Private generic functions
executor-job-timebomb: Private generic functions
executor-job-timebomb: Private generic functions
executorjob-duration: Private generic functions
executorjob-duration: Private generic functions
executorjob-filter_pipeline: Private generic functions
executorjob-filter_pipeline: Private generic functions
executorjob-instrument_settings: Private generic functions
executorjob-instrument_settings: Private generic functions
executorjob-receivers: Private generic functions
executorjob-receivers: Private generic functions
executorjob-timebomb: Private generic functions
executorjob-timebomb: Private generic functions

F
filter-kernel-bias: Private generic functions
filter-kernel-bias: Private generic functions
filter-kernel-iqs: Private generic functions
filter-kernel-iqs: Private generic functions
filter-node-filter-type: Private generic functions
filter-node-filter-type: Private generic functions
filter-node-module: Private generic functions
filter-node-module: Private generic functions
filter-node-params: Private generic functions
filter-node-params: Private generic functions
filter-node-publish: Private generic functions
filter-node-publish: Private generic functions
filter-node-source: Private generic functions
filter-node-source: Private generic functions
filterkernel-bias: Private generic functions
filterkernel-bias: Private generic functions
filterkernel-iqs: Private generic functions
filterkernel-iqs: Private generic functions
filternode-filter_type: Private generic functions
filternode-filter_type: Private generic functions
filternode-module: Private generic functions
filternode-module: Private generic functions
filternode-params: Private generic functions
filternode-params: Private generic functions
filternode-publish: Private generic functions
filternode-publish: Private generic functions
filternode-source: Private generic functions
filternode-source: Private generic functions
flat-pulse-detuning: Private generic functions
flat-pulse-detuning: Private generic functions
flat-pulse-duration: Private generic functions
flat-pulse-duration: Private generic functions
flat-pulse-frame: Private generic functions
flat-pulse-frame: Private generic functions
flat-pulse-iq: Private generic functions
flat-pulse-iq: Private generic functions
flat-pulse-phase: Private generic functions
flat-pulse-phase: Private generic functions
flat-pulse-scale: Private generic functions
flat-pulse-scale: Private generic functions
flat-waveform-iq: Private generic functions
flat-waveform-iq: Private generic functions
flatpulse-detuning: Private generic functions
flatpulse-detuning: Private generic functions
flatpulse-duration: Private generic functions
flatpulse-duration: Private generic functions
flatpulse-frame: Private generic functions
flatpulse-frame: Private generic functions
flatpulse-iq: Private generic functions
flatpulse-iq: Private generic functions
flatpulse-phase: Private generic functions
flatpulse-phase: Private generic functions
flatpulse-scale: Private generic functions
flatpulse-scale: Private generic functions
flatwaveform-iq: Private generic functions
flatwaveform-iq: Private generic functions
format-documentation-string: Private ordinary functions
format-log: Private ordinary functions
frame-direction: Private generic functions
frame-direction: Private generic functions
frame-direction: Private generic functions
frame-direction: Private generic functions
frame-frequency: Private generic functions
frame-frequency: Private generic functions
frame-frequency: Private generic functions
frame-frequency: Private generic functions
frame-sample-rate: Private generic functions
frame-sample-rate: Private generic functions
frame-sample_rate: Private generic functions
frame-sample_rate: Private generic functions
from-json: Public ordinary functions
Function, %plist-to-string-hash-table: Private ordinary functions
Function, %process-raw-request: Private ordinary functions
Function, %process-request: Private ordinary functions
Function, %pull-raw-request: Private ordinary functions
Function, %push-raw-request: Private ordinary functions
Function, %rpc-call-raw-request: Private ordinary functions
Function, %rpc-server-thread-worker: Private ordinary functions
Function, (setf rpc-client-socket): Private ordinary functions
Function, (setf rpc-client-timeout): Private ordinary functions
Function, camel-to-kebab: Private ordinary functions
Function, clear-messages: Public ordinary functions
Function, client-auth-config-client-public-key: Public ordinary functions
Function, client-auth-config-client-secret-key: Public ordinary functions
Function, client-auth-config-p: Private ordinary functions
Function, client-auth-config-server-public-key: Public ordinary functions
Function, copy-client-auth-config: Private ordinary functions
Function, copy-rpc-client: Private ordinary functions
Function, copy-server-auth-config: Private ordinary functions
Function, current-namespace: Private ordinary functions
Function, deserialize: Public ordinary functions
Function, dispatch-table-add-handler: Public ordinary functions
Function, format-documentation-string: Private ordinary functions
Function, format-log: Private ordinary functions
Function, from-json: Public ordinary functions
Function, global-function-p: Private ordinary functions
Function, log-completion-message: Private ordinary functions
Function, make-client-auth-config: Public ordinary functions
Function, make-dispatch-table: Public ordinary functions
Function, make-rpc-client: Private ordinary functions
Function, make-server-auth-config: Public ordinary functions
Function, map-plist: Private ordinary functions
Function, prepare-rpc-call-args: Private ordinary functions
Function, python-argspec-default: Private ordinary functions
Function, python-collections-initform: Private ordinary functions
Function, python-instance-check-type: Private ordinary functions
Function, python-maybe-optional-typing-type: Private ordinary functions
Function, python-message-spec: Public ordinary functions
Function, python-type: Private ordinary functions
Function, python-typing-type: Private ordinary functions
Function, register-message: Private ordinary functions
Function, rpc-call: Public ordinary functions
Function, rpc-client-p: Private ordinary functions
Function, rpc-client-socket: Private ordinary functions
Function, rpc-client-timeout: Private ordinary functions
Function, sanitize-name: Private ordinary functions
Function, serialize: Public ordinary functions
Function, server-auth-config-p: Private ordinary functions
Function, server-auth-config-server-secret-key: Public ordinary functions
Function, slot-type-and-initform: Private ordinary functions
Function, snake-to-kebab: Private ordinary functions
Function, start-server: Public ordinary functions
Function, str->lisp-keyword: Private ordinary functions
Function, to-json: Public ordinary functions
Function, to-json-string: Public ordinary functions
Function, to-octets: Private ordinary functions
Function, to-string: Private ordinary functions
Function, unpack-foreign-msg-to-bytes: Private ordinary functions

G
gaussian-waveform-fwhm: Private generic functions
gaussian-waveform-fwhm: Private generic functions
gaussian-waveform-t0: Private generic functions
gaussian-waveform-t0: Private generic functions
gaussianwaveform-fwhm: Private generic functions
gaussianwaveform-fwhm: Private generic functions
gaussianwaveform-t0: Private generic functions
gaussianwaveform-t0: Private generic functions
Generic Function, %%deserialize-struct: Private generic functions
Generic Function, %%serialize: Private generic functions
Generic Function, %deserialize: Private generic functions
Generic Function, %deserialize-struct: Private generic functions
Generic Function, %print-slots: Private generic functions
Generic Function, %serialize: Private generic functions
Generic Function, (setf abstract-kernel-frame): Private generic functions
Generic Function, (setf abstract-waveform-frame): Private generic functions
Generic Function, (setf abstractkernel-frame): Private generic functions
Generic Function, (setf abstractwaveform-frame): Private generic functions
Generic Function, (setf active-reset-apply-feedback-when): Private generic functions
Generic Function, (setf active-reset-attempts): Private generic functions
Generic Function, (setf active-reset-feedback-duration): Private generic functions
Generic Function, (setf active-reset-feedback-instructions): Private generic functions
Generic Function, (setf active-reset-measurement-bit): Private generic functions
Generic Function, (setf active-reset-measurement-duration): Private generic functions
Generic Function, (setf active-reset-measurement-instructions): Private generic functions
Generic Function, (setf active-reset-time): Private generic functions
Generic Function, (setf activereset-apply_feedback_when): Private generic functions
Generic Function, (setf activereset-attempts): Private generic functions
Generic Function, (setf activereset-feedback_duration): Private generic functions
Generic Function, (setf activereset-feedback_instructions): Private generic functions
Generic Function, (setf activereset-measurement_bit): Private generic functions
Generic Function, (setf activereset-measurement_duration): Private generic functions
Generic Function, (setf activereset-measurement_instructions): Private generic functions
Generic Function, (setf activereset-time): Private generic functions
Generic Function, (setf awg-channel-delay): Private generic functions
Generic Function, (setf awg-channel-direction): Private generic functions
Generic Function, (setf awg-channel-gain): Private generic functions
Generic Function, (setf awg-channel-lo-frequency): Private generic functions
Generic Function, (setf awg-channel-sample-rate): Private generic functions
Generic Function, (setf awgchannel-delay): Private generic functions
Generic Function, (setf awgchannel-direction): Private generic functions
Generic Function, (setf awgchannel-gain): Private generic functions
Generic Function, (setf awgchannel-lo_frequency): Private generic functions
Generic Function, (setf awgchannel-sample_rate): Private generic functions
Generic Function, (setf binary-executable-request-num-shots): Private generic functions
Generic Function, (setf binary-executable-request-quil): Private generic functions
Generic Function, (setf binary-executable-response-memory-descriptors): Private generic functions
Generic Function, (setf binary-executable-response-program): Private generic functions
Generic Function, (setf binary-executable-response-ro-sources): Private generic functions
Generic Function, (setf binaryexecutablerequest-num_shots): Private generic functions
Generic Function, (setf binaryexecutablerequest-quil): Private generic functions
Generic Function, (setf binaryexecutableresponse-memory_descriptors): Private generic functions
Generic Function, (setf binaryexecutableresponse-program): Private generic functions
Generic Function, (setf binaryexecutableresponse-ro_sources): Private generic functions
Generic Function, (setf capture-detuning): Private generic functions
Generic Function, (setf capture-detuning): Private generic functions
Generic Function, (setf capture-duration): Private generic functions
Generic Function, (setf capture-duration): Private generic functions
Generic Function, (setf capture-filters): Private generic functions
Generic Function, (setf capture-filters): Private generic functions
Generic Function, (setf capture-frame): Private generic functions
Generic Function, (setf capture-frame): Private generic functions
Generic Function, (setf capture-phase): Private generic functions
Generic Function, (setf capture-phase): Private generic functions
Generic Function, (setf capture-send-to-host): Private generic functions
Generic Function, (setf capture-send_to_host): Private generic functions
Generic Function, (setf conjugate-by-clifford-request-clifford): Private generic functions
Generic Function, (setf conjugate-by-clifford-request-pauli): Private generic functions
Generic Function, (setf conjugate-by-clifford-response-pauli): Private generic functions
Generic Function, (setf conjugate-by-clifford-response-phase): Private generic functions
Generic Function, (setf conjugatebycliffordrequest-clifford): Private generic functions
Generic Function, (setf conjugatebycliffordrequest-pauli): Private generic functions
Generic Function, (setf conjugatebycliffordresponse-pauli): Private generic functions
Generic Function, (setf conjugatebycliffordresponse-phase): Private generic functions
Generic Function, (setf cw-channel-channel-index): Private generic functions
Generic Function, (setf cw-channel-rf-output-enabled): Private generic functions
Generic Function, (setf cw-channel-rf-output-frequency): Private generic functions
Generic Function, (setf cw-channel-rf-output-power): Private generic functions
Generic Function, (setf cw-frequency-sweep-measure): Private generic functions
Generic Function, (setf cw-frequency-sweep-num-pts): Private generic functions
Generic Function, (setf cw-frequency-sweep-source): Private generic functions
Generic Function, (setf cw-frequency-sweep-start): Private generic functions
Generic Function, (setf cw-frequency-sweep-stop): Private generic functions
Generic Function, (setf cwchannel-channel_index): Private generic functions
Generic Function, (setf cwchannel-rf_output_enabled): Private generic functions
Generic Function, (setf cwchannel-rf_output_frequency): Private generic functions
Generic Function, (setf cwchannel-rf_output_power): Private generic functions
Generic Function, (setf cwfrequencysweep-measure): Private generic functions
Generic Function, (setf cwfrequencysweep-num_pts): Private generic functions
Generic Function, (setf cwfrequencysweep-source): Private generic functions
Generic Function, (setf cwfrequencysweep-start): Private generic functions
Generic Function, (setf cwfrequencysweep-stop): Private generic functions
Generic Function, (setf data-axis-name): Private generic functions
Generic Function, (setf data-axis-points): Private generic functions
Generic Function, (setf dataaxis-name): Private generic functions
Generic Function, (setf dataaxis-points): Private generic functions
Generic Function, (setf debug-message-frame): Private generic functions
Generic Function, (setf debug-message-message): Private generic functions
Generic Function, (setf debugmessage-frame): Private generic functions
Generic Function, (setf debugmessage-message): Private generic functions
Generic Function, (setf deployed-rack-instruments): Private generic functions
Generic Function, (setf deployed-rack-qpu): Private generic functions
Generic Function, (setf deployed-rack-rack-meta): Private generic functions
Generic Function, (setf deployedrack-instruments): Private generic functions
Generic Function, (setf deployedrack-qpu): Private generic functions
Generic Function, (setf deployedrack-rack_meta): Private generic functions
Generic Function, (setf drag-gaussian-waveform-alpha): Private generic functions
Generic Function, (setf drag-gaussian-waveform-anh): Private generic functions
Generic Function, (setf drag-gaussian-waveform-fwhm): Private generic functions
Generic Function, (setf drag-gaussian-waveform-t0): Private generic functions
Generic Function, (setf draggaussianwaveform-alpha): Private generic functions
Generic Function, (setf draggaussianwaveform-anh): Private generic functions
Generic Function, (setf draggaussianwaveform-fwhm): Private generic functions
Generic Function, (setf draggaussianwaveform-t0): Private generic functions
Generic Function, (setf erf-square-waveform-pad-left): Private generic functions
Generic Function, (setf erf-square-waveform-pad-right): Private generic functions
Generic Function, (setf erf-square-waveform-risetime): Private generic functions
Generic Function, (setf erfsquarewaveform-pad_left): Private generic functions
Generic Function, (setf erfsquarewaveform-pad_right): Private generic functions
Generic Function, (setf erfsquarewaveform-risetime): Private generic functions
Generic Function, (setf executor-job-duration): Private generic functions
Generic Function, (setf executor-job-filter-pipeline): Private generic functions
Generic Function, (setf executor-job-instrument-settings): Private generic functions
Generic Function, (setf executor-job-receivers): Private generic functions
Generic Function, (setf executor-job-timebomb): Private generic functions
Generic Function, (setf executorjob-duration): Private generic functions
Generic Function, (setf executorjob-filter_pipeline): Private generic functions
Generic Function, (setf executorjob-instrument_settings): Private generic functions
Generic Function, (setf executorjob-receivers): Private generic functions
Generic Function, (setf executorjob-timebomb): Private generic functions
Generic Function, (setf filter-kernel-bias): Private generic functions
Generic Function, (setf filter-kernel-iqs): Private generic functions
Generic Function, (setf filter-node-filter-type): Private generic functions
Generic Function, (setf filter-node-module): Private generic functions
Generic Function, (setf filter-node-params): Private generic functions
Generic Function, (setf filter-node-publish): Private generic functions
Generic Function, (setf filter-node-source): Private generic functions
Generic Function, (setf filterkernel-bias): Private generic functions
Generic Function, (setf filterkernel-iqs): Private generic functions
Generic Function, (setf filternode-filter_type): Private generic functions
Generic Function, (setf filternode-module): Private generic functions
Generic Function, (setf filternode-params): Private generic functions
Generic Function, (setf filternode-publish): Private generic functions
Generic Function, (setf filternode-source): Private generic functions
Generic Function, (setf flat-pulse-detuning): Private generic functions
Generic Function, (setf flat-pulse-duration): Private generic functions
Generic Function, (setf flat-pulse-frame): Private generic functions
Generic Function, (setf flat-pulse-iq): Private generic functions
Generic Function, (setf flat-pulse-phase): Private generic functions
Generic Function, (setf flat-pulse-scale): Private generic functions
Generic Function, (setf flat-waveform-iq): Private generic functions
Generic Function, (setf flatpulse-detuning): Private generic functions
Generic Function, (setf flatpulse-duration): Private generic functions
Generic Function, (setf flatpulse-frame): Private generic functions
Generic Function, (setf flatpulse-iq): Private generic functions
Generic Function, (setf flatpulse-phase): Private generic functions
Generic Function, (setf flatpulse-scale): Private generic functions
Generic Function, (setf flatwaveform-iq): Private generic functions
Generic Function, (setf frame-direction): Private generic functions
Generic Function, (setf frame-direction): Private generic functions
Generic Function, (setf frame-frequency): Private generic functions
Generic Function, (setf frame-frequency): Private generic functions
Generic Function, (setf frame-sample-rate): Private generic functions
Generic Function, (setf frame-sample_rate): Private generic functions
Generic Function, (setf gaussian-waveform-fwhm): Private generic functions
Generic Function, (setf gaussian-waveform-t0): Private generic functions
Generic Function, (setf gaussianwaveform-fwhm): Private generic functions
Generic Function, (setf gaussianwaveform-t0): Private generic functions
Generic Function, (setf get-execution-results-response-buffers): Private generic functions
Generic Function, (setf get-execution-results-response-execution-duration-microseconds): Private generic functions
Generic Function, (setf getexecutionresultsresponse-buffers): Private generic functions
Generic Function, (setf getexecutionresultsresponse-execution_duration_microseconds): Private generic functions
Generic Function, (setf hermite-gaussian-waveform-alpha): Private generic functions
Generic Function, (setf hermite-gaussian-waveform-anh): Private generic functions
Generic Function, (setf hermite-gaussian-waveform-fwhm): Private generic functions
Generic Function, (setf hermite-gaussian-waveform-second-order-hrm-coeff): Private generic functions
Generic Function, (setf hermite-gaussian-waveform-t0): Private generic functions
Generic Function, (setf hermitegaussianwaveform-alpha): Private generic functions
Generic Function, (setf hermitegaussianwaveform-anh): Private generic functions
Generic Function, (setf hermitegaussianwaveform-fwhm): Private generic functions
Generic Function, (setf hermitegaussianwaveform-second_order_hrm_coeff): Private generic functions
Generic Function, (setf hermitegaussianwaveform-t0): Private generic functions
Generic Function, (setf instruction-time): Private generic functions
Generic Function, (setf instruction-time): Private generic functions
Generic Function, (setf instrument-address): Private generic functions
Generic Function, (setf instrument-address): Private generic functions
Generic Function, (setf instrument-channels): Private generic functions
Generic Function, (setf instrument-channels): Private generic functions
Generic Function, (setf instrument-instrument-type): Private generic functions
Generic Function, (setf instrument-instrument_type): Private generic functions
Generic Function, (setf instrument-mnio-connections): Private generic functions
Generic Function, (setf instrument-mnio_connections): Private generic functions
Generic Function, (setf instrument-module): Private generic functions
Generic Function, (setf instrument-module): Private generic functions
Generic Function, (setf instrument-setup): Private generic functions
Generic Function, (setf instrument-setup): Private generic functions
Generic Function, (setf instrument-virtual): Private generic functions
Generic Function, (setf instrument-virtual): Private generic functions
Generic Function, (setf legacy-usrp-sequencer-rx-channel): Private generic functions
Generic Function, (setf legacy-usrp-sequencer-tx-channel): Private generic functions
Generic Function, (setf legacyusrpsequencer-rx_channel): Private generic functions
Generic Function, (setf legacyusrpsequencer-tx_channel): Private generic functions
Generic Function, (setf microwave-source-settings-frequency): Private generic functions
Generic Function, (setf microwave-source-settings-output): Private generic functions
Generic Function, (setf microwave-source-settings-power): Private generic functions
Generic Function, (setf microwavesourcesettings-frequency): Private generic functions
Generic Function, (setf microwavesourcesettings-output): Private generic functions
Generic Function, (setf microwavesourcesettings-power): Private generic functions
Generic Function, (setf mnio-connection-destination): Private generic functions
Generic Function, (setf mnio-connection-port): Private generic functions
Generic Function, (setf mnioconnection-destination): Private generic functions
Generic Function, (setf mnioconnection-port): Private generic functions
Generic Function, (setf native-quil-metadata-final-rewiring): Private generic functions
Generic Function, (setf native-quil-metadata-gate-depth): Private generic functions
Generic Function, (setf native-quil-metadata-gate-volume): Private generic functions
Generic Function, (setf native-quil-metadata-multiqubit-gate-depth): Private generic functions
Generic Function, (setf native-quil-metadata-program-duration): Private generic functions
Generic Function, (setf native-quil-metadata-program-fidelity): Private generic functions
Generic Function, (setf native-quil-metadata-qpu-runtime-estimation): Private generic functions
Generic Function, (setf native-quil-metadata-topological-swaps): Private generic functions
Generic Function, (setf native-quil-request-quil): Private generic functions
Generic Function, (setf native-quil-request-target-device): Private generic functions
Generic Function, (setf native-quil-response-metadata): Private generic functions
Generic Function, (setf native-quil-response-quil): Private generic functions
Generic Function, (setf nativequilmetadata-final_rewiring): Private generic functions
Generic Function, (setf nativequilmetadata-gate_depth): Private generic functions
Generic Function, (setf nativequilmetadata-gate_volume): Private generic functions
Generic Function, (setf nativequilmetadata-multiqubit_gate_depth): Private generic functions
Generic Function, (setf nativequilmetadata-program_duration): Private generic functions
Generic Function, (setf nativequilmetadata-program_fidelity): Private generic functions
Generic Function, (setf nativequilmetadata-qpu_runtime_estimation): Private generic functions
Generic Function, (setf nativequilmetadata-topological_swaps): Private generic functions
Generic Function, (setf nativequilrequest-quil): Private generic functions
Generic Function, (setf nativequilrequest-target_device): Private generic functions
Generic Function, (setf nativequilresponse-metadata): Private generic functions
Generic Function, (setf nativequilresponse-quil): Private generic functions
Generic Function, (setf parameter-aref-index): Private generic functions
Generic Function, (setf parameter-aref-name): Private generic functions
Generic Function, (setf parameter-expression-a): Private generic functions
Generic Function, (setf parameter-expression-b): Private generic functions
Generic Function, (setf parameter-expression-operator): Private generic functions
Generic Function, (setf parameter-spec-length): Private generic functions
Generic Function, (setf parameter-spec-type): Private generic functions
Generic Function, (setf parameteraref-index): Private generic functions
Generic Function, (setf parameteraref-name): Private generic functions
Generic Function, (setf parameterexpression-a): Private generic functions
Generic Function, (setf parameterexpression-b): Private generic functions
Generic Function, (setf parameterexpression-operator): Private generic functions
Generic Function, (setf parameterspec-length): Private generic functions
Generic Function, (setf parameterspec-type): Private generic functions
Generic Function, (setf patch-target-patch-offset): Private generic functions
Generic Function, (setf patch-target-patch-type): Private generic functions
Generic Function, (setf patchable-binary-base-binary): Private generic functions
Generic Function, (setf patchable-binary-patch-table): Private generic functions
Generic Function, (setf patchablebinary-base_binary): Private generic functions
Generic Function, (setf patchablebinary-patch_table): Private generic functions
Generic Function, (setf patchtarget-patch_offset): Private generic functions
Generic Function, (setf patchtarget-patch_type): Private generic functions
Generic Function, (setf pauli-term-indices): Private generic functions
Generic Function, (setf pauli-term-symbols): Private generic functions
Generic Function, (setf pauliterm-indices): Private generic functions
Generic Function, (setf pauliterm-symbols): Private generic functions
Generic Function, (setf program-filters): Private generic functions
Generic Function, (setf program-filters): Private generic functions
Generic Function, (setf program-parameters): Private generic functions
Generic Function, (setf program-parameters): Private generic functions
Generic Function, (setf program-scheduled-instructions): Private generic functions
Generic Function, (setf program-scheduled_instructions): Private generic functions
Generic Function, (setf program-waveforms): Private generic functions
Generic Function, (setf program-waveforms): Private generic functions
Generic Function, (setf pulse-detuning): Private generic functions
Generic Function, (setf pulse-detuning): Private generic functions
Generic Function, (setf pulse-frame): Private generic functions
Generic Function, (setf pulse-frame): Private generic functions
Generic Function, (setf pulse-phase): Private generic functions
Generic Function, (setf pulse-phase): Private generic functions
Generic Function, (setf pulse-scale): Private generic functions
Generic Function, (setf pulse-scale): Private generic functions
Generic Function, (setf pulse-waveform): Private generic functions
Generic Function, (setf pulse-waveform): Private generic functions
Generic Function, (setf py-quil-executable-response-attributes): Private generic functions
Generic Function, (setf py-quil-executable-response-program): Private generic functions
Generic Function, (setf pyquilexecutableresponse-attributes): Private generic functions
Generic Function, (setf pyquilexecutableresponse-program): Private generic functions
Generic Function, (setf qdo-fast-flux-channel-channel-index): Private generic functions
Generic Function, (setf qdo-fast-flux-channel-delay): Private generic functions
Generic Function, (setf qdo-fast-flux-channel-direction): Private generic functions
Generic Function, (setf qdo-fast-flux-channel-flux-current): Private generic functions
Generic Function, (setf qdo-sequencer-sequencer-index): Private generic functions
Generic Function, (setf qdo-sequencer-tx-channel): Private generic functions
Generic Function, (setf qdo-slow-flux-channel-channel-index): Private generic functions
Generic Function, (setf qdo-slow-flux-channel-flux-current): Private generic functions
Generic Function, (setf qdo-slow-flux-channel-relay-closed): Private generic functions
Generic Function, (setf qdofastfluxchannel-channel_index): Private generic functions
Generic Function, (setf qdofastfluxchannel-delay): Private generic functions
Generic Function, (setf qdofastfluxchannel-direction): Private generic functions
Generic Function, (setf qdofastfluxchannel-flux_current): Private generic functions
Generic Function, (setf qdosequencer-sequencer_index): Private generic functions
Generic Function, (setf qdosequencer-tx_channel): Private generic functions
Generic Function, (setf qdoslowfluxchannel-channel_index): Private generic functions
Generic Function, (setf qdoslowfluxchannel-flux_current): Private generic functions
Generic Function, (setf qdoslowfluxchannel-relay_closed): Private generic functions
Generic Function, (setf qf-dx-2-sequencer-sequencer-index): Private generic functions
Generic Function, (setf qf-dx-2-sequencer-tx-channel): Private generic functions
Generic Function, (setf qfd-channel-channel-index): Private generic functions
Generic Function, (setf qfd-channel-delay): Private generic functions
Generic Function, (setf qfd-channel-direction): Private generic functions
Generic Function, (setf qfd-channel-flux-current): Private generic functions
Generic Function, (setf qfd-channel-gain): Private generic functions
Generic Function, (setf qfd-channel-nco-frequency): Private generic functions
Generic Function, (setf qfd-channel-relay-closed): Private generic functions
Generic Function, (setf qfd-sequencer-sequencer-index): Private generic functions
Generic Function, (setf qfd-sequencer-tx-channel): Private generic functions
Generic Function, (setf qfdchannel-channel_index): Private generic functions
Generic Function, (setf qfdchannel-delay): Private generic functions
Generic Function, (setf qfdchannel-direction): Private generic functions
Generic Function, (setf qfdchannel-flux_current): Private generic functions
Generic Function, (setf qfdchannel-gain): Private generic functions
Generic Function, (setf qfdchannel-nco_frequency): Private generic functions
Generic Function, (setf qfdchannel-relay_closed): Private generic functions
Generic Function, (setf qfdsequencer-sequencer_index): Private generic functions
Generic Function, (setf qfdsequencer-tx_channel): Private generic functions
Generic Function, (setf qfdx2sequencer-sequencer_index): Private generic functions
Generic Function, (setf qfdx2sequencer-tx_channel): Private generic functions
Generic Function, (setf qg-sx-2-sequencer-sequencer-index): Private generic functions
Generic Function, (setf qg-sx-2-sequencer-tx-channel): Private generic functions
Generic Function, (setf qgs-channel-channel-index): Private generic functions
Generic Function, (setf qgs-channel-delay): Private generic functions
Generic Function, (setf qgs-channel-direction): Private generic functions
Generic Function, (setf qgs-channel-gain): Private generic functions
Generic Function, (setf qgs-channel-nco-frequency): Private generic functions
Generic Function, (setf qgs-sequencer-sequencer-index): Private generic functions
Generic Function, (setf qgs-sequencer-tx-channel): Private generic functions
Generic Function, (setf qgschannel-channel_index): Private generic functions
Generic Function, (setf qgschannel-delay): Private generic functions
Generic Function, (setf qgschannel-direction): Private generic functions
Generic Function, (setf qgschannel-gain): Private generic functions
Generic Function, (setf qgschannel-nco_frequency): Private generic functions
Generic Function, (setf qgssequencer-sequencer_index): Private generic functions
Generic Function, (setf qgssequencer-tx_channel): Private generic functions
Generic Function, (setf qgsx2sequencer-sequencer_index): Private generic functions
Generic Function, (setf qgsx2sequencer-tx_channel): Private generic functions
Generic Function, (setf qpu-chip-label): Private generic functions
Generic Function, (setf qpu-chip_label): Private generic functions
Generic Function, (setf qpu-controls): Private generic functions
Generic Function, (setf qpu-controls): Private generic functions
Generic Function, (setf qpu-controls-by-qubit): Private generic functions
Generic Function, (setf qpu-controls_by_qubit): Private generic functions
Generic Function, (setf qpu-qubits): Private generic functions
Generic Function, (setf qpu-qubits): Private generic functions
Generic Function, (setf qpu-request-id): Private generic functions
Generic Function, (setf qpu-request-patch-values): Private generic functions
Generic Function, (setf qpu-request-program): Private generic functions
Generic Function, (setf qpurequest-id): Private generic functions
Generic Function, (setf qpurequest-patch_values): Private generic functions
Generic Function, (setf qpurequest-program): Private generic functions
Generic Function, (setf qr-tx-2-sequencer-low-freq-range): Private generic functions
Generic Function, (setf qr-tx-2-sequencer-sequencer-index): Private generic functions
Generic Function, (setf qr-tx-2-sequencer-tx-channel): Private generic functions
Generic Function, (setf qrr-channel-channel-index): Private generic functions
Generic Function, (setf qrr-channel-delay): Private generic functions
Generic Function, (setf qrr-channel-direction): Private generic functions
Generic Function, (setf qrr-channel-gain): Private generic functions
Generic Function, (setf qrr-channel-nco-frequency): Private generic functions
Generic Function, (setf qrr-sequencer-rx-channel): Private generic functions
Generic Function, (setf qrr-sequencer-sequencer-index): Private generic functions
Generic Function, (setf qrrchannel-channel_index): Private generic functions
Generic Function, (setf qrrchannel-delay): Private generic functions
Generic Function, (setf qrrchannel-direction): Private generic functions
Generic Function, (setf qrrchannel-gain): Private generic functions
Generic Function, (setf qrrchannel-nco_frequency): Private generic functions
Generic Function, (setf qrrsequencer-rx_channel): Private generic functions
Generic Function, (setf qrrsequencer-sequencer_index): Private generic functions
Generic Function, (setf qrt-channel-channel-index): Private generic functions
Generic Function, (setf qrt-channel-delay): Private generic functions
Generic Function, (setf qrt-channel-direction): Private generic functions
Generic Function, (setf qrt-channel-gain): Private generic functions
Generic Function, (setf qrt-channel-nco-frequency): Private generic functions
Generic Function, (setf qrt-sequencer-low-freq-range): Private generic functions
Generic Function, (setf qrt-sequencer-sequencer-index): Private generic functions
Generic Function, (setf qrt-sequencer-tx-channel): Private generic functions
Generic Function, (setf qrtchannel-channel_index): Private generic functions
Generic Function, (setf qrtchannel-delay): Private generic functions
Generic Function, (setf qrtchannel-direction): Private generic functions
Generic Function, (setf qrtchannel-gain): Private generic functions
Generic Function, (setf qrtchannel-nco_frequency): Private generic functions
Generic Function, (setf qrtsequencer-low_freq_range): Private generic functions
Generic Function, (setf qrtsequencer-sequencer_index): Private generic functions
Generic Function, (setf qrtsequencer-tx_channel): Private generic functions
Generic Function, (setf qrtx2sequencer-low_freq_range): Private generic functions
Generic Function, (setf qrtx2sequencer-sequencer_index): Private generic functions
Generic Function, (setf qrtx2sequencer-tx_channel): Private generic functions
Generic Function, (setf quilt-binary-executable-request-num-shots): Private generic functions
Generic Function, (setf quilt-binary-executable-request-quilt): Private generic functions
Generic Function, (setf quilt-binary-executable-response-debug): Private generic functions
Generic Function, (setf quilt-binary-executable-response-memory-descriptors): Private generic functions
Generic Function, (setf quilt-binary-executable-response-program): Private generic functions
Generic Function, (setf quilt-binary-executable-response-ro-sources): Private generic functions
Generic Function, (setf quilt-calibrations-request-target-device): Private generic functions
Generic Function, (setf quilt-calibrations-response-quilt): Private generic functions
Generic Function, (setf quiltbinaryexecutablerequest-num_shots): Private generic functions
Generic Function, (setf quiltbinaryexecutablerequest-quilt): Private generic functions
Generic Function, (setf quiltbinaryexecutableresponse-debug): Private generic functions
Generic Function, (setf quiltbinaryexecutableresponse-memory_descriptors): Private generic functions
Generic Function, (setf quiltbinaryexecutableresponse-program): Private generic functions
Generic Function, (setf quiltbinaryexecutableresponse-ro_sources): Private generic functions
Generic Function, (setf quiltcalibrationsrequest-target_device): Private generic functions
Generic Function, (setf quiltcalibrationsresponse-quilt): Private generic functions
Generic Function, (setf rack-meta-rack-id): Private generic functions
Generic Function, (setf rack-meta-rack-version): Private generic functions
Generic Function, (setf rack-meta-schema-version): Private generic functions
Generic Function, (setf rackmeta-rack_id): Private generic functions
Generic Function, (setf rackmeta-rack_version): Private generic functions
Generic Function, (setf rackmeta-schema_version): Private generic functions
Generic Function, (setf randomized-benchmarking-request-depth): Private generic functions
Generic Function, (setf randomized-benchmarking-request-gateset): Private generic functions
Generic Function, (setf randomized-benchmarking-request-interleaver): Private generic functions
Generic Function, (setf randomized-benchmarking-request-qubits): Private generic functions
Generic Function, (setf randomized-benchmarking-request-seed): Private generic functions
Generic Function, (setf randomized-benchmarking-response-sequence): Private generic functions
Generic Function, (setf randomizedbenchmarkingrequest-depth): Private generic functions
Generic Function, (setf randomizedbenchmarkingrequest-gateset): Private generic functions
Generic Function, (setf randomizedbenchmarkingrequest-interleaver): Private generic functions
Generic Function, (setf randomizedbenchmarkingrequest-qubits): Private generic functions
Generic Function, (setf randomizedbenchmarkingrequest-seed): Private generic functions
Generic Function, (setf randomizedbenchmarkingresponse-sequence): Private generic functions
Generic Function, (setf receiver-channel): Private generic functions
Generic Function, (setf receiver-channel): Private generic functions
Generic Function, (setf receiver-data-axes): Private generic functions
Generic Function, (setf receiver-data_axes): Private generic functions
Generic Function, (setf receiver-instrument): Private generic functions
Generic Function, (setf receiver-instrument): Private generic functions
Generic Function, (setf receiver-publish): Private generic functions
Generic Function, (setf receiver-publish): Private generic functions
Generic Function, (setf receiver-stream): Private generic functions
Generic Function, (setf receiver-stream): Private generic functions
Generic Function, (setf resources-frames): Private generic functions
Generic Function, (setf resources-frames): Private generic functions
Generic Function, (setf resources-frames-to-controls): Private generic functions
Generic Function, (setf resources-frames_to_controls): Private generic functions
Generic Function, (setf resources-qubits): Private generic functions
Generic Function, (setf resources-qubits): Private generic functions
Generic Function, (setf rewrite-arithmetic-request-quil): Private generic functions
Generic Function, (setf rewrite-arithmetic-response-original-memory-descriptors): Private generic functions
Generic Function, (setf rewrite-arithmetic-response-quil): Private generic functions
Generic Function, (setf rewrite-arithmetic-response-recalculation-table): Private generic functions
Generic Function, (setf rewritearithmeticrequest-quil): Private generic functions
Generic Function, (setf rewritearithmeticresponse-original_memory_descriptors): Private generic functions
Generic Function, (setf rewritearithmeticresponse-quil): Private generic functions
Generic Function, (setf rewritearithmeticresponse-recalculation_table): Private generic functions
Generic Function, (setf rpc-error-error): Private generic functions
Generic Function, (setf rpc-error-id): Private generic functions
Generic Function, (setf rpc-error-jsonrpc): Private generic functions
Generic Function, (setf rpc-error-warnings): Private generic functions
Generic Function, (setf rpc-reply-id): Private generic functions
Generic Function, (setf rpc-reply-jsonrpc): Private generic functions
Generic Function, (setf rpc-reply-result): Private generic functions
Generic Function, (setf rpc-reply-warnings): Private generic functions
Generic Function, (setf rpc-request-client-key): Private generic functions
Generic Function, (setf rpc-request-client-timeout): Private generic functions
Generic Function, (setf rpc-request-id): Private generic functions
Generic Function, (setf rpc-request-jsonrpc): Private generic functions
Generic Function, (setf rpc-request-method): Private generic functions
Generic Function, (setf rpc-request-params): Private generic functions
Generic Function, (setf rpc-warning-body): Private generic functions
Generic Function, (setf rpc-warning-kind): Private generic functions
Generic Function, (setf rpcerror-error): Private generic functions
Generic Function, (setf rpcerror-id): Private generic functions
Generic Function, (setf rpcerror-jsonrpc): Private generic functions
Generic Function, (setf rpcerror-warnings): Private generic functions
Generic Function, (setf rpcreply-id): Private generic functions
Generic Function, (setf rpcreply-jsonrpc): Private generic functions
Generic Function, (setf rpcreply-result): Private generic functions
Generic Function, (setf rpcreply-warnings): Private generic functions
Generic Function, (setf rpcrequest-client_key): Private generic functions
Generic Function, (setf rpcrequest-client_timeout): Private generic functions
Generic Function, (setf rpcrequest-id): Private generic functions
Generic Function, (setf rpcrequest-jsonrpc): Private generic functions
Generic Function, (setf rpcrequest-method): Private generic functions
Generic Function, (setf rpcrequest-params): Private generic functions
Generic Function, (setf rpcwarning-body): Private generic functions
Generic Function, (setf rpcwarning-kind): Private generic functions
Generic Function, (setf schedule-ir-job-filter-pipeline): Private generic functions
Generic Function, (setf schedule-ir-job-job-id): Private generic functions
Generic Function, (setf schedule-ir-job-num-shots): Private generic functions
Generic Function, (setf schedule-ir-job-operating-point): Private generic functions
Generic Function, (setf schedule-ir-job-program): Private generic functions
Generic Function, (setf schedule-ir-job-resources): Private generic functions
Generic Function, (setf scheduleirjob-filter_pipeline): Private generic functions
Generic Function, (setf scheduleirjob-job_id): Private generic functions
Generic Function, (setf scheduleirjob-num_shots): Private generic functions
Generic Function, (setf scheduleirjob-operating_point): Private generic functions
Generic Function, (setf scheduleirjob-program): Private generic functions
Generic Function, (setf scheduleirjob-resources): Private generic functions
Generic Function, (setf set-frequency-frame): Private generic functions
Generic Function, (setf set-frequency-frequency): Private generic functions
Generic Function, (setf set-phase-frame): Private generic functions
Generic Function, (setf set-phase-phase): Private generic functions
Generic Function, (setf set-scale-frame): Private generic functions
Generic Function, (setf set-scale-scale): Private generic functions
Generic Function, (setf setfrequency-frame): Private generic functions
Generic Function, (setf setfrequency-frequency): Private generic functions
Generic Function, (setf setphase-frame): Private generic functions
Generic Function, (setf setphase-phase): Private generic functions
Generic Function, (setf setscale-frame): Private generic functions
Generic Function, (setf setscale-scale): Private generic functions
Generic Function, (setf shift-frequency-delta): Private generic functions
Generic Function, (setf shift-frequency-frame): Private generic functions
Generic Function, (setf shift-phase-delta): Private generic functions
Generic Function, (setf shift-phase-frame): Private generic functions
Generic Function, (setf shiftfrequency-delta): Private generic functions
Generic Function, (setf shiftfrequency-frame): Private generic functions
Generic Function, (setf shiftphase-delta): Private generic functions
Generic Function, (setf shiftphase-frame): Private generic functions
Generic Function, (setf swap-phases-frame-a): Private generic functions
Generic Function, (setf swap-phases-frame-b): Private generic functions
Generic Function, (setf swapphases-frame_a): Private generic functions
Generic Function, (setf swapphases-frame_b): Private generic functions
Generic Function, (setf target-device-isa): Private generic functions
Generic Function, (setf target-device-specs): Private generic functions
Generic Function, (setf targetdevice-isa): Private generic functions
Generic Function, (setf targetdevice-specs): Private generic functions
Generic Function, (setf template-kernel-bias): Private generic functions
Generic Function, (setf template-kernel-detuning): Private generic functions
Generic Function, (setf template-kernel-duration): Private generic functions
Generic Function, (setf template-kernel-phase): Private generic functions
Generic Function, (setf template-kernel-scale): Private generic functions
Generic Function, (setf template-waveform-detuning): Private generic functions
Generic Function, (setf template-waveform-duration): Private generic functions
Generic Function, (setf template-waveform-phase): Private generic functions
Generic Function, (setf template-waveform-scale): Private generic functions
Generic Function, (setf templatekernel-bias): Private generic functions
Generic Function, (setf templatekernel-detuning): Private generic functions
Generic Function, (setf templatekernel-duration): Private generic functions
Generic Function, (setf templatekernel-phase): Private generic functions
Generic Function, (setf templatekernel-scale): Private generic functions
Generic Function, (setf templatewaveform-detuning): Private generic functions
Generic Function, (setf templatewaveform-duration): Private generic functions
Generic Function, (setf templatewaveform-phase): Private generic functions
Generic Function, (setf templatewaveform-scale): Private generic functions
Generic Function, (setf time-bomb-chip-label): Private generic functions
Generic Function, (setf time-bomb-deadline): Private generic functions
Generic Function, (setf timebomb-chip_label): Private generic functions
Generic Function, (setf timebomb-deadline): Private generic functions
Generic Function, (setf usi-card-sequencer-tx-channel): Private generic functions
Generic Function, (setf usi-target-sequencer-rx-channel): Private generic functions
Generic Function, (setf usi-target-sequencer-sequencer-index): Private generic functions
Generic Function, (setf usi-target-sequencer-tx-channel): Private generic functions
Generic Function, (setf usicardsequencer-tx_channel): Private generic functions
Generic Function, (setf usitargetsequencer-rx_channel): Private generic functions
Generic Function, (setf usitargetsequencer-sequencer_index): Private generic functions
Generic Function, (setf usitargetsequencer-tx_channel): Private generic functions
Generic Function, (setf vna-settings-averaging): Private generic functions
Generic Function, (setf vna-settings-bandwidth): Private generic functions
Generic Function, (setf vna-settings-e-delay): Private generic functions
Generic Function, (setf vna-settings-freq-sweep): Private generic functions
Generic Function, (setf vna-settings-phase-offset): Private generic functions
Generic Function, (setf vna-settings-power): Private generic functions
Generic Function, (setf vnasettings-averaging): Private generic functions
Generic Function, (setf vnasettings-bandwidth): Private generic functions
Generic Function, (setf vnasettings-e_delay): Private generic functions
Generic Function, (setf vnasettings-freq_sweep): Private generic functions
Generic Function, (setf vnasettings-phase_offset): Private generic functions
Generic Function, (setf vnasettings-power): Private generic functions
Generic Function, (setf waveform-iqs): Private generic functions
Generic Function, (setf waveform-iqs): Private generic functions
Generic Function, abstract-kernel-frame: Private generic functions
Generic Function, abstract-waveform-frame: Private generic functions
Generic Function, abstractkernel-frame: Private generic functions
Generic Function, abstractwaveform-frame: Private generic functions
Generic Function, active-reset-apply-feedback-when: Private generic functions
Generic Function, active-reset-attempts: Private generic functions
Generic Function, active-reset-feedback-duration: Private generic functions
Generic Function, active-reset-feedback-instructions: Private generic functions
Generic Function, active-reset-measurement-bit: Private generic functions
Generic Function, active-reset-measurement-duration: Private generic functions
Generic Function, active-reset-measurement-instructions: Private generic functions
Generic Function, active-reset-time: Private generic functions
Generic Function, activereset-apply_feedback_when: Private generic functions
Generic Function, activereset-attempts: Private generic functions
Generic Function, activereset-feedback_duration: Private generic functions
Generic Function, activereset-feedback_instructions: Private generic functions
Generic Function, activereset-measurement_bit: Private generic functions
Generic Function, activereset-measurement_duration: Private generic functions
Generic Function, activereset-measurement_instructions: Private generic functions
Generic Function, activereset-time: Private generic functions
Generic Function, awg-channel-delay: Private generic functions
Generic Function, awg-channel-direction: Private generic functions
Generic Function, awg-channel-gain: Private generic functions
Generic Function, awg-channel-lo-frequency: Private generic functions
Generic Function, awg-channel-sample-rate: Private generic functions
Generic Function, awgchannel-delay: Private generic functions
Generic Function, awgchannel-direction: Private generic functions
Generic Function, awgchannel-gain: Private generic functions
Generic Function, awgchannel-lo_frequency: Private generic functions
Generic Function, awgchannel-sample_rate: Private generic functions
Generic Function, binary-executable-request-num-shots: Private generic functions
Generic Function, binary-executable-request-quil: Private generic functions
Generic Function, binary-executable-response-memory-descriptors: Private generic functions
Generic Function, binary-executable-response-program: Private generic functions
Generic Function, binary-executable-response-ro-sources: Private generic functions
Generic Function, binaryexecutablerequest-num_shots: Private generic functions
Generic Function, binaryexecutablerequest-quil: Private generic functions
Generic Function, binaryexecutableresponse-memory_descriptors: Private generic functions
Generic Function, binaryexecutableresponse-program: Private generic functions
Generic Function, binaryexecutableresponse-ro_sources: Private generic functions
Generic Function, capture-detuning: Private generic functions
Generic Function, capture-detuning: Private generic functions
Generic Function, capture-duration: Private generic functions
Generic Function, capture-duration: Private generic functions
Generic Function, capture-filters: Private generic functions
Generic Function, capture-filters: Private generic functions
Generic Function, capture-frame: Private generic functions
Generic Function, capture-frame: Private generic functions
Generic Function, capture-phase: Private generic functions
Generic Function, capture-phase: Private generic functions
Generic Function, capture-send-to-host: Private generic functions
Generic Function, capture-send_to_host: Private generic functions
Generic Function, conjugate-by-clifford-request-clifford: Private generic functions
Generic Function, conjugate-by-clifford-request-pauli: Private generic functions
Generic Function, conjugate-by-clifford-response-pauli: Private generic functions
Generic Function, conjugate-by-clifford-response-phase: Private generic functions
Generic Function, conjugatebycliffordrequest-clifford: Private generic functions
Generic Function, conjugatebycliffordrequest-pauli: Private generic functions
Generic Function, conjugatebycliffordresponse-pauli: Private generic functions
Generic Function, conjugatebycliffordresponse-phase: Private generic functions
Generic Function, cw-channel-channel-index: Private generic functions
Generic Function, cw-channel-rf-output-enabled: Private generic functions
Generic Function, cw-channel-rf-output-frequency: Private generic functions
Generic Function, cw-channel-rf-output-power: Private generic functions
Generic Function, cw-frequency-sweep-measure: Private generic functions
Generic Function, cw-frequency-sweep-num-pts: Private generic functions
Generic Function, cw-frequency-sweep-source: Private generic functions
Generic Function, cw-frequency-sweep-start: Private generic functions
Generic Function, cw-frequency-sweep-stop: Private generic functions
Generic Function, cwchannel-channel_index: Private generic functions
Generic Function, cwchannel-rf_output_enabled: Private generic functions
Generic Function, cwchannel-rf_output_frequency: Private generic functions
Generic Function, cwchannel-rf_output_power: Private generic functions
Generic Function, cwfrequencysweep-measure: Private generic functions
Generic Function, cwfrequencysweep-num_pts: Private generic functions
Generic Function, cwfrequencysweep-source: Private generic functions
Generic Function, cwfrequencysweep-start: Private generic functions
Generic Function, cwfrequencysweep-stop: Private generic functions
Generic Function, data-axis-name: Private generic functions
Generic Function, data-axis-points: Private generic functions
Generic Function, dataaxis-name: Private generic functions
Generic Function, dataaxis-points: Private generic functions
Generic Function, debug-message-frame: Private generic functions
Generic Function, debug-message-message: Private generic functions
Generic Function, debugmessage-frame: Private generic functions
Generic Function, debugmessage-message: Private generic functions
Generic Function, deployed-rack-instruments: Private generic functions
Generic Function, deployed-rack-qpu: Private generic functions
Generic Function, deployed-rack-rack-meta: Private generic functions
Generic Function, deployedrack-instruments: Private generic functions
Generic Function, deployedrack-qpu: Private generic functions
Generic Function, deployedrack-rack_meta: Private generic functions
Generic Function, drag-gaussian-waveform-alpha: Private generic functions
Generic Function, drag-gaussian-waveform-anh: Private generic functions
Generic Function, drag-gaussian-waveform-fwhm: Private generic functions
Generic Function, drag-gaussian-waveform-t0: Private generic functions
Generic Function, draggaussianwaveform-alpha: Private generic functions
Generic Function, draggaussianwaveform-anh: Private generic functions
Generic Function, draggaussianwaveform-fwhm: Private generic functions
Generic Function, draggaussianwaveform-t0: Private generic functions
Generic Function, erf-square-waveform-pad-left: Private generic functions
Generic Function, erf-square-waveform-pad-right: Private generic functions
Generic Function, erf-square-waveform-risetime: Private generic functions
Generic Function, erfsquarewaveform-pad_left: Private generic functions
Generic Function, erfsquarewaveform-pad_right: Private generic functions
Generic Function, erfsquarewaveform-risetime: Private generic functions
Generic Function, executor-job-duration: Private generic functions
Generic Function, executor-job-filter-pipeline: Private generic functions
Generic Function, executor-job-instrument-settings: Private generic functions
Generic Function, executor-job-receivers: Private generic functions
Generic Function, executor-job-timebomb: Private generic functions
Generic Function, executorjob-duration: Private generic functions
Generic Function, executorjob-filter_pipeline: Private generic functions
Generic Function, executorjob-instrument_settings: Private generic functions
Generic Function, executorjob-receivers: Private generic functions
Generic Function, executorjob-timebomb: Private generic functions
Generic Function, filter-kernel-bias: Private generic functions
Generic Function, filter-kernel-iqs: Private generic functions
Generic Function, filter-node-filter-type: Private generic functions
Generic Function, filter-node-module: Private generic functions
Generic Function, filter-node-params: Private generic functions
Generic Function, filter-node-publish: Private generic functions
Generic Function, filter-node-source: Private generic functions
Generic Function, filterkernel-bias: Private generic functions
Generic Function, filterkernel-iqs: Private generic functions
Generic Function, filternode-filter_type: Private generic functions
Generic Function, filternode-module: Private generic functions
Generic Function, filternode-params: Private generic functions
Generic Function, filternode-publish: Private generic functions
Generic Function, filternode-source: Private generic functions
Generic Function, flat-pulse-detuning: Private generic functions
Generic Function, flat-pulse-duration: Private generic functions
Generic Function, flat-pulse-frame: Private generic functions
Generic Function, flat-pulse-iq: Private generic functions
Generic Function, flat-pulse-phase: Private generic functions
Generic Function, flat-pulse-scale: Private generic functions
Generic Function, flat-waveform-iq: Private generic functions
Generic Function, flatpulse-detuning: Private generic functions
Generic Function, flatpulse-duration: Private generic functions
Generic Function, flatpulse-frame: Private generic functions
Generic Function, flatpulse-iq: Private generic functions
Generic Function, flatpulse-phase: Private generic functions
Generic Function, flatpulse-scale: Private generic functions
Generic Function, flatwaveform-iq: Private generic functions
Generic Function, frame-direction: Private generic functions
Generic Function, frame-direction: Private generic functions
Generic Function, frame-frequency: Private generic functions
Generic Function, frame-frequency: Private generic functions
Generic Function, frame-sample-rate: Private generic functions
Generic Function, frame-sample_rate: Private generic functions
Generic Function, gaussian-waveform-fwhm: Private generic functions
Generic Function, gaussian-waveform-t0: Private generic functions
Generic Function, gaussianwaveform-fwhm: Private generic functions
Generic Function, gaussianwaveform-t0: Private generic functions
Generic Function, get-execution-results-response-buffers: Private generic functions
Generic Function, get-execution-results-response-execution-duration-microseconds: Private generic functions
Generic Function, getexecutionresultsresponse-buffers: Private generic functions
Generic Function, getexecutionresultsresponse-execution_duration_microseconds: Private generic functions
Generic Function, hermite-gaussian-waveform-alpha: Private generic functions
Generic Function, hermite-gaussian-waveform-anh: Private generic functions
Generic Function, hermite-gaussian-waveform-fwhm: Private generic functions
Generic Function, hermite-gaussian-waveform-second-order-hrm-coeff: Private generic functions
Generic Function, hermite-gaussian-waveform-t0: Private generic functions
Generic Function, hermitegaussianwaveform-alpha: Private generic functions
Generic Function, hermitegaussianwaveform-anh: Private generic functions
Generic Function, hermitegaussianwaveform-fwhm: Private generic functions
Generic Function, hermitegaussianwaveform-second_order_hrm_coeff: Private generic functions
Generic Function, hermitegaussianwaveform-t0: Private generic functions
Generic Function, instruction-time: Private generic functions
Generic Function, instruction-time: Private generic functions
Generic Function, instrument-address: Private generic functions
Generic Function, instrument-address: Private generic functions
Generic Function, instrument-channels: Private generic functions
Generic Function, instrument-channels: Private generic functions
Generic Function, instrument-instrument-type: Private generic functions
Generic Function, instrument-instrument_type: Private generic functions
Generic Function, instrument-mnio-connections: Private generic functions
Generic Function, instrument-mnio_connections: Private generic functions
Generic Function, instrument-module: Private generic functions
Generic Function, instrument-module: Private generic functions
Generic Function, instrument-setup: Private generic functions
Generic Function, instrument-setup: Private generic functions
Generic Function, instrument-virtual: Private generic functions
Generic Function, instrument-virtual: Private generic functions
Generic Function, legacy-usrp-sequencer-rx-channel: Private generic functions
Generic Function, legacy-usrp-sequencer-tx-channel: Private generic functions
Generic Function, legacyusrpsequencer-rx_channel: Private generic functions
Generic Function, legacyusrpsequencer-tx_channel: Private generic functions
Generic Function, microwave-source-settings-frequency: Private generic functions
Generic Function, microwave-source-settings-output: Private generic functions
Generic Function, microwave-source-settings-power: Private generic functions
Generic Function, microwavesourcesettings-frequency: Private generic functions
Generic Function, microwavesourcesettings-output: Private generic functions
Generic Function, microwavesourcesettings-power: Private generic functions
Generic Function, mnio-connection-destination: Private generic functions
Generic Function, mnio-connection-port: Private generic functions
Generic Function, mnioconnection-destination: Private generic functions
Generic Function, mnioconnection-port: Private generic functions
Generic Function, native-quil-metadata-final-rewiring: Private generic functions
Generic Function, native-quil-metadata-gate-depth: Private generic functions
Generic Function, native-quil-metadata-gate-volume: Private generic functions
Generic Function, native-quil-metadata-multiqubit-gate-depth: Private generic functions
Generic Function, native-quil-metadata-program-duration: Private generic functions
Generic Function, native-quil-metadata-program-fidelity: Private generic functions
Generic Function, native-quil-metadata-qpu-runtime-estimation: Private generic functions
Generic Function, native-quil-metadata-topological-swaps: Private generic functions
Generic Function, native-quil-request-quil: Private generic functions
Generic Function, native-quil-request-target-device: Private generic functions
Generic Function, native-quil-response-metadata: Private generic functions
Generic Function, native-quil-response-quil: Private generic functions
Generic Function, nativequilmetadata-final_rewiring: Private generic functions
Generic Function, nativequilmetadata-gate_depth: Private generic functions
Generic Function, nativequilmetadata-gate_volume: Private generic functions
Generic Function, nativequilmetadata-multiqubit_gate_depth: Private generic functions
Generic Function, nativequilmetadata-program_duration: Private generic functions
Generic Function, nativequilmetadata-program_fidelity: Private generic functions
Generic Function, nativequilmetadata-qpu_runtime_estimation: Private generic functions
Generic Function, nativequilmetadata-topological_swaps: Private generic functions
Generic Function, nativequilrequest-quil: Private generic functions
Generic Function, nativequilrequest-target_device: Private generic functions
Generic Function, nativequilresponse-metadata: Private generic functions
Generic Function, nativequilresponse-quil: Private generic functions
Generic Function, not-an-rpcrequest-object: Public generic functions
Generic Function, parameter-aref-index: Private generic functions
Generic Function, parameter-aref-name: Private generic functions
Generic Function, parameter-expression-a: Private generic functions
Generic Function, parameter-expression-b: Private generic functions
Generic Function, parameter-expression-operator: Private generic functions
Generic Function, parameter-spec-length: Private generic functions
Generic Function, parameter-spec-type: Private generic functions
Generic Function, parameteraref-index: Private generic functions
Generic Function, parameteraref-name: Private generic functions
Generic Function, parameterexpression-a: Private generic functions
Generic Function, parameterexpression-b: Private generic functions
Generic Function, parameterexpression-operator: Private generic functions
Generic Function, parameterspec-length: Private generic functions
Generic Function, parameterspec-type: Private generic functions
Generic Function, patch-target-patch-offset: Private generic functions
Generic Function, patch-target-patch-type: Private generic functions
Generic Function, patchable-binary-base-binary: Private generic functions
Generic Function, patchable-binary-patch-table: Private generic functions
Generic Function, patchablebinary-base_binary: Private generic functions
Generic Function, patchablebinary-patch_table: Private generic functions
Generic Function, patchtarget-patch_offset: Private generic functions
Generic Function, patchtarget-patch_type: Private generic functions
Generic Function, pauli-term-indices: Private generic functions
Generic Function, pauli-term-symbols: Private generic functions
Generic Function, pauliterm-indices: Private generic functions
Generic Function, pauliterm-symbols: Private generic functions
Generic Function, program-filters: Private generic functions
Generic Function, program-filters: Private generic functions
Generic Function, program-parameters: Private generic functions
Generic Function, program-parameters: Private generic functions
Generic Function, program-scheduled-instructions: Private generic functions
Generic Function, program-scheduled_instructions: Private generic functions
Generic Function, program-waveforms: Private generic functions
Generic Function, program-waveforms: Private generic functions
Generic Function, pulse-detuning: Private generic functions
Generic Function, pulse-detuning: Private generic functions
Generic Function, pulse-frame: Private generic functions
Generic Function, pulse-frame: Private generic functions
Generic Function, pulse-phase: Private generic functions
Generic Function, pulse-phase: Private generic functions
Generic Function, pulse-scale: Private generic functions
Generic Function, pulse-scale: Private generic functions
Generic Function, pulse-waveform: Private generic functions
Generic Function, pulse-waveform: Private generic functions
Generic Function, py-quil-executable-response-attributes: Private generic functions
Generic Function, py-quil-executable-response-program: Private generic functions
Generic Function, pyquilexecutableresponse-attributes: Private generic functions
Generic Function, pyquilexecutableresponse-program: Private generic functions
Generic Function, qdo-fast-flux-channel-channel-index: Private generic functions
Generic Function, qdo-fast-flux-channel-delay: Private generic functions
Generic Function, qdo-fast-flux-channel-direction: Private generic functions
Generic Function, qdo-fast-flux-channel-flux-current: Private generic functions
Generic Function, qdo-sequencer-sequencer-index: Private generic functions
Generic Function, qdo-sequencer-tx-channel: Private generic functions
Generic Function, qdo-slow-flux-channel-channel-index: Private generic functions
Generic Function, qdo-slow-flux-channel-flux-current: Private generic functions
Generic Function, qdo-slow-flux-channel-relay-closed: Private generic functions
Generic Function, qdofastfluxchannel-channel_index: Private generic functions
Generic Function, qdofastfluxchannel-delay: Private generic functions
Generic Function, qdofastfluxchannel-direction: Private generic functions
Generic Function, qdofastfluxchannel-flux_current: Private generic functions
Generic Function, qdosequencer-sequencer_index: Private generic functions
Generic Function, qdosequencer-tx_channel: Private generic functions
Generic Function, qdoslowfluxchannel-channel_index: Private generic functions
Generic Function, qdoslowfluxchannel-flux_current: Private generic functions
Generic Function, qdoslowfluxchannel-relay_closed: Private generic functions
Generic Function, qf-dx-2-sequencer-sequencer-index: Private generic functions
Generic Function, qf-dx-2-sequencer-tx-channel: Private generic functions
Generic Function, qfd-channel-channel-index: Private generic functions
Generic Function, qfd-channel-delay: Private generic functions
Generic Function, qfd-channel-direction: Private generic functions
Generic Function, qfd-channel-flux-current: Private generic functions
Generic Function, qfd-channel-gain: Private generic functions
Generic Function, qfd-channel-nco-frequency: Private generic functions
Generic Function, qfd-channel-relay-closed: Private generic functions
Generic Function, qfd-sequencer-sequencer-index: Private generic functions
Generic Function, qfd-sequencer-tx-channel: Private generic functions
Generic Function, qfdchannel-channel_index: Private generic functions
Generic Function, qfdchannel-delay: Private generic functions
Generic Function, qfdchannel-direction: Private generic functions
Generic Function, qfdchannel-flux_current: Private generic functions
Generic Function, qfdchannel-gain: Private generic functions
Generic Function, qfdchannel-nco_frequency: Private generic functions
Generic Function, qfdchannel-relay_closed: Private generic functions
Generic Function, qfdsequencer-sequencer_index: Private generic functions
Generic Function, qfdsequencer-tx_channel: Private generic functions
Generic Function, qfdx2sequencer-sequencer_index: Private generic functions
Generic Function, qfdx2sequencer-tx_channel: Private generic functions
Generic Function, qg-sx-2-sequencer-sequencer-index: Private generic functions
Generic Function, qg-sx-2-sequencer-tx-channel: Private generic functions
Generic Function, qgs-channel-channel-index: Private generic functions
Generic Function, qgs-channel-delay: Private generic functions
Generic Function, qgs-channel-direction: Private generic functions
Generic Function, qgs-channel-gain: Private generic functions
Generic Function, qgs-channel-nco-frequency: Private generic functions
Generic Function, qgs-sequencer-sequencer-index: Private generic functions
Generic Function, qgs-sequencer-tx-channel: Private generic functions
Generic Function, qgschannel-channel_index: Private generic functions
Generic Function, qgschannel-delay: Private generic functions
Generic Function, qgschannel-direction: Private generic functions
Generic Function, qgschannel-gain: Private generic functions
Generic Function, qgschannel-nco_frequency: Private generic functions
Generic Function, qgssequencer-sequencer_index: Private generic functions
Generic Function, qgssequencer-tx_channel: Private generic functions
Generic Function, qgsx2sequencer-sequencer_index: Private generic functions
Generic Function, qgsx2sequencer-tx_channel: Private generic functions
Generic Function, qpu-chip-label: Private generic functions
Generic Function, qpu-chip_label: Private generic functions
Generic Function, qpu-controls: Private generic functions
Generic Function, qpu-controls: Private generic functions
Generic Function, qpu-controls-by-qubit: Private generic functions
Generic Function, qpu-controls_by_qubit: Private generic functions
Generic Function, qpu-qubits: Private generic functions
Generic Function, qpu-qubits: Private generic functions
Generic Function, qpu-request-id: Private generic functions
Generic Function, qpu-request-patch-values: Private generic functions
Generic Function, qpu-request-program: Private generic functions
Generic Function, qpurequest-id: Private generic functions
Generic Function, qpurequest-patch_values: Private generic functions
Generic Function, qpurequest-program: Private generic functions
Generic Function, qr-tx-2-sequencer-low-freq-range: Private generic functions
Generic Function, qr-tx-2-sequencer-sequencer-index: Private generic functions
Generic Function, qr-tx-2-sequencer-tx-channel: Private generic functions
Generic Function, qrr-channel-channel-index: Private generic functions
Generic Function, qrr-channel-delay: Private generic functions
Generic Function, qrr-channel-direction: Private generic functions
Generic Function, qrr-channel-gain: Private generic functions
Generic Function, qrr-channel-nco-frequency: Private generic functions
Generic Function, qrr-sequencer-rx-channel: Private generic functions
Generic Function, qrr-sequencer-sequencer-index: Private generic functions
Generic Function, qrrchannel-channel_index: Private generic functions
Generic Function, qrrchannel-delay: Private generic functions
Generic Function, qrrchannel-direction: Private generic functions
Generic Function, qrrchannel-gain: Private generic functions
Generic Function, qrrchannel-nco_frequency: Private generic functions
Generic Function, qrrsequencer-rx_channel: Private generic functions
Generic Function, qrrsequencer-sequencer_index: Private generic functions
Generic Function, qrt-channel-channel-index: Private generic functions
Generic Function, qrt-channel-delay: Private generic functions
Generic Function, qrt-channel-direction: Private generic functions
Generic Function, qrt-channel-gain: Private generic functions
Generic Function, qrt-channel-nco-frequency: Private generic functions
Generic Function, qrt-sequencer-low-freq-range: Private generic functions
Generic Function, qrt-sequencer-sequencer-index: Private generic functions
Generic Function, qrt-sequencer-tx-channel: Private generic functions
Generic Function, qrtchannel-channel_index: Private generic functions
Generic Function, qrtchannel-delay: Private generic functions
Generic Function, qrtchannel-direction: Private generic functions
Generic Function, qrtchannel-gain: Private generic functions
Generic Function, qrtchannel-nco_frequency: Private generic functions
Generic Function, qrtsequencer-low_freq_range: Private generic functions
Generic Function, qrtsequencer-sequencer_index: Private generic functions
Generic Function, qrtsequencer-tx_channel: Private generic functions
Generic Function, qrtx2sequencer-low_freq_range: Private generic functions
Generic Function, qrtx2sequencer-sequencer_index: Private generic functions
Generic Function, qrtx2sequencer-tx_channel: Private generic functions
Generic Function, quilt-binary-executable-request-num-shots: Private generic functions
Generic Function, quilt-binary-executable-request-quilt: Private generic functions
Generic Function, quilt-binary-executable-response-debug: Private generic functions
Generic Function, quilt-binary-executable-response-memory-descriptors: Private generic functions
Generic Function, quilt-binary-executable-response-program: Private generic functions
Generic Function, quilt-binary-executable-response-ro-sources: Private generic functions
Generic Function, quilt-calibrations-request-target-device: Private generic functions
Generic Function, quilt-calibrations-response-quilt: Private generic functions
Generic Function, quiltbinaryexecutablerequest-num_shots: Private generic functions
Generic Function, quiltbinaryexecutablerequest-quilt: Private generic functions
Generic Function, quiltbinaryexecutableresponse-debug: Private generic functions
Generic Function, quiltbinaryexecutableresponse-memory_descriptors: Private generic functions
Generic Function, quiltbinaryexecutableresponse-program: Private generic functions
Generic Function, quiltbinaryexecutableresponse-ro_sources: Private generic functions
Generic Function, quiltcalibrationsrequest-target_device: Private generic functions
Generic Function, quiltcalibrationsresponse-quilt: Private generic functions
Generic Function, rack-meta-rack-id: Private generic functions
Generic Function, rack-meta-rack-version: Private generic functions
Generic Function, rack-meta-schema-version: Private generic functions
Generic Function, rackmeta-rack_id: Private generic functions
Generic Function, rackmeta-rack_version: Private generic functions
Generic Function, rackmeta-schema_version: Private generic functions
Generic Function, randomized-benchmarking-request-depth: Private generic functions
Generic Function, randomized-benchmarking-request-gateset: Private generic functions
Generic Function, randomized-benchmarking-request-interleaver: Private generic functions
Generic Function, randomized-benchmarking-request-qubits: Private generic functions
Generic Function, randomized-benchmarking-request-seed: Private generic functions
Generic Function, randomized-benchmarking-response-sequence: Private generic functions
Generic Function, randomizedbenchmarkingrequest-depth: Private generic functions
Generic Function, randomizedbenchmarkingrequest-gateset: Private generic functions
Generic Function, randomizedbenchmarkingrequest-interleaver: Private generic functions
Generic Function, randomizedbenchmarkingrequest-qubits: Private generic functions
Generic Function, randomizedbenchmarkingrequest-seed: Private generic functions
Generic Function, randomizedbenchmarkingresponse-sequence: Private generic functions
Generic Function, receiver-channel: Private generic functions
Generic Function, receiver-channel: Private generic functions
Generic Function, receiver-data-axes: Private generic functions
Generic Function, receiver-data_axes: Private generic functions
Generic Function, receiver-instrument: Private generic functions
Generic Function, receiver-instrument: Private generic functions
Generic Function, receiver-publish: Private generic functions
Generic Function, receiver-publish: Private generic functions
Generic Function, receiver-stream: Private generic functions
Generic Function, receiver-stream: Private generic functions
Generic Function, resources-frames: Private generic functions
Generic Function, resources-frames: Private generic functions
Generic Function, resources-frames-to-controls: Private generic functions
Generic Function, resources-frames_to_controls: Private generic functions
Generic Function, resources-qubits: Private generic functions
Generic Function, resources-qubits: Private generic functions
Generic Function, rewrite-arithmetic-request-quil: Private generic functions
Generic Function, rewrite-arithmetic-response-original-memory-descriptors: Private generic functions
Generic Function, rewrite-arithmetic-response-quil: Private generic functions
Generic Function, rewrite-arithmetic-response-recalculation-table: Private generic functions
Generic Function, rewritearithmeticrequest-quil: Private generic functions
Generic Function, rewritearithmeticresponse-original_memory_descriptors: Private generic functions
Generic Function, rewritearithmeticresponse-quil: Private generic functions
Generic Function, rewritearithmeticresponse-recalculation_table: Private generic functions
Generic Function, rpc-error-error: Private generic functions
Generic Function, rpc-error-id: Private generic functions
Generic Function, rpc-error-jsonrpc: Private generic functions
Generic Function, rpc-error-request-id: Public generic functions
Generic Function, rpc-error-string: Public generic functions
Generic Function, rpc-error-warnings: Private generic functions
Generic Function, rpc-protocol-error-id: Public generic functions
Generic Function, rpc-protocol-error-object: Public generic functions
Generic Function, rpc-reply-id: Private generic functions
Generic Function, rpc-reply-jsonrpc: Private generic functions
Generic Function, rpc-reply-result: Private generic functions
Generic Function, rpc-reply-warnings: Private generic functions
Generic Function, rpc-request-client-key: Private generic functions
Generic Function, rpc-request-client-timeout: Private generic functions
Generic Function, rpc-request-id: Private generic functions
Generic Function, rpc-request-jsonrpc: Private generic functions
Generic Function, rpc-request-method: Private generic functions
Generic Function, rpc-request-params: Private generic functions
Generic Function, rpc-warning-body: Private generic functions
Generic Function, rpc-warning-kind: Private generic functions
Generic Function, rpcerror-error: Private generic functions
Generic Function, rpcerror-id: Private generic functions
Generic Function, rpcerror-jsonrpc: Private generic functions
Generic Function, rpcerror-warnings: Private generic functions
Generic Function, rpcreply-id: Private generic functions
Generic Function, rpcreply-jsonrpc: Private generic functions
Generic Function, rpcreply-result: Private generic functions
Generic Function, rpcreply-warnings: Private generic functions
Generic Function, rpcrequest-client_key: Private generic functions
Generic Function, rpcrequest-client_timeout: Private generic functions
Generic Function, rpcrequest-id: Private generic functions
Generic Function, rpcrequest-jsonrpc: Private generic functions
Generic Function, rpcrequest-method: Private generic functions
Generic Function, rpcrequest-params: Private generic functions
Generic Function, rpcwarning-body: Private generic functions
Generic Function, rpcwarning-kind: Private generic functions
Generic Function, schedule-ir-job-filter-pipeline: Private generic functions
Generic Function, schedule-ir-job-job-id: Private generic functions
Generic Function, schedule-ir-job-num-shots: Private generic functions
Generic Function, schedule-ir-job-operating-point: Private generic functions
Generic Function, schedule-ir-job-program: Private generic functions
Generic Function, schedule-ir-job-resources: Private generic functions
Generic Function, scheduleirjob-filter_pipeline: Private generic functions
Generic Function, scheduleirjob-job_id: Private generic functions
Generic Function, scheduleirjob-num_shots: Private generic functions
Generic Function, scheduleirjob-operating_point: Private generic functions
Generic Function, scheduleirjob-program: Private generic functions
Generic Function, scheduleirjob-resources: Private generic functions
Generic Function, set-frequency-frame: Private generic functions
Generic Function, set-frequency-frequency: Private generic functions
Generic Function, set-phase-frame: Private generic functions
Generic Function, set-phase-phase: Private generic functions
Generic Function, set-scale-frame: Private generic functions
Generic Function, set-scale-scale: Private generic functions
Generic Function, setfrequency-frame: Private generic functions
Generic Function, setfrequency-frequency: Private generic functions
Generic Function, setphase-frame: Private generic functions
Generic Function, setphase-phase: Private generic functions
Generic Function, setscale-frame: Private generic functions
Generic Function, setscale-scale: Private generic functions
Generic Function, shift-frequency-delta: Private generic functions
Generic Function, shift-frequency-frame: Private generic functions
Generic Function, shift-phase-delta: Private generic functions
Generic Function, shift-phase-frame: Private generic functions
Generic Function, shiftfrequency-delta: Private generic functions
Generic Function, shiftfrequency-frame: Private generic functions
Generic Function, shiftphase-delta: Private generic functions
Generic Function, shiftphase-frame: Private generic functions
Generic Function, swap-phases-frame-a: Private generic functions
Generic Function, swap-phases-frame-b: Private generic functions
Generic Function, swapphases-frame_a: Private generic functions
Generic Function, swapphases-frame_b: Private generic functions
Generic Function, target-device-isa: Private generic functions
Generic Function, target-device-specs: Private generic functions
Generic Function, targetdevice-isa: Private generic functions
Generic Function, targetdevice-specs: Private generic functions
Generic Function, template-kernel-bias: Private generic functions
Generic Function, template-kernel-detuning: Private generic functions
Generic Function, template-kernel-duration: Private generic functions
Generic Function, template-kernel-phase: Private generic functions
Generic Function, template-kernel-scale: Private generic functions
Generic Function, template-waveform-detuning: Private generic functions
Generic Function, template-waveform-duration: Private generic functions
Generic Function, template-waveform-phase: Private generic functions
Generic Function, template-waveform-scale: Private generic functions
Generic Function, templatekernel-bias: Private generic functions
Generic Function, templatekernel-detuning: Private generic functions
Generic Function, templatekernel-duration: Private generic functions
Generic Function, templatekernel-phase: Private generic functions
Generic Function, templatekernel-scale: Private generic functions
Generic Function, templatewaveform-detuning: Private generic functions
Generic Function, templatewaveform-duration: Private generic functions
Generic Function, templatewaveform-phase: Private generic functions
Generic Function, templatewaveform-scale: Private generic functions
Generic Function, time-bomb-chip-label: Private generic functions
Generic Function, time-bomb-deadline: Private generic functions
Generic Function, timebomb-chip_label: Private generic functions
Generic Function, timebomb-deadline: Private generic functions
Generic Function, unknown-rpc-method-name: Public generic functions
Generic Function, usi-card-sequencer-tx-channel: Private generic functions
Generic Function, usi-target-sequencer-rx-channel: Private generic functions
Generic Function, usi-target-sequencer-sequencer-index: Private generic functions
Generic Function, usi-target-sequencer-tx-channel: Private generic functions
Generic Function, usicardsequencer-tx_channel: Private generic functions
Generic Function, usitargetsequencer-rx_channel: Private generic functions
Generic Function, usitargetsequencer-sequencer_index: Private generic functions
Generic Function, usitargetsequencer-tx_channel: Private generic functions
Generic Function, vna-settings-averaging: Private generic functions
Generic Function, vna-settings-bandwidth: Private generic functions
Generic Function, vna-settings-e-delay: Private generic functions
Generic Function, vna-settings-freq-sweep: Private generic functions
Generic Function, vna-settings-phase-offset: Private generic functions
Generic Function, vna-settings-power: Private generic functions
Generic Function, vnasettings-averaging: Private generic functions
Generic Function, vnasettings-bandwidth: Private generic functions
Generic Function, vnasettings-e_delay: Private generic functions
Generic Function, vnasettings-freq_sweep: Private generic functions
Generic Function, vnasettings-phase_offset: Private generic functions
Generic Function, vnasettings-power: Private generic functions
Generic Function, waveform-iqs: Private generic functions
Generic Function, waveform-iqs: Private generic functions
get-execution-results-response-buffers: Private generic functions
get-execution-results-response-buffers: Private generic functions
get-execution-results-response-execution-duration-microseconds: Private generic functions
get-execution-results-response-execution-duration-microseconds: Private generic functions
getexecutionresultsresponse-buffers: Private generic functions
getexecutionresultsresponse-buffers: Private generic functions
getexecutionresultsresponse-execution_duration_microseconds: Private generic functions
getexecutionresultsresponse-execution_duration_microseconds: Private generic functions
global-function-p: Private ordinary functions

H
hermite-gaussian-waveform-alpha: Private generic functions
hermite-gaussian-waveform-alpha: Private generic functions
hermite-gaussian-waveform-anh: Private generic functions
hermite-gaussian-waveform-anh: Private generic functions
hermite-gaussian-waveform-fwhm: Private generic functions
hermite-gaussian-waveform-fwhm: Private generic functions
hermite-gaussian-waveform-second-order-hrm-coeff: Private generic functions
hermite-gaussian-waveform-second-order-hrm-coeff: Private generic functions
hermite-gaussian-waveform-t0: Private generic functions
hermite-gaussian-waveform-t0: Private generic functions
hermitegaussianwaveform-alpha: Private generic functions
hermitegaussianwaveform-alpha: Private generic functions
hermitegaussianwaveform-anh: Private generic functions
hermitegaussianwaveform-anh: Private generic functions
hermitegaussianwaveform-fwhm: Private generic functions
hermitegaussianwaveform-fwhm: Private generic functions
hermitegaussianwaveform-second_order_hrm_coeff: Private generic functions
hermitegaussianwaveform-second_order_hrm_coeff: Private generic functions
hermitegaussianwaveform-t0: Private generic functions
hermitegaussianwaveform-t0: Private generic functions

I
instruction-time: Private generic functions
instruction-time: Private generic functions
instruction-time: Private generic functions
instruction-time: Private generic functions
instrument-address: Private generic functions
instrument-address: Private generic functions
instrument-address: Private generic functions
instrument-address: Private generic functions
instrument-channels: Private generic functions
instrument-channels: Private generic functions
instrument-channels: Private generic functions
instrument-channels: Private generic functions
instrument-instrument-type: Private generic functions
instrument-instrument-type: Private generic functions
instrument-instrument_type: Private generic functions
instrument-instrument_type: Private generic functions
instrument-mnio-connections: Private generic functions
instrument-mnio-connections: Private generic functions
instrument-mnio_connections: Private generic functions
instrument-mnio_connections: Private generic functions
instrument-module: Private generic functions
instrument-module: Private generic functions
instrument-module: Private generic functions
instrument-module: Private generic functions
instrument-setup: Private generic functions
instrument-setup: Private generic functions
instrument-setup: Private generic functions
instrument-setup: Private generic functions
instrument-virtual: Private generic functions
instrument-virtual: Private generic functions
instrument-virtual: Private generic functions
instrument-virtual: Private generic functions

L
legacy-usrp-sequencer-rx-channel: Private generic functions
legacy-usrp-sequencer-rx-channel: Private generic functions
legacy-usrp-sequencer-tx-channel: Private generic functions
legacy-usrp-sequencer-tx-channel: Private generic functions
legacyusrpsequencer-rx_channel: Private generic functions
legacyusrpsequencer-rx_channel: Private generic functions
legacyusrpsequencer-tx_channel: Private generic functions
legacyusrpsequencer-tx_channel: Private generic functions
log-completion-message: Private ordinary functions

M
Macro, defmessage: Public macros
Macro, with-rpc-client: Public macros
Macro, with-unique-rpc-address: Public macros
make-client-auth-config: Public ordinary functions
make-dispatch-table: Public ordinary functions
make-rpc-client: Private ordinary functions
make-server-auth-config: Public ordinary functions
map-plist: Private ordinary functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%deserialize-struct: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %%serialize: Private generic functions
Method, %deserialize: Private generic functions
Method, %deserialize: Private generic functions
Method, %deserialize: Private generic functions
Method, %deserialize: Private generic functions
Method, %deserialize: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %deserialize-struct: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %print-slots: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, %serialize: Private generic functions
Method, (setf abstract-kernel-frame): Private generic functions
Method, (setf abstract-waveform-frame): Private generic functions
Method, (setf abstractkernel-frame): Private generic functions
Method, (setf abstractwaveform-frame): Private generic functions
Method, (setf active-reset-apply-feedback-when): Private generic functions
Method, (setf active-reset-attempts): Private generic functions
Method, (setf active-reset-feedback-duration): Private generic functions
Method, (setf active-reset-feedback-instructions): Private generic functions
Method, (setf active-reset-measurement-bit): Private generic functions
Method, (setf active-reset-measurement-duration): Private generic functions
Method, (setf active-reset-measurement-instructions): Private generic functions
Method, (setf active-reset-time): Private generic functions
Method, (setf activereset-apply_feedback_when): Private generic functions
Method, (setf activereset-attempts): Private generic functions
Method, (setf activereset-feedback_duration): Private generic functions
Method, (setf activereset-feedback_instructions): Private generic functions
Method, (setf activereset-measurement_bit): Private generic functions
Method, (setf activereset-measurement_duration): Private generic functions
Method, (setf activereset-measurement_instructions): Private generic functions
Method, (setf activereset-time): Private generic functions
Method, (setf awg-channel-delay): Private generic functions
Method, (setf awg-channel-direction): Private generic functions
Method, (setf awg-channel-gain): Private generic functions
Method, (setf awg-channel-lo-frequency): Private generic functions
Method, (setf awg-channel-sample-rate): Private generic functions
Method, (setf awgchannel-delay): Private generic functions
Method, (setf awgchannel-direction): Private generic functions
Method, (setf awgchannel-gain): Private generic functions
Method, (setf awgchannel-lo_frequency): Private generic functions
Method, (setf awgchannel-sample_rate): Private generic functions
Method, (setf binary-executable-request-num-shots): Private generic functions
Method, (setf binary-executable-request-quil): Private generic functions
Method, (setf binary-executable-response-memory-descriptors): Private generic functions
Method, (setf binary-executable-response-program): Private generic functions
Method, (setf binary-executable-response-ro-sources): Private generic functions
Method, (setf binaryexecutablerequest-num_shots): Private generic functions
Method, (setf binaryexecutablerequest-quil): Private generic functions
Method, (setf binaryexecutableresponse-memory_descriptors): Private generic functions
Method, (setf binaryexecutableresponse-program): Private generic functions
Method, (setf binaryexecutableresponse-ro_sources): Private generic functions
Method, (setf capture-detuning): Private generic functions
Method, (setf capture-detuning): Private generic functions
Method, (setf capture-duration): Private generic functions
Method, (setf capture-duration): Private generic functions
Method, (setf capture-filters): Private generic functions
Method, (setf capture-filters): Private generic functions
Method, (setf capture-frame): Private generic functions
Method, (setf capture-frame): Private generic functions
Method, (setf capture-phase): Private generic functions
Method, (setf capture-phase): Private generic functions
Method, (setf capture-send-to-host): Private generic functions
Method, (setf capture-send_to_host): Private generic functions
Method, (setf conjugate-by-clifford-request-clifford): Private generic functions
Method, (setf conjugate-by-clifford-request-pauli): Private generic functions
Method, (setf conjugate-by-clifford-response-pauli): Private generic functions
Method, (setf conjugate-by-clifford-response-phase): Private generic functions
Method, (setf conjugatebycliffordrequest-clifford): Private generic functions
Method, (setf conjugatebycliffordrequest-pauli): Private generic functions
Method, (setf conjugatebycliffordresponse-pauli): Private generic functions
Method, (setf conjugatebycliffordresponse-phase): Private generic functions
Method, (setf cw-channel-channel-index): Private generic functions
Method, (setf cw-channel-rf-output-enabled): Private generic functions
Method, (setf cw-channel-rf-output-frequency): Private generic functions
Method, (setf cw-channel-rf-output-power): Private generic functions
Method, (setf cw-frequency-sweep-measure): Private generic functions
Method, (setf cw-frequency-sweep-num-pts): Private generic functions
Method, (setf cw-frequency-sweep-source): Private generic functions
Method, (setf cw-frequency-sweep-start): Private generic functions
Method, (setf cw-frequency-sweep-stop): Private generic functions
Method, (setf cwchannel-channel_index): Private generic functions
Method, (setf cwchannel-rf_output_enabled): Private generic functions
Method, (setf cwchannel-rf_output_frequency): Private generic functions
Method, (setf cwchannel-rf_output_power): Private generic functions
Method, (setf cwfrequencysweep-measure): Private generic functions
Method, (setf cwfrequencysweep-num_pts): Private generic functions
Method, (setf cwfrequencysweep-source): Private generic functions
Method, (setf cwfrequencysweep-start): Private generic functions
Method, (setf cwfrequencysweep-stop): Private generic functions
Method, (setf data-axis-name): Private generic functions
Method, (setf data-axis-points): Private generic functions
Method, (setf dataaxis-name): Private generic functions
Method, (setf dataaxis-points): Private generic functions
Method, (setf debug-message-frame): Private generic functions
Method, (setf debug-message-message): Private generic functions
Method, (setf debugmessage-frame): Private generic functions
Method, (setf debugmessage-message): Private generic functions
Method, (setf deployed-rack-instruments): Private generic functions
Method, (setf deployed-rack-qpu): Private generic functions
Method, (setf deployed-rack-rack-meta): Private generic functions
Method, (setf deployedrack-instruments): Private generic functions
Method, (setf deployedrack-qpu): Private generic functions
Method, (setf deployedrack-rack_meta): Private generic functions
Method, (setf drag-gaussian-waveform-alpha): Private generic functions
Method, (setf drag-gaussian-waveform-anh): Private generic functions
Method, (setf drag-gaussian-waveform-fwhm): Private generic functions
Method, (setf drag-gaussian-waveform-t0): Private generic functions
Method, (setf draggaussianwaveform-alpha): Private generic functions
Method, (setf draggaussianwaveform-anh): Private generic functions
Method, (setf draggaussianwaveform-fwhm): Private generic functions
Method, (setf draggaussianwaveform-t0): Private generic functions
Method, (setf erf-square-waveform-pad-left): Private generic functions
Method, (setf erf-square-waveform-pad-right): Private generic functions
Method, (setf erf-square-waveform-risetime): Private generic functions
Method, (setf erfsquarewaveform-pad_left): Private generic functions
Method, (setf erfsquarewaveform-pad_right): Private generic functions
Method, (setf erfsquarewaveform-risetime): Private generic functions
Method, (setf executor-job-duration): Private generic functions
Method, (setf executor-job-filter-pipeline): Private generic functions
Method, (setf executor-job-instrument-settings): Private generic functions
Method, (setf executor-job-receivers): Private generic functions
Method, (setf executor-job-timebomb): Private generic functions
Method, (setf executorjob-duration): Private generic functions
Method, (setf executorjob-filter_pipeline): Private generic functions
Method, (setf executorjob-instrument_settings): Private generic functions
Method, (setf executorjob-receivers): Private generic functions
Method, (setf executorjob-timebomb): Private generic functions
Method, (setf filter-kernel-bias): Private generic functions
Method, (setf filter-kernel-iqs): Private generic functions
Method, (setf filter-node-filter-type): Private generic functions
Method, (setf filter-node-module): Private generic functions
Method, (setf filter-node-params): Private generic functions
Method, (setf filter-node-publish): Private generic functions
Method, (setf filter-node-source): Private generic functions
Method, (setf filterkernel-bias): Private generic functions
Method, (setf filterkernel-iqs): Private generic functions
Method, (setf filternode-filter_type): Private generic functions
Method, (setf filternode-module): Private generic functions
Method, (setf filternode-params): Private generic functions
Method, (setf filternode-publish): Private generic functions
Method, (setf filternode-source): Private generic functions
Method, (setf flat-pulse-detuning): Private generic functions
Method, (setf flat-pulse-duration): Private generic functions
Method, (setf flat-pulse-frame): Private generic functions
Method, (setf flat-pulse-iq): Private generic functions
Method, (setf flat-pulse-phase): Private generic functions
Method, (setf flat-pulse-scale): Private generic functions
Method, (setf flat-waveform-iq): Private generic functions
Method, (setf flatpulse-detuning): Private generic functions
Method, (setf flatpulse-duration): Private generic functions
Method, (setf flatpulse-frame): Private generic functions
Method, (setf flatpulse-iq): Private generic functions
Method, (setf flatpulse-phase): Private generic functions
Method, (setf flatpulse-scale): Private generic functions
Method, (setf flatwaveform-iq): Private generic functions
Method, (setf frame-direction): Private generic functions
Method, (setf frame-direction): Private generic functions
Method, (setf frame-frequency): Private generic functions
Method, (setf frame-frequency): Private generic functions
Method, (setf frame-sample-rate): Private generic functions
Method, (setf frame-sample_rate): Private generic functions
Method, (setf gaussian-waveform-fwhm): Private generic functions
Method, (setf gaussian-waveform-t0): Private generic functions
Method, (setf gaussianwaveform-fwhm): Private generic functions
Method, (setf gaussianwaveform-t0): Private generic functions
Method, (setf get-execution-results-response-buffers): Private generic functions
Method, (setf get-execution-results-response-execution-duration-microseconds): Private generic functions
Method, (setf getexecutionresultsresponse-buffers): Private generic functions
Method, (setf getexecutionresultsresponse-execution_duration_microseconds): Private generic functions
Method, (setf hermite-gaussian-waveform-alpha): Private generic functions
Method, (setf hermite-gaussian-waveform-anh): Private generic functions
Method, (setf hermite-gaussian-waveform-fwhm): Private generic functions
Method, (setf hermite-gaussian-waveform-second-order-hrm-coeff): Private generic functions
Method, (setf hermite-gaussian-waveform-t0): Private generic functions
Method, (setf hermitegaussianwaveform-alpha): Private generic functions
Method, (setf hermitegaussianwaveform-anh): Private generic functions
Method, (setf hermitegaussianwaveform-fwhm): Private generic functions
Method, (setf hermitegaussianwaveform-second_order_hrm_coeff): Private generic functions
Method, (setf hermitegaussianwaveform-t0): Private generic functions
Method, (setf instruction-time): Private generic functions
Method, (setf instruction-time): Private generic functions
Method, (setf instrument-address): Private generic functions
Method, (setf instrument-address): Private generic functions
Method, (setf instrument-channels): Private generic functions
Method, (setf instrument-channels): Private generic functions
Method, (setf instrument-instrument-type): Private generic functions
Method, (setf instrument-instrument_type): Private generic functions
Method, (setf instrument-mnio-connections): Private generic functions
Method, (setf instrument-mnio_connections): Private generic functions
Method, (setf instrument-module): Private generic functions
Method, (setf instrument-module): Private generic functions
Method, (setf instrument-setup): Private generic functions
Method, (setf instrument-setup): Private generic functions
Method, (setf instrument-virtual): Private generic functions
Method, (setf instrument-virtual): Private generic functions
Method, (setf legacy-usrp-sequencer-rx-channel): Private generic functions
Method, (setf legacy-usrp-sequencer-tx-channel): Private generic functions
Method, (setf legacyusrpsequencer-rx_channel): Private generic functions
Method, (setf legacyusrpsequencer-tx_channel): Private generic functions
Method, (setf microwave-source-settings-frequency): Private generic functions
Method, (setf microwave-source-settings-output): Private generic functions
Method, (setf microwave-source-settings-power): Private generic functions
Method, (setf microwavesourcesettings-frequency): Private generic functions
Method, (setf microwavesourcesettings-output): Private generic functions
Method, (setf microwavesourcesettings-power): Private generic functions
Method, (setf mnio-connection-destination): Private generic functions
Method, (setf mnio-connection-port): Private generic functions
Method, (setf mnioconnection-destination): Private generic functions
Method, (setf mnioconnection-port): Private generic functions
Method, (setf native-quil-metadata-final-rewiring): Private generic functions
Method, (setf native-quil-metadata-gate-depth): Private generic functions
Method, (setf native-quil-metadata-gate-volume): Private generic functions
Method, (setf native-quil-metadata-multiqubit-gate-depth): Private generic functions
Method, (setf native-quil-metadata-program-duration): Private generic functions
Method, (setf native-quil-metadata-program-fidelity): Private generic functions
Method, (setf native-quil-metadata-qpu-runtime-estimation): Private generic functions
Method, (setf native-quil-metadata-topological-swaps): Private generic functions
Method, (setf native-quil-request-quil): Private generic functions
Method, (setf native-quil-request-target-device): Private generic functions
Method, (setf native-quil-response-metadata): Private generic functions
Method, (setf native-quil-response-quil): Private generic functions
Method, (setf nativequilmetadata-final_rewiring): Private generic functions
Method, (setf nativequilmetadata-gate_depth): Private generic functions
Method, (setf nativequilmetadata-gate_volume): Private generic functions
Method, (setf nativequilmetadata-multiqubit_gate_depth): Private generic functions
Method, (setf nativequilmetadata-program_duration): Private generic functions
Method, (setf nativequilmetadata-program_fidelity): Private generic functions
Method, (setf nativequilmetadata-qpu_runtime_estimation): Private generic functions
Method, (setf nativequilmetadata-topological_swaps): Private generic functions
Method, (setf nativequilrequest-quil): Private generic functions
Method, (setf nativequilrequest-target_device): Private generic functions
Method, (setf nativequilresponse-metadata): Private generic functions
Method, (setf nativequilresponse-quil): Private generic functions
Method, (setf parameter-aref-index): Private generic functions
Method, (setf parameter-aref-name): Private generic functions
Method, (setf parameter-expression-a): Private generic functions
Method, (setf parameter-expression-b): Private generic functions
Method, (setf parameter-expression-operator): Private generic functions
Method, (setf parameter-spec-length): Private generic functions
Method, (setf parameter-spec-type): Private generic functions
Method, (setf parameteraref-index): Private generic functions
Method, (setf parameteraref-name): Private generic functions
Method, (setf parameterexpression-a): Private generic functions
Method, (setf parameterexpression-b): Private generic functions
Method, (setf parameterexpression-operator): Private generic functions
Method, (setf parameterspec-length): Private generic functions
Method, (setf parameterspec-type): Private generic functions
Method, (setf patch-target-patch-offset): Private generic functions
Method, (setf patch-target-patch-type): Private generic functions
Method, (setf patchable-binary-base-binary): Private generic functions
Method, (setf patchable-binary-patch-table): Private generic functions
Method, (setf patchablebinary-base_binary): Private generic functions
Method, (setf patchablebinary-patch_table): Private generic functions
Method, (setf patchtarget-patch_offset): Private generic functions
Method, (setf patchtarget-patch_type): Private generic functions
Method, (setf pauli-term-indices): Private generic functions
Method, (setf pauli-term-symbols): Private generic functions
Method, (setf pauliterm-indices): Private generic functions
Method, (setf pauliterm-symbols): Private generic functions
Method, (setf program-filters): Private generic functions
Method, (setf program-filters): Private generic functions
Method, (setf program-parameters): Private generic functions
Method, (setf program-parameters): Private generic functions
Method, (setf program-scheduled-instructions): Private generic functions
Method, (setf program-scheduled_instructions): Private generic functions
Method, (setf program-waveforms): Private generic functions
Method, (setf program-waveforms): Private generic functions
Method, (setf pulse-detuning): Private generic functions
Method, (setf pulse-detuning): Private generic functions
Method, (setf pulse-frame): Private generic functions
Method, (setf pulse-frame): Private generic functions
Method, (setf pulse-phase): Private generic functions
Method, (setf pulse-phase): Private generic functions
Method, (setf pulse-scale): Private generic functions
Method, (setf pulse-scale): Private generic functions
Method, (setf pulse-waveform): Private generic functions
Method, (setf pulse-waveform): Private generic functions
Method, (setf py-quil-executable-response-attributes): Private generic functions
Method, (setf py-quil-executable-response-program): Private generic functions
Method, (setf pyquilexecutableresponse-attributes): Private generic functions
Method, (setf pyquilexecutableresponse-program): Private generic functions
Method, (setf qdo-fast-flux-channel-channel-index): Private generic functions
Method, (setf qdo-fast-flux-channel-delay): Private generic functions
Method, (setf qdo-fast-flux-channel-direction): Private generic functions
Method, (setf qdo-fast-flux-channel-flux-current): Private generic functions
Method, (setf qdo-sequencer-sequencer-index): Private generic functions
Method, (setf qdo-sequencer-tx-channel): Private generic functions
Method, (setf qdo-slow-flux-channel-channel-index): Private generic functions
Method, (setf qdo-slow-flux-channel-flux-current): Private generic functions
Method, (setf qdo-slow-flux-channel-relay-closed): Private generic functions
Method, (setf qdofastfluxchannel-channel_index): Private generic functions
Method, (setf qdofastfluxchannel-delay): Private generic functions
Method, (setf qdofastfluxchannel-direction): Private generic functions
Method, (setf qdofastfluxchannel-flux_current): Private generic functions
Method, (setf qdosequencer-sequencer_index): Private generic functions
Method, (setf qdosequencer-tx_channel): Private generic functions
Method, (setf qdoslowfluxchannel-channel_index): Private generic functions
Method, (setf qdoslowfluxchannel-flux_current): Private generic functions
Method, (setf qdoslowfluxchannel-relay_closed): Private generic functions
Method, (setf qf-dx-2-sequencer-sequencer-index): Private generic functions
Method, (setf qf-dx-2-sequencer-tx-channel): Private generic functions
Method, (setf qfd-channel-channel-index): Private generic functions
Method, (setf qfd-channel-delay): Private generic functions
Method, (setf qfd-channel-direction): Private generic functions
Method, (setf qfd-channel-flux-current): Private generic functions
Method, (setf qfd-channel-gain): Private generic functions
Method, (setf qfd-channel-nco-frequency): Private generic functions
Method, (setf qfd-channel-relay-closed): Private generic functions
Method, (setf qfd-sequencer-sequencer-index): Private generic functions
Method, (setf qfd-sequencer-tx-channel): Private generic functions
Method, (setf qfdchannel-channel_index): Private generic functions
Method, (setf qfdchannel-delay): Private generic functions
Method, (setf qfdchannel-direction): Private generic functions
Method, (setf qfdchannel-flux_current): Private generic functions
Method, (setf qfdchannel-gain): Private generic functions
Method, (setf qfdchannel-nco_frequency): Private generic functions
Method, (setf qfdchannel-relay_closed): Private generic functions
Method, (setf qfdsequencer-sequencer_index): Private generic functions
Method, (setf qfdsequencer-tx_channel): Private generic functions
Method, (setf qfdx2sequencer-sequencer_index): Private generic functions
Method, (setf qfdx2sequencer-tx_channel): Private generic functions
Method, (setf qg-sx-2-sequencer-sequencer-index): Private generic functions
Method, (setf qg-sx-2-sequencer-tx-channel): Private generic functions
Method, (setf qgs-channel-channel-index): Private generic functions
Method, (setf qgs-channel-delay): Private generic functions
Method, (setf qgs-channel-direction): Private generic functions
Method, (setf qgs-channel-gain): Private generic functions
Method, (setf qgs-channel-nco-frequency): Private generic functions
Method, (setf qgs-sequencer-sequencer-index): Private generic functions
Method, (setf qgs-sequencer-tx-channel): Private generic functions
Method, (setf qgschannel-channel_index): Private generic functions
Method, (setf qgschannel-delay): Private generic functions
Method, (setf qgschannel-direction): Private generic functions
Method, (setf qgschannel-gain): Private generic functions
Method, (setf qgschannel-nco_frequency): Private generic functions
Method, (setf qgssequencer-sequencer_index): Private generic functions
Method, (setf qgssequencer-tx_channel): Private generic functions
Method, (setf qgsx2sequencer-sequencer_index): Private generic functions
Method, (setf qgsx2sequencer-tx_channel): Private generic functions
Method, (setf qpu-chip-label): Private generic functions
Method, (setf qpu-chip_label): Private generic functions
Method, (setf qpu-controls): Private generic functions
Method, (setf qpu-controls): Private generic functions
Method, (setf qpu-controls-by-qubit): Private generic functions
Method, (setf qpu-controls_by_qubit): Private generic functions
Method, (setf qpu-qubits): Private generic functions
Method, (setf qpu-qubits): Private generic functions
Method, (setf qpu-request-id): Private generic functions
Method, (setf qpu-request-patch-values): Private generic functions
Method, (setf qpu-request-program): Private generic functions
Method, (setf qpurequest-id): Private generic functions
Method, (setf qpurequest-patch_values): Private generic functions
Method, (setf qpurequest-program): Private generic functions
Method, (setf qr-tx-2-sequencer-low-freq-range): Private generic functions
Method, (setf qr-tx-2-sequencer-sequencer-index): Private generic functions
Method, (setf qr-tx-2-sequencer-tx-channel): Private generic functions
Method, (setf qrr-channel-channel-index): Private generic functions
Method, (setf qrr-channel-delay): Private generic functions
Method, (setf qrr-channel-direction): Private generic functions
Method, (setf qrr-channel-gain): Private generic functions
Method, (setf qrr-channel-nco-frequency): Private generic functions
Method, (setf qrr-sequencer-rx-channel): Private generic functions
Method, (setf qrr-sequencer-sequencer-index): Private generic functions
Method, (setf qrrchannel-channel_index): Private generic functions
Method, (setf qrrchannel-delay): Private generic functions
Method, (setf qrrchannel-direction): Private generic functions
Method, (setf qrrchannel-gain): Private generic functions
Method, (setf qrrchannel-nco_frequency): Private generic functions
Method, (setf qrrsequencer-rx_channel): Private generic functions
Method, (setf qrrsequencer-sequencer_index): Private generic functions
Method, (setf qrt-channel-channel-index): Private generic functions
Method, (setf qrt-channel-delay): Private generic functions
Method, (setf qrt-channel-direction): Private generic functions
Method, (setf qrt-channel-gain): Private generic functions
Method, (setf qrt-channel-nco-frequency): Private generic functions
Method, (setf qrt-sequencer-low-freq-range): Private generic functions
Method, (setf qrt-sequencer-sequencer-index): Private generic functions
Method, (setf qrt-sequencer-tx-channel): Private generic functions
Method, (setf qrtchannel-channel_index): Private generic functions
Method, (setf qrtchannel-delay): Private generic functions
Method, (setf qrtchannel-direction): Private generic functions
Method, (setf qrtchannel-gain): Private generic functions
Method, (setf qrtchannel-nco_frequency): Private generic functions
Method, (setf qrtsequencer-low_freq_range): Private generic functions
Method, (setf qrtsequencer-sequencer_index): Private generic functions
Method, (setf qrtsequencer-tx_channel): Private generic functions
Method, (setf qrtx2sequencer-low_freq_range): Private generic functions
Method, (setf qrtx2sequencer-sequencer_index): Private generic functions
Method, (setf qrtx2sequencer-tx_channel): Private generic functions
Method, (setf quilt-binary-executable-request-num-shots): Private generic functions
Method, (setf quilt-binary-executable-request-quilt): Private generic functions
Method, (setf quilt-binary-executable-response-debug): Private generic functions
Method, (setf quilt-binary-executable-response-memory-descriptors): Private generic functions
Method, (setf quilt-binary-executable-response-program): Private generic functions
Method, (setf quilt-binary-executable-response-ro-sources): Private generic functions
Method, (setf quilt-calibrations-request-target-device): Private generic functions
Method, (setf quilt-calibrations-response-quilt): Private generic functions
Method, (setf quiltbinaryexecutablerequest-num_shots): Private generic functions
Method, (setf quiltbinaryexecutablerequest-quilt): Private generic functions
Method, (setf quiltbinaryexecutableresponse-debug): Private generic functions
Method, (setf quiltbinaryexecutableresponse-memory_descriptors): Private generic functions
Method, (setf quiltbinaryexecutableresponse-program): Private generic functions
Method, (setf quiltbinaryexecutableresponse-ro_sources): Private generic functions
Method, (setf quiltcalibrationsrequest-target_device): Private generic functions
Method, (setf quiltcalibrationsresponse-quilt): Private generic functions
Method, (setf rack-meta-rack-id): Private generic functions
Method, (setf rack-meta-rack-version): Private generic functions
Method, (setf rack-meta-schema-version): Private generic functions
Method, (setf rackmeta-rack_id): Private generic functions
Method, (setf rackmeta-rack_version): Private generic functions
Method, (setf rackmeta-schema_version): Private generic functions
Method, (setf randomized-benchmarking-request-depth): Private generic functions
Method, (setf randomized-benchmarking-request-gateset): Private generic functions
Method, (setf randomized-benchmarking-request-interleaver): Private generic functions
Method, (setf randomized-benchmarking-request-qubits): Private generic functions
Method, (setf randomized-benchmarking-request-seed): Private generic functions
Method, (setf randomized-benchmarking-response-sequence): Private generic functions
Method, (setf randomizedbenchmarkingrequest-depth): Private generic functions
Method, (setf randomizedbenchmarkingrequest-gateset): Private generic functions
Method, (setf randomizedbenchmarkingrequest-interleaver): Private generic functions
Method, (setf randomizedbenchmarkingrequest-qubits): Private generic functions
Method, (setf randomizedbenchmarkingrequest-seed): Private generic functions
Method, (setf randomizedbenchmarkingresponse-sequence): Private generic functions
Method, (setf receiver-channel): Private generic functions
Method, (setf receiver-channel): Private generic functions
Method, (setf receiver-data-axes): Private generic functions
Method, (setf receiver-data_axes): Private generic functions
Method, (setf receiver-instrument): Private generic functions
Method, (setf receiver-instrument): Private generic functions
Method, (setf receiver-publish): Private generic functions
Method, (setf receiver-publish): Private generic functions
Method, (setf receiver-stream): Private generic functions
Method, (setf receiver-stream): Private generic functions
Method, (setf resources-frames): Private generic functions
Method, (setf resources-frames): Private generic functions
Method, (setf resources-frames-to-controls): Private generic functions
Method, (setf resources-frames_to_controls): Private generic functions
Method, (setf resources-qubits): Private generic functions
Method, (setf resources-qubits): Private generic functions
Method, (setf rewrite-arithmetic-request-quil): Private generic functions
Method, (setf rewrite-arithmetic-response-original-memory-descriptors): Private generic functions
Method, (setf rewrite-arithmetic-response-quil): Private generic functions
Method, (setf rewrite-arithmetic-response-recalculation-table): Private generic functions
Method, (setf rewritearithmeticrequest-quil): Private generic functions
Method, (setf rewritearithmeticresponse-original_memory_descriptors): Private generic functions
Method, (setf rewritearithmeticresponse-quil): Private generic functions
Method, (setf rewritearithmeticresponse-recalculation_table): Private generic functions
Method, (setf rpc-error-error): Private generic functions
Method, (setf rpc-error-id): Private generic functions
Method, (setf rpc-error-jsonrpc): Private generic functions
Method, (setf rpc-error-warnings): Private generic functions
Method, (setf rpc-reply-id): Private generic functions
Method, (setf rpc-reply-jsonrpc): Private generic functions
Method, (setf rpc-reply-result): Private generic functions
Method, (setf rpc-reply-warnings): Private generic functions
Method, (setf rpc-request-client-key): Private generic functions
Method, (setf rpc-request-client-timeout): Private generic functions
Method, (setf rpc-request-id): Private generic functions
Method, (setf rpc-request-jsonrpc): Private generic functions
Method, (setf rpc-request-method): Private generic functions
Method, (setf rpc-request-params): Private generic functions
Method, (setf rpc-warning-body): Private generic functions
Method, (setf rpc-warning-kind): Private generic functions
Method, (setf rpcerror-error): Private generic functions
Method, (setf rpcerror-id): Private generic functions
Method, (setf rpcerror-jsonrpc): Private generic functions
Method, (setf rpcerror-warnings): Private generic functions
Method, (setf rpcreply-id): Private generic functions
Method, (setf rpcreply-jsonrpc): Private generic functions
Method, (setf rpcreply-result): Private generic functions
Method, (setf rpcreply-warnings): Private generic functions
Method, (setf rpcrequest-client_key): Private generic functions
Method, (setf rpcrequest-client_timeout): Private generic functions
Method, (setf rpcrequest-id): Private generic functions
Method, (setf rpcrequest-jsonrpc): Private generic functions
Method, (setf rpcrequest-method): Private generic functions
Method, (setf rpcrequest-params): Private generic functions
Method, (setf rpcwarning-body): Private generic functions
Method, (setf rpcwarning-kind): Private generic functions
Method, (setf schedule-ir-job-filter-pipeline): Private generic functions
Method, (setf schedule-ir-job-job-id): Private generic functions
Method, (setf schedule-ir-job-num-shots): Private generic functions
Method, (setf schedule-ir-job-operating-point): Private generic functions
Method, (setf schedule-ir-job-program): Private generic functions
Method, (setf schedule-ir-job-resources): Private generic functions
Method, (setf scheduleirjob-filter_pipeline): Private generic functions
Method, (setf scheduleirjob-job_id): Private generic functions
Method, (setf scheduleirjob-num_shots): Private generic functions
Method, (setf scheduleirjob-operating_point): Private generic functions
Method, (setf scheduleirjob-program): Private generic functions
Method, (setf scheduleirjob-resources): Private generic functions
Method, (setf set-frequency-frame): Private generic functions
Method, (setf set-frequency-frequency): Private generic functions
Method, (setf set-phase-frame): Private generic functions
Method, (setf set-phase-phase): Private generic functions
Method, (setf set-scale-frame): Private generic functions
Method, (setf set-scale-scale): Private generic functions
Method, (setf setfrequency-frame): Private generic functions
Method, (setf setfrequency-frequency): Private generic functions
Method, (setf setphase-frame): Private generic functions
Method, (setf setphase-phase): Private generic functions
Method, (setf setscale-frame): Private generic functions
Method, (setf setscale-scale): Private generic functions
Method, (setf shift-frequency-delta): Private generic functions
Method, (setf shift-frequency-frame): Private generic functions
Method, (setf shift-phase-delta): Private generic functions
Method, (setf shift-phase-frame): Private generic functions
Method, (setf shiftfrequency-delta): Private generic functions
Method, (setf shiftfrequency-frame): Private generic functions
Method, (setf shiftphase-delta): Private generic functions
Method, (setf shiftphase-frame): Private generic functions
Method, (setf swap-phases-frame-a): Private generic functions
Method, (setf swap-phases-frame-b): Private generic functions
Method, (setf swapphases-frame_a): Private generic functions
Method, (setf swapphases-frame_b): Private generic functions
Method, (setf target-device-isa): Private generic functions
Method, (setf target-device-specs): Private generic functions
Method, (setf targetdevice-isa): Private generic functions
Method, (setf targetdevice-specs): Private generic functions
Method, (setf template-kernel-bias): Private generic functions
Method, (setf template-kernel-detuning): Private generic functions
Method, (setf template-kernel-duration): Private generic functions
Method, (setf template-kernel-phase): Private generic functions
Method, (setf template-kernel-scale): Private generic functions
Method, (setf template-waveform-detuning): Private generic functions
Method, (setf template-waveform-duration): Private generic functions
Method, (setf template-waveform-phase): Private generic functions
Method, (setf template-waveform-scale): Private generic functions
Method, (setf templatekernel-bias): Private generic functions
Method, (setf templatekernel-detuning): Private generic functions
Method, (setf templatekernel-duration): Private generic functions
Method, (setf templatekernel-phase): Private generic functions
Method, (setf templatekernel-scale): Private generic functions
Method, (setf templatewaveform-detuning): Private generic functions
Method, (setf templatewaveform-duration): Private generic functions
Method, (setf templatewaveform-phase): Private generic functions
Method, (setf templatewaveform-scale): Private generic functions
Method, (setf time-bomb-chip-label): Private generic functions
Method, (setf time-bomb-deadline): Private generic functions
Method, (setf timebomb-chip_label): Private generic functions
Method, (setf timebomb-deadline): Private generic functions
Method, (setf usi-card-sequencer-tx-channel): Private generic functions
Method, (setf usi-target-sequencer-rx-channel): Private generic functions
Method, (setf usi-target-sequencer-sequencer-index): Private generic functions
Method, (setf usi-target-sequencer-tx-channel): Private generic functions
Method, (setf usicardsequencer-tx_channel): Private generic functions
Method, (setf usitargetsequencer-rx_channel): Private generic functions
Method, (setf usitargetsequencer-sequencer_index): Private generic functions
Method, (setf usitargetsequencer-tx_channel): Private generic functions
Method, (setf vna-settings-averaging): Private generic functions
Method, (setf vna-settings-bandwidth): Private generic functions
Method, (setf vna-settings-e-delay): Private generic functions
Method, (setf vna-settings-freq-sweep): Private generic functions
Method, (setf vna-settings-phase-offset): Private generic functions
Method, (setf vna-settings-power): Private generic functions
Method, (setf vnasettings-averaging): Private generic functions
Method, (setf vnasettings-bandwidth): Private generic functions
Method, (setf vnasettings-e_delay): Private generic functions
Method, (setf vnasettings-freq_sweep): Private generic functions
Method, (setf vnasettings-phase_offset): Private generic functions
Method, (setf vnasettings-power): Private generic functions
Method, (setf waveform-iqs): Private generic functions
Method, (setf waveform-iqs): Private generic functions
Method, abstract-kernel-frame: Private generic functions
Method, abstract-waveform-frame: Private generic functions
Method, abstractkernel-frame: Private generic functions
Method, abstractwaveform-frame: Private generic functions
Method, active-reset-apply-feedback-when: Private generic functions
Method, active-reset-attempts: Private generic functions
Method, active-reset-feedback-duration: Private generic functions
Method, active-reset-feedback-instructions: Private generic functions
Method, active-reset-measurement-bit: Private generic functions
Method, active-reset-measurement-duration: Private generic functions
Method, active-reset-measurement-instructions: Private generic functions
Method, active-reset-time: Private generic functions
Method, activereset-apply_feedback_when: Private generic functions
Method, activereset-attempts: Private generic functions
Method, activereset-feedback_duration: Private generic functions
Method, activereset-feedback_instructions: Private generic functions
Method, activereset-measurement_bit: Private generic functions
Method, activereset-measurement_duration: Private generic functions
Method, activereset-measurement_instructions: Private generic functions
Method, activereset-time: Private generic functions
Method, awg-channel-delay: Private generic functions
Method, awg-channel-direction: Private generic functions
Method, awg-channel-gain: Private generic functions
Method, awg-channel-lo-frequency: Private generic functions
Method, awg-channel-sample-rate: Private generic functions
Method, awgchannel-delay: Private generic functions
Method, awgchannel-direction: Private generic functions
Method, awgchannel-gain: Private generic functions
Method, awgchannel-lo_frequency: Private generic functions
Method, awgchannel-sample_rate: Private generic functions
Method, binary-executable-request-num-shots: Private generic functions
Method, binary-executable-request-quil: Private generic functions
Method, binary-executable-response-memory-descriptors: Private generic functions
Method, binary-executable-response-program: Private generic functions
Method, binary-executable-response-ro-sources: Private generic functions
Method, binaryexecutablerequest-num_shots: Private generic functions
Method, binaryexecutablerequest-quil: Private generic functions
Method, binaryexecutableresponse-memory_descriptors: Private generic functions
Method, binaryexecutableresponse-program: Private generic functions
Method, binaryexecutableresponse-ro_sources: Private generic functions
Method, capture-detuning: Private generic functions
Method, capture-detuning: Private generic functions
Method, capture-duration: Private generic functions
Method, capture-duration: Private generic functions
Method, capture-filters: Private generic functions
Method, capture-filters: Private generic functions
Method, capture-frame: Private generic functions
Method, capture-frame: Private generic functions
Method, capture-phase: Private generic functions
Method, capture-phase: Private generic functions
Method, capture-send-to-host: Private generic functions
Method, capture-send_to_host: Private generic functions
Method, conjugate-by-clifford-request-clifford: Private generic functions
Method, conjugate-by-clifford-request-pauli: Private generic functions
Method, conjugate-by-clifford-response-pauli: Private generic functions
Method, conjugate-by-clifford-response-phase: Private generic functions
Method, conjugatebycliffordrequest-clifford: Private generic functions
Method, conjugatebycliffordrequest-pauli: Private generic functions
Method, conjugatebycliffordresponse-pauli: Private generic functions
Method, conjugatebycliffordresponse-phase: Private generic functions
Method, cw-channel-channel-index: Private generic functions
Method, cw-channel-rf-output-enabled: Private generic functions
Method, cw-channel-rf-output-frequency: Private generic functions
Method, cw-channel-rf-output-power: Private generic functions
Method, cw-frequency-sweep-measure: Private generic functions
Method, cw-frequency-sweep-num-pts: Private generic functions
Method, cw-frequency-sweep-source: Private generic functions
Method, cw-frequency-sweep-start: Private generic functions
Method, cw-frequency-sweep-stop: Private generic functions
Method, cwchannel-channel_index: Private generic functions
Method, cwchannel-rf_output_enabled: Private generic functions
Method, cwchannel-rf_output_frequency: Private generic functions
Method, cwchannel-rf_output_power: Private generic functions
Method, cwfrequencysweep-measure: Private generic functions
Method, cwfrequencysweep-num_pts: Private generic functions
Method, cwfrequencysweep-source: Private generic functions
Method, cwfrequencysweep-start: Private generic functions
Method, cwfrequencysweep-stop: Private generic functions
Method, data-axis-name: Private generic functions
Method, data-axis-points: Private generic functions
Method, dataaxis-name: Private generic functions
Method, dataaxis-points: Private generic functions
Method, debug-message-frame: Private generic functions
Method, debug-message-message: Private generic functions
Method, debugmessage-frame: Private generic functions
Method, debugmessage-message: Private generic functions
Method, deployed-rack-instruments: Private generic functions
Method, deployed-rack-qpu: Private generic functions
Method, deployed-rack-rack-meta: Private generic functions
Method, deployedrack-instruments: Private generic functions
Method, deployedrack-qpu: Private generic functions
Method, deployedrack-rack_meta: Private generic functions
Method, drag-gaussian-waveform-alpha: Private generic functions
Method, drag-gaussian-waveform-anh: Private generic functions
Method, drag-gaussian-waveform-fwhm: Private generic functions
Method, drag-gaussian-waveform-t0: Private generic functions
Method, draggaussianwaveform-alpha: Private generic functions
Method, draggaussianwaveform-anh: Private generic functions
Method, draggaussianwaveform-fwhm: Private generic functions
Method, draggaussianwaveform-t0: Private generic functions
Method, erf-square-waveform-pad-left: Private generic functions
Method, erf-square-waveform-pad-right: Private generic functions
Method, erf-square-waveform-risetime: Private generic functions
Method, erfsquarewaveform-pad_left: Private generic functions
Method, erfsquarewaveform-pad_right: Private generic functions
Method, erfsquarewaveform-risetime: Private generic functions
Method, executor-job-duration: Private generic functions
Method, executor-job-filter-pipeline: Private generic functions
Method, executor-job-instrument-settings: Private generic functions
Method, executor-job-receivers: Private generic functions
Method, executor-job-timebomb: Private generic functions
Method, executorjob-duration: Private generic functions
Method, executorjob-filter_pipeline: Private generic functions
Method, executorjob-instrument_settings: Private generic functions
Method, executorjob-receivers: Private generic functions
Method, executorjob-timebomb: Private generic functions
Method, filter-kernel-bias: Private generic functions
Method, filter-kernel-iqs: Private generic functions
Method, filter-node-filter-type: Private generic functions
Method, filter-node-module: Private generic functions
Method, filter-node-params: Private generic functions
Method, filter-node-publish: Private generic functions
Method, filter-node-source: Private generic functions
Method, filterkernel-bias: Private generic functions
Method, filterkernel-iqs: Private generic functions
Method, filternode-filter_type: Private generic functions
Method, filternode-module: Private generic functions
Method, filternode-params: Private generic functions
Method, filternode-publish: Private generic functions
Method, filternode-source: Private generic functions
Method, flat-pulse-detuning: Private generic functions
Method, flat-pulse-duration: Private generic functions
Method, flat-pulse-frame: Private generic functions
Method, flat-pulse-iq: Private generic functions
Method, flat-pulse-phase: Private generic functions
Method, flat-pulse-scale: Private generic functions
Method, flat-waveform-iq: Private generic functions
Method, flatpulse-detuning: Private generic functions
Method, flatpulse-duration: Private generic functions
Method, flatpulse-frame: Private generic functions
Method, flatpulse-iq: Private generic functions
Method, flatpulse-phase: Private generic functions
Method, flatpulse-scale: Private generic functions
Method, flatwaveform-iq: Private generic functions
Method, frame-direction: Private generic functions
Method, frame-direction: Private generic functions
Method, frame-frequency: Private generic functions
Method, frame-frequency: Private generic functions
Method, frame-sample-rate: Private generic functions
Method, frame-sample_rate: Private generic functions
Method, gaussian-waveform-fwhm: Private generic functions
Method, gaussian-waveform-t0: Private generic functions
Method, gaussianwaveform-fwhm: Private generic functions
Method, gaussianwaveform-t0: Private generic functions
Method, get-execution-results-response-buffers: Private generic functions
Method, get-execution-results-response-execution-duration-microseconds: Private generic functions
Method, getexecutionresultsresponse-buffers: Private generic functions
Method, getexecutionresultsresponse-execution_duration_microseconds: Private generic functions
Method, hermite-gaussian-waveform-alpha: Private generic functions
Method, hermite-gaussian-waveform-anh: Private generic functions
Method, hermite-gaussian-waveform-fwhm: Private generic functions
Method, hermite-gaussian-waveform-second-order-hrm-coeff: Private generic functions
Method, hermite-gaussian-waveform-t0: Private generic functions
Method, hermitegaussianwaveform-alpha: Private generic functions
Method, hermitegaussianwaveform-anh: Private generic functions
Method, hermitegaussianwaveform-fwhm: Private generic functions
Method, hermitegaussianwaveform-second_order_hrm_coeff: Private generic functions
Method, hermitegaussianwaveform-t0: Private generic functions
Method, instruction-time: Private generic functions
Method, instruction-time: Private generic functions
Method, instrument-address: Private generic functions
Method, instrument-address: Private generic functions
Method, instrument-channels: Private generic functions
Method, instrument-channels: Private generic functions
Method, instrument-instrument-type: Private generic functions
Method, instrument-instrument_type: Private generic functions
Method, instrument-mnio-connections: Private generic functions
Method, instrument-mnio_connections: Private generic functions
Method, instrument-module: Private generic functions
Method, instrument-module: Private generic functions
Method, instrument-setup: Private generic functions
Method, instrument-setup: Private generic functions
Method, instrument-virtual: Private generic functions
Method, instrument-virtual: Private generic functions
Method, legacy-usrp-sequencer-rx-channel: Private generic functions
Method, legacy-usrp-sequencer-tx-channel: Private generic functions
Method, legacyusrpsequencer-rx_channel: Private generic functions
Method, legacyusrpsequencer-tx_channel: Private generic functions
Method, microwave-source-settings-frequency: Private generic functions
Method, microwave-source-settings-output: Private generic functions
Method, microwave-source-settings-power: Private generic functions
Method, microwavesourcesettings-frequency: Private generic functions
Method, microwavesourcesettings-output: Private generic functions
Method, microwavesourcesettings-power: Private generic functions
Method, mnio-connection-destination: Private generic functions
Method, mnio-connection-port: Private generic functions
Method, mnioconnection-destination: Private generic functions
Method, mnioconnection-port: Private generic functions
Method, native-quil-metadata-final-rewiring: Private generic functions
Method, native-quil-metadata-gate-depth: Private generic functions
Method, native-quil-metadata-gate-volume: Private generic functions
Method, native-quil-metadata-multiqubit-gate-depth: Private generic functions
Method, native-quil-metadata-program-duration: Private generic functions
Method, native-quil-metadata-program-fidelity: Private generic functions
Method, native-quil-metadata-qpu-runtime-estimation: Private generic functions
Method, native-quil-metadata-topological-swaps: Private generic functions
Method, native-quil-request-quil: Private generic functions
Method, native-quil-request-target-device: Private generic functions
Method, native-quil-response-metadata: Private generic functions
Method, native-quil-response-quil: Private generic functions
Method, nativequilmetadata-final_rewiring: Private generic functions
Method, nativequilmetadata-gate_depth: Private generic functions
Method, nativequilmetadata-gate_volume: Private generic functions
Method, nativequilmetadata-multiqubit_gate_depth: Private generic functions
Method, nativequilmetadata-program_duration: Private generic functions
Method, nativequilmetadata-program_fidelity: Private generic functions
Method, nativequilmetadata-qpu_runtime_estimation: Private generic functions
Method, nativequilmetadata-topological_swaps: Private generic functions
Method, nativequilrequest-quil: Private generic functions
Method, nativequilrequest-target_device: Private generic functions
Method, nativequilresponse-metadata: Private generic functions
Method, nativequilresponse-quil: Private generic functions
Method, not-an-rpcrequest-object: Public generic functions
Method, parameter-aref-index: Private generic functions
Method, parameter-aref-name: Private generic functions
Method, parameter-expression-a: Private generic functions
Method, parameter-expression-b: Private generic functions
Method, parameter-expression-operator: Private generic functions
Method, parameter-spec-length: Private generic functions
Method, parameter-spec-type: Private generic functions
Method, parameteraref-index: Private generic functions
Method, parameteraref-name: Private generic functions
Method, parameterexpression-a: Private generic functions
Method, parameterexpression-b: Private generic functions
Method, parameterexpression-operator: Private generic functions
Method, parameterspec-length: Private generic functions
Method, parameterspec-type: Private generic functions
Method, patch-target-patch-offset: Private generic functions
Method, patch-target-patch-type: Private generic functions
Method, patchable-binary-base-binary: Private generic functions
Method, patchable-binary-patch-table: Private generic functions
Method, patchablebinary-base_binary: Private generic functions
Method, patchablebinary-patch_table: Private generic functions
Method, patchtarget-patch_offset: Private generic functions
Method, patchtarget-patch_type: Private generic functions
Method, pauli-term-indices: Private generic functions
Method, pauli-term-symbols: Private generic functions
Method, pauliterm-indices: Private generic functions
Method, pauliterm-symbols: Private generic functions
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, program-filters: Private generic functions
Method, program-filters: Private generic functions
Method, program-parameters: Private generic functions
Method, program-parameters: Private generic functions
Method, program-scheduled-instructions: Private generic functions
Method, program-scheduled_instructions: Private generic functions
Method, program-waveforms: Private generic functions
Method, program-waveforms: Private generic functions
Method, pulse-detuning: Private generic functions
Method, pulse-detuning: Private generic functions
Method, pulse-frame: Private generic functions
Method, pulse-frame: Private generic functions
Method, pulse-phase: Private generic functions
Method, pulse-phase: Private generic functions
Method, pulse-scale: Private generic functions
Method, pulse-scale: Private generic functions
Method, pulse-waveform: Private generic functions
Method, pulse-waveform: Private generic functions
Method, py-quil-executable-response-attributes: Private generic functions
Method, py-quil-executable-response-program: Private generic functions
Method, pyquilexecutableresponse-attributes: Private generic functions
Method, pyquilexecutableresponse-program: Private generic functions
Method, qdo-fast-flux-channel-channel-index: Private generic functions
Method, qdo-fast-flux-channel-delay: Private generic functions
Method, qdo-fast-flux-channel-direction: Private generic functions
Method, qdo-fast-flux-channel-flux-current: Private generic functions
Method, qdo-sequencer-sequencer-index: Private generic functions
Method, qdo-sequencer-tx-channel: Private generic functions
Method, qdo-slow-flux-channel-channel-index: Private generic functions
Method, qdo-slow-flux-channel-flux-current: Private generic functions
Method, qdo-slow-flux-channel-relay-closed: Private generic functions
Method, qdofastfluxchannel-channel_index: Private generic functions
Method, qdofastfluxchannel-delay: Private generic functions
Method, qdofastfluxchannel-direction: Private generic functions
Method, qdofastfluxchannel-flux_current: Private generic functions
Method, qdosequencer-sequencer_index: Private generic functions
Method, qdosequencer-tx_channel: Private generic functions
Method, qdoslowfluxchannel-channel_index: Private generic functions
Method, qdoslowfluxchannel-flux_current: Private generic functions
Method, qdoslowfluxchannel-relay_closed: Private generic functions
Method, qf-dx-2-sequencer-sequencer-index: Private generic functions
Method, qf-dx-2-sequencer-tx-channel: Private generic functions
Method, qfd-channel-channel-index: Private generic functions
Method, qfd-channel-delay: Private generic functions
Method, qfd-channel-direction: Private generic functions
Method, qfd-channel-flux-current: Private generic functions
Method, qfd-channel-gain: Private generic functions
Method, qfd-channel-nco-frequency: Private generic functions
Method, qfd-channel-relay-closed: Private generic functions
Method, qfd-sequencer-sequencer-index: Private generic functions
Method, qfd-sequencer-tx-channel: Private generic functions
Method, qfdchannel-channel_index: Private generic functions
Method, qfdchannel-delay: Private generic functions
Method, qfdchannel-direction: Private generic functions
Method, qfdchannel-flux_current: Private generic functions
Method, qfdchannel-gain: Private generic functions
Method, qfdchannel-nco_frequency: Private generic functions
Method, qfdchannel-relay_closed: Private generic functions
Method, qfdsequencer-sequencer_index: Private generic functions
Method, qfdsequencer-tx_channel: Private generic functions
Method, qfdx2sequencer-sequencer_index: Private generic functions
Method, qfdx2sequencer-tx_channel: Private generic functions
Method, qg-sx-2-sequencer-sequencer-index: Private generic functions
Method, qg-sx-2-sequencer-tx-channel: Private generic functions
Method, qgs-channel-channel-index: Private generic functions
Method, qgs-channel-delay: Private generic functions
Method, qgs-channel-direction: Private generic functions
Method, qgs-channel-gain: Private generic functions
Method, qgs-channel-nco-frequency: Private generic functions
Method, qgs-sequencer-sequencer-index: Private generic functions
Method, qgs-sequencer-tx-channel: Private generic functions
Method, qgschannel-channel_index: Private generic functions
Method, qgschannel-delay: Private generic functions
Method, qgschannel-direction: Private generic functions
Method, qgschannel-gain: Private generic functions
Method, qgschannel-nco_frequency: Private generic functions
Method, qgssequencer-sequencer_index: Private generic functions
Method, qgssequencer-tx_channel: Private generic functions
Method, qgsx2sequencer-sequencer_index: Private generic functions
Method, qgsx2sequencer-tx_channel: Private generic functions
Method, qpu-chip-label: Private generic functions
Method, qpu-chip_label: Private generic functions
Method, qpu-controls: Private generic functions
Method, qpu-controls: Private generic functions
Method, qpu-controls-by-qubit: Private generic functions
Method, qpu-controls_by_qubit: Private generic functions
Method, qpu-qubits: Private generic functions
Method, qpu-qubits: Private generic functions
Method, qpu-request-id: Private generic functions
Method, qpu-request-patch-values: Private generic functions
Method, qpu-request-program: Private generic functions
Method, qpurequest-id: Private generic functions
Method, qpurequest-patch_values: Private generic functions
Method, qpurequest-program: Private generic functions
Method, qr-tx-2-sequencer-low-freq-range: Private generic functions
Method, qr-tx-2-sequencer-sequencer-index: Private generic functions
Method, qr-tx-2-sequencer-tx-channel: Private generic functions
Method, qrr-channel-channel-index: Private generic functions
Method, qrr-channel-delay: Private generic functions
Method, qrr-channel-direction: Private generic functions
Method, qrr-channel-gain: Private generic functions
Method, qrr-channel-nco-frequency: Private generic functions
Method, qrr-sequencer-rx-channel: Private generic functions
Method, qrr-sequencer-sequencer-index: Private generic functions
Method, qrrchannel-channel_index: Private generic functions
Method, qrrchannel-delay: Private generic functions
Method, qrrchannel-direction: Private generic functions
Method, qrrchannel-gain: Private generic functions
Method, qrrchannel-nco_frequency: Private generic functions
Method, qrrsequencer-rx_channel: Private generic functions
Method, qrrsequencer-sequencer_index: Private generic functions
Method, qrt-channel-channel-index: Private generic functions
Method, qrt-channel-delay: Private generic functions
Method, qrt-channel-direction: Private generic functions
Method, qrt-channel-gain: Private generic functions
Method, qrt-channel-nco-frequency: Private generic functions
Method, qrt-sequencer-low-freq-range: Private generic functions
Method, qrt-sequencer-sequencer-index: Private generic functions
Method, qrt-sequencer-tx-channel: Private generic functions
Method, qrtchannel-channel_index: Private generic functions
Method, qrtchannel-delay: Private generic functions
Method, qrtchannel-direction: Private generic functions
Method, qrtchannel-gain: Private generic functions
Method, qrtchannel-nco_frequency: Private generic functions
Method, qrtsequencer-low_freq_range: Private generic functions
Method, qrtsequencer-sequencer_index: Private generic functions
Method, qrtsequencer-tx_channel: Private generic functions
Method, qrtx2sequencer-low_freq_range: Private generic functions
Method, qrtx2sequencer-sequencer_index: Private generic functions
Method, qrtx2sequencer-tx_channel: Private generic functions
Method, quilt-binary-executable-request-num-shots: Private generic functions
Method, quilt-binary-executable-request-quilt: Private generic functions
Method, quilt-binary-executable-response-debug: Private generic functions
Method, quilt-binary-executable-response-memory-descriptors: Private generic functions
Method, quilt-binary-executable-response-program: Private generic functions
Method, quilt-binary-executable-response-ro-sources: Private generic functions
Method, quilt-calibrations-request-target-device: Private generic functions
Method, quilt-calibrations-response-quilt: Private generic functions
Method, quiltbinaryexecutablerequest-num_shots: Private generic functions
Method, quiltbinaryexecutablerequest-quilt: Private generic functions
Method, quiltbinaryexecutableresponse-debug: Private generic functions
Method, quiltbinaryexecutableresponse-memory_descriptors: Private generic functions
Method, quiltbinaryexecutableresponse-program: Private generic functions
Method, quiltbinaryexecutableresponse-ro_sources: Private generic functions
Method, quiltcalibrationsrequest-target_device: Private generic functions
Method, quiltcalibrationsresponse-quilt: Private generic functions
Method, rack-meta-rack-id: Private generic functions
Method, rack-meta-rack-version: Private generic functions
Method, rack-meta-schema-version: Private generic functions
Method, rackmeta-rack_id: Private generic functions
Method, rackmeta-rack_version: Private generic functions
Method, rackmeta-schema_version: Private generic functions
Method, randomized-benchmarking-request-depth: Private generic functions
Method, randomized-benchmarking-request-gateset: Private generic functions
Method, randomized-benchmarking-request-interleaver: Private generic functions
Method, randomized-benchmarking-request-qubits: Private generic functions
Method, randomized-benchmarking-request-seed: Private generic functions
Method, randomized-benchmarking-response-sequence: Private generic functions
Method, randomizedbenchmarkingrequest-depth: Private generic functions
Method, randomizedbenchmarkingrequest-gateset: Private generic functions
Method, randomizedbenchmarkingrequest-interleaver: Private generic functions
Method, randomizedbenchmarkingrequest-qubits: Private generic functions
Method, randomizedbenchmarkingrequest-seed: Private generic functions
Method, randomizedbenchmarkingresponse-sequence: Private generic functions
Method, receiver-channel: Private generic functions
Method, receiver-channel: Private generic functions
Method, receiver-data-axes: Private generic functions
Method, receiver-data_axes: Private generic functions
Method, receiver-instrument: Private generic functions
Method, receiver-instrument: Private generic functions
Method, receiver-publish: Private generic functions
Method, receiver-publish: Private generic functions
Method, receiver-stream: Private generic functions
Method, receiver-stream: Private generic functions
Method, resources-frames: Private generic functions
Method, resources-frames: Private generic functions
Method, resources-frames-to-controls: Private generic functions
Method, resources-frames_to_controls: Private generic functions
Method, resources-qubits: Private generic functions
Method, resources-qubits: Private generic functions
Method, rewrite-arithmetic-request-quil: Private generic functions
Method, rewrite-arithmetic-response-original-memory-descriptors: Private generic functions
Method, rewrite-arithmetic-response-quil: Private generic functions
Method, rewrite-arithmetic-response-recalculation-table: Private generic functions
Method, rewritearithmeticrequest-quil: Private generic functions
Method, rewritearithmeticresponse-original_memory_descriptors: Private generic functions
Method, rewritearithmeticresponse-quil: Private generic functions
Method, rewritearithmeticresponse-recalculation_table: Private generic functions
Method, rpc-error-error: Private generic functions
Method, rpc-error-id: Private generic functions
Method, rpc-error-jsonrpc: Private generic functions
Method, rpc-error-request-id: Public generic functions
Method, rpc-error-string: Public generic functions
Method, rpc-error-warnings: Private generic functions
Method, rpc-protocol-error-id: Public generic functions
Method, rpc-protocol-error-object: Public generic functions
Method, rpc-reply-id: Private generic functions
Method, rpc-reply-jsonrpc: Private generic functions
Method, rpc-reply-result: Private generic functions
Method, rpc-reply-warnings: Private generic functions
Method, rpc-request-client-key: Private generic functions
Method, rpc-request-client-timeout: Private generic functions
Method, rpc-request-id: Private generic functions
Method, rpc-request-jsonrpc: Private generic functions
Method, rpc-request-method: Private generic functions
Method, rpc-request-params: Private generic functions
Method, rpc-warning-body: Private generic functions
Method, rpc-warning-kind: Private generic functions
Method, rpcerror-error: Private generic functions
Method, rpcerror-id: Private generic functions
Method, rpcerror-jsonrpc: Private generic functions
Method, rpcerror-warnings: Private generic functions
Method, rpcreply-id: Private generic functions
Method, rpcreply-jsonrpc: Private generic functions
Method, rpcreply-result: Private generic functions
Method, rpcreply-warnings: Private generic functions
Method, rpcrequest-client_key: Private generic functions
Method, rpcrequest-client_timeout: Private generic functions
Method, rpcrequest-id: Private generic functions
Method, rpcrequest-jsonrpc: Private generic functions
Method, rpcrequest-method: Private generic functions
Method, rpcrequest-params: Private generic functions
Method, rpcwarning-body: Private generic functions
Method, rpcwarning-kind: Private generic functions
Method, schedule-ir-job-filter-pipeline: Private generic functions
Method, schedule-ir-job-job-id: Private generic functions
Method, schedule-ir-job-num-shots: Private generic functions
Method, schedule-ir-job-operating-point: Private generic functions
Method, schedule-ir-job-program: Private generic functions
Method, schedule-ir-job-resources: Private generic functions
Method, scheduleirjob-filter_pipeline: Private generic functions
Method, scheduleirjob-job_id: Private generic functions
Method, scheduleirjob-num_shots: Private generic functions
Method, scheduleirjob-operating_point: Private generic functions
Method, scheduleirjob-program: Private generic functions
Method, scheduleirjob-resources: Private generic functions
Method, set-frequency-frame: Private generic functions
Method, set-frequency-frequency: Private generic functions
Method, set-phase-frame: Private generic functions
Method, set-phase-phase: Private generic functions
Method, set-scale-frame: Private generic functions
Method, set-scale-scale: Private generic functions
Method, setfrequency-frame: Private generic functions
Method, setfrequency-frequency: Private generic functions
Method, setphase-frame: Private generic functions
Method, setphase-phase: Private generic functions
Method, setscale-frame: Private generic functions
Method, setscale-scale: Private generic functions
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, shift-frequency-delta: Private generic functions
Method, shift-frequency-frame: Private generic functions
Method, shift-phase-delta: Private generic functions
Method, shift-phase-frame: Private generic functions
Method, shiftfrequency-delta: Private generic functions
Method, shiftfrequency-frame: Private generic functions
Method, shiftphase-delta: Private generic functions
Method, shiftphase-frame: Private generic functions
Method, swap-phases-frame-a: Private generic functions
Method, swap-phases-frame-b: Private generic functions
Method, swapphases-frame_a: Private generic functions
Method, swapphases-frame_b: Private generic functions
Method, target-device-isa: Private generic functions
Method, target-device-specs: Private generic functions
Method, targetdevice-isa: Private generic functions
Method, targetdevice-specs: Private generic functions
Method, template-kernel-bias: Private generic functions
Method, template-kernel-detuning: Private generic functions
Method, template-kernel-duration: Private generic functions
Method, template-kernel-phase: Private generic functions
Method, template-kernel-scale: Private generic functions
Method, template-waveform-detuning: Private generic functions
Method, template-waveform-duration: Private generic functions
Method, template-waveform-phase: Private generic functions
Method, template-waveform-scale: Private generic functions
Method, templatekernel-bias: Private generic functions
Method, templatekernel-detuning: Private generic functions
Method, templatekernel-duration: Private generic functions
Method, templatekernel-phase: Private generic functions
Method, templatekernel-scale: Private generic functions
Method, templatewaveform-detuning: Private generic functions
Method, templatewaveform-duration: Private generic functions
Method, templatewaveform-phase: Private generic functions
Method, templatewaveform-scale: Private generic functions
Method, time-bomb-chip-label: Private generic functions
Method, time-bomb-deadline: Private generic functions
Method, timebomb-chip_label: Private generic functions
Method, timebomb-deadline: Private generic functions
Method, unknown-rpc-method-name: Public generic functions
Method, usi-card-sequencer-tx-channel: Private generic functions
Method, usi-target-sequencer-rx-channel: Private generic functions
Method, usi-target-sequencer-sequencer-index: Private generic functions
Method, usi-target-sequencer-tx-channel: Private generic functions
Method, usicardsequencer-tx_channel: Private generic functions
Method, usitargetsequencer-rx_channel: Private generic functions
Method, usitargetsequencer-sequencer_index: Private generic functions
Method, usitargetsequencer-tx_channel: Private generic functions
Method, vna-settings-averaging: Private generic functions
Method, vna-settings-bandwidth: Private generic functions
Method, vna-settings-e-delay: Private generic functions
Method, vna-settings-freq-sweep: Private generic functions
Method, vna-settings-phase-offset: Private generic functions
Method, vna-settings-power: Private generic functions
Method, vnasettings-averaging: Private generic functions
Method, vnasettings-bandwidth: Private generic functions
Method, vnasettings-e_delay: Private generic functions
Method, vnasettings-freq_sweep: Private generic functions
Method, vnasettings-phase_offset: Private generic functions
Method, vnasettings-power: Private generic functions
Method, waveform-iqs: Private generic functions
Method, waveform-iqs: Private generic functions
microwave-source-settings-frequency: Private generic functions
microwave-source-settings-frequency: Private generic functions
microwave-source-settings-output: Private generic functions
microwave-source-settings-output: Private generic functions
microwave-source-settings-power: Private generic functions
microwave-source-settings-power: Private generic functions
microwavesourcesettings-frequency: Private generic functions
microwavesourcesettings-frequency: Private generic functions
microwavesourcesettings-output: Private generic functions
microwavesourcesettings-output: Private generic functions
microwavesourcesettings-power: Private generic functions
microwavesourcesettings-power: Private generic functions
mnio-connection-destination: Private generic functions
mnio-connection-destination: Private generic functions
mnio-connection-port: Private generic functions
mnio-connection-port: Private generic functions
mnioconnection-destination: Private generic functions
mnioconnection-destination: Private generic functions
mnioconnection-port: Private generic functions
mnioconnection-port: Private generic functions

N
native-quil-metadata-final-rewiring: Private generic functions
native-quil-metadata-final-rewiring: Private generic functions
native-quil-metadata-gate-depth: Private generic functions
native-quil-metadata-gate-depth: Private generic functions
native-quil-metadata-gate-volume: Private generic functions
native-quil-metadata-gate-volume: Private generic functions
native-quil-metadata-multiqubit-gate-depth: Private generic functions
native-quil-metadata-multiqubit-gate-depth: Private generic functions
native-quil-metadata-program-duration: Private generic functions
native-quil-metadata-program-duration: Private generic functions
native-quil-metadata-program-fidelity: Private generic functions
native-quil-metadata-program-fidelity: Private generic functions
native-quil-metadata-qpu-runtime-estimation: Private generic functions
native-quil-metadata-qpu-runtime-estimation: Private generic functions
native-quil-metadata-topological-swaps: Private generic functions
native-quil-metadata-topological-swaps: Private generic functions
native-quil-request-quil: Private generic functions
native-quil-request-quil: Private generic functions
native-quil-request-target-device: Private generic functions
native-quil-request-target-device: Private generic functions
native-quil-response-metadata: Private generic functions
native-quil-response-metadata: Private generic functions
native-quil-response-quil: Private generic functions
native-quil-response-quil: Private generic functions
nativequilmetadata-final_rewiring: Private generic functions
nativequilmetadata-final_rewiring: Private generic functions
nativequilmetadata-gate_depth: Private generic functions
nativequilmetadata-gate_depth: Private generic functions
nativequilmetadata-gate_volume: Private generic functions
nativequilmetadata-gate_volume: Private generic functions
nativequilmetadata-multiqubit_gate_depth: Private generic functions
nativequilmetadata-multiqubit_gate_depth: Private generic functions
nativequilmetadata-program_duration: Private generic functions
nativequilmetadata-program_duration: Private generic functions
nativequilmetadata-program_fidelity: Private generic functions
nativequilmetadata-program_fidelity: Private generic functions
nativequilmetadata-qpu_runtime_estimation: Private generic functions
nativequilmetadata-qpu_runtime_estimation: Private generic functions
nativequilmetadata-topological_swaps: Private generic functions
nativequilmetadata-topological_swaps: Private generic functions
nativequilrequest-quil: Private generic functions
nativequilrequest-quil: Private generic functions
nativequilrequest-target_device: Private generic functions
nativequilrequest-target_device: Private generic functions
nativequilresponse-metadata: Private generic functions
nativequilresponse-metadata: Private generic functions
nativequilresponse-quil: Private generic functions
nativequilresponse-quil: Private generic functions
not-an-rpcrequest-object: Public generic functions
not-an-rpcrequest-object: Public generic functions

P
parameter-aref-index: Private generic functions
parameter-aref-index: Private generic functions
parameter-aref-name: Private generic functions
parameter-aref-name: Private generic functions
parameter-expression-a: Private generic functions
parameter-expression-a: Private generic functions
parameter-expression-b: Private generic functions
parameter-expression-b: Private generic functions
parameter-expression-operator: Private generic functions
parameter-expression-operator: Private generic functions
parameter-spec-length: Private generic functions
parameter-spec-length: Private generic functions
parameter-spec-type: Private generic functions
parameter-spec-type: Private generic functions
parameteraref-index: Private generic functions
parameteraref-index: Private generic functions
parameteraref-name: Private generic functions
parameteraref-name: Private generic functions
parameterexpression-a: Private generic functions
parameterexpression-a: Private generic functions
parameterexpression-b: Private generic functions
parameterexpression-b: Private generic functions
parameterexpression-operator: Private generic functions
parameterexpression-operator: Private generic functions
parameterspec-length: Private generic functions
parameterspec-length: Private generic functions
parameterspec-type: Private generic functions
parameterspec-type: Private generic functions
patch-target-patch-offset: Private generic functions
patch-target-patch-offset: Private generic functions
patch-target-patch-type: Private generic functions
patch-target-patch-type: Private generic functions
patchable-binary-base-binary: Private generic functions
patchable-binary-base-binary: Private generic functions
patchable-binary-patch-table: Private generic functions
patchable-binary-patch-table: Private generic functions
patchablebinary-base_binary: Private generic functions
patchablebinary-base_binary: Private generic functions
patchablebinary-patch_table: Private generic functions
patchablebinary-patch_table: Private generic functions
patchtarget-patch_offset: Private generic functions
patchtarget-patch_offset: Private generic functions
patchtarget-patch_type: Private generic functions
patchtarget-patch_type: Private generic functions
pauli-term-indices: Private generic functions
pauli-term-indices: Private generic functions
pauli-term-symbols: Private generic functions
pauli-term-symbols: Private generic functions
pauliterm-indices: Private generic functions
pauliterm-indices: Private generic functions
pauliterm-symbols: Private generic functions
pauliterm-symbols: Private generic functions
prepare-rpc-call-args: Private ordinary functions
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
program-filters: Private generic functions
program-filters: Private generic functions
program-filters: Private generic functions
program-filters: Private generic functions
program-parameters: Private generic functions
program-parameters: Private generic functions
program-parameters: Private generic functions
program-parameters: Private generic functions
program-scheduled-instructions: Private generic functions
program-scheduled-instructions: Private generic functions
program-scheduled_instructions: Private generic functions
program-scheduled_instructions: Private generic functions
program-waveforms: Private generic functions
program-waveforms: Private generic functions
program-waveforms: Private generic functions
program-waveforms: Private generic functions
pulse-detuning: Private generic functions
pulse-detuning: Private generic functions
pulse-detuning: Private generic functions
pulse-detuning: Private generic functions
pulse-frame: Private generic functions
pulse-frame: Private generic functions
pulse-frame: Private generic functions
pulse-frame: Private generic functions
pulse-phase: Private generic functions
pulse-phase: Private generic functions
pulse-phase: Private generic functions
pulse-phase: Private generic functions
pulse-scale: Private generic functions
pulse-scale: Private generic functions
pulse-scale: Private generic functions
pulse-scale: Private generic functions
pulse-waveform: Private generic functions
pulse-waveform: Private generic functions
pulse-waveform: Private generic functions
pulse-waveform: Private generic functions
py-quil-executable-response-attributes: Private generic functions
py-quil-executable-response-attributes: Private generic functions
py-quil-executable-response-program: Private generic functions
py-quil-executable-response-program: Private generic functions
pyquilexecutableresponse-attributes: Private generic functions
pyquilexecutableresponse-attributes: Private generic functions
pyquilexecutableresponse-program: Private generic functions
pyquilexecutableresponse-program: Private generic functions
python-argspec-default: Private ordinary functions
python-collections-initform: Private ordinary functions
python-instance-check-type: Private ordinary functions
python-maybe-optional-typing-type: Private ordinary functions
python-message-spec: Public ordinary functions
python-type: Private ordinary functions
python-typing-type: Private ordinary functions

Q
qdo-fast-flux-channel-channel-index: Private generic functions
qdo-fast-flux-channel-channel-index: Private generic functions
qdo-fast-flux-channel-delay: Private generic functions
qdo-fast-flux-channel-delay: Private generic functions
qdo-fast-flux-channel-direction: Private generic functions
qdo-fast-flux-channel-direction: Private generic functions
qdo-fast-flux-channel-flux-current: Private generic functions
qdo-fast-flux-channel-flux-current: Private generic functions
qdo-sequencer-sequencer-index: Private generic functions
qdo-sequencer-sequencer-index: Private generic functions
qdo-sequencer-tx-channel: Private generic functions
qdo-sequencer-tx-channel: Private generic functions
qdo-slow-flux-channel-channel-index: Private generic functions
qdo-slow-flux-channel-channel-index: Private generic functions
qdo-slow-flux-channel-flux-current: Private generic functions
qdo-slow-flux-channel-flux-current: Private generic functions
qdo-slow-flux-channel-relay-closed: Private generic functions
qdo-slow-flux-channel-relay-closed: Private generic functions
qdofastfluxchannel-channel_index: Private generic functions
qdofastfluxchannel-channel_index: Private generic functions
qdofastfluxchannel-delay: Private generic functions
qdofastfluxchannel-delay: Private generic functions
qdofastfluxchannel-direction: Private generic functions
qdofastfluxchannel-direction: Private generic functions
qdofastfluxchannel-flux_current: Private generic functions
qdofastfluxchannel-flux_current: Private generic functions
qdosequencer-sequencer_index: Private generic functions
qdosequencer-sequencer_index: Private generic functions
qdosequencer-tx_channel: Private generic functions
qdosequencer-tx_channel: Private generic functions
qdoslowfluxchannel-channel_index: Private generic functions
qdoslowfluxchannel-channel_index: Private generic functions
qdoslowfluxchannel-flux_current: Private generic functions
qdoslowfluxchannel-flux_current: Private generic functions
qdoslowfluxchannel-relay_closed: Private generic functions
qdoslowfluxchannel-relay_closed: Private generic functions
qf-dx-2-sequencer-sequencer-index: Private generic functions
qf-dx-2-sequencer-sequencer-index: Private generic functions
qf-dx-2-sequencer-tx-channel: Private generic functions
qf-dx-2-sequencer-tx-channel: Private generic functions
qfd-channel-channel-index: Private generic functions
qfd-channel-channel-index: Private generic functions
qfd-channel-delay: Private generic functions
qfd-channel-delay: Private generic functions
qfd-channel-direction: Private generic functions
qfd-channel-direction: Private generic functions
qfd-channel-flux-current: Private generic functions
qfd-channel-flux-current: Private generic functions
qfd-channel-gain: Private generic functions
qfd-channel-gain: Private generic functions
qfd-channel-nco-frequency: Private generic functions
qfd-channel-nco-frequency: Private generic functions
qfd-channel-relay-closed: Private generic functions
qfd-channel-relay-closed: Private generic functions
qfd-sequencer-sequencer-index: Private generic functions
qfd-sequencer-sequencer-index: Private generic functions
qfd-sequencer-tx-channel: Private generic functions
qfd-sequencer-tx-channel: Private generic functions
qfdchannel-channel_index: Private generic functions
qfdchannel-channel_index: Private generic functions
qfdchannel-delay: Private generic functions
qfdchannel-delay: Private generic functions
qfdchannel-direction: Private generic functions
qfdchannel-direction: Private generic functions
qfdchannel-flux_current: Private generic functions
qfdchannel-flux_current: Private generic functions
qfdchannel-gain: Private generic functions
qfdchannel-gain: Private generic functions
qfdchannel-nco_frequency: Private generic functions
qfdchannel-nco_frequency: Private generic functions
qfdchannel-relay_closed: Private generic functions
qfdchannel-relay_closed: Private generic functions
qfdsequencer-sequencer_index: Private generic functions
qfdsequencer-sequencer_index: Private generic functions
qfdsequencer-tx_channel: Private generic functions
qfdsequencer-tx_channel: Private generic functions
qfdx2sequencer-sequencer_index: Private generic functions
qfdx2sequencer-sequencer_index: Private generic functions
qfdx2sequencer-tx_channel: Private generic functions
qfdx2sequencer-tx_channel: Private generic functions
qg-sx-2-sequencer-sequencer-index: Private generic functions
qg-sx-2-sequencer-sequencer-index: Private generic functions
qg-sx-2-sequencer-tx-channel: Private generic functions
qg-sx-2-sequencer-tx-channel: Private generic functions
qgs-channel-channel-index: Private generic functions
qgs-channel-channel-index: Private generic functions
qgs-channel-delay: Private generic functions
qgs-channel-delay: Private generic functions
qgs-channel-direction: Private generic functions
qgs-channel-direction: Private generic functions
qgs-channel-gain: Private generic functions
qgs-channel-gain: Private generic functions
qgs-channel-nco-frequency: Private generic functions
qgs-channel-nco-frequency: Private generic functions
qgs-sequencer-sequencer-index: Private generic functions
qgs-sequencer-sequencer-index: Private generic functions
qgs-sequencer-tx-channel: Private generic functions
qgs-sequencer-tx-channel: Private generic functions
qgschannel-channel_index: Private generic functions
qgschannel-channel_index: Private generic functions
qgschannel-delay: Private generic functions
qgschannel-delay: Private generic functions
qgschannel-direction: Private generic functions
qgschannel-direction: Private generic functions
qgschannel-gain: Private generic functions
qgschannel-gain: Private generic functions
qgschannel-nco_frequency: Private generic functions
qgschannel-nco_frequency: Private generic functions
qgssequencer-sequencer_index: Private generic functions
qgssequencer-sequencer_index: Private generic functions
qgssequencer-tx_channel: Private generic functions
qgssequencer-tx_channel: Private generic functions
qgsx2sequencer-sequencer_index: Private generic functions
qgsx2sequencer-sequencer_index: Private generic functions
qgsx2sequencer-tx_channel: Private generic functions
qgsx2sequencer-tx_channel: Private generic functions
qpu-chip-label: Private generic functions
qpu-chip-label: Private generic functions
qpu-chip_label: Private generic functions
qpu-chip_label: Private generic functions
qpu-controls: Private generic functions
qpu-controls: Private generic functions
qpu-controls: Private generic functions
qpu-controls: Private generic functions
qpu-controls-by-qubit: Private generic functions
qpu-controls-by-qubit: Private generic functions
qpu-controls_by_qubit: Private generic functions
qpu-controls_by_qubit: Private generic functions
qpu-qubits: Private generic functions
qpu-qubits: Private generic functions
qpu-qubits: Private generic functions
qpu-qubits: Private generic functions
qpu-request-id: Private generic functions
qpu-request-id: Private generic functions
qpu-request-patch-values: Private generic functions
qpu-request-patch-values: Private generic functions
qpu-request-program: Private generic functions
qpu-request-program: Private generic functions
qpurequest-id: Private generic functions
qpurequest-id: Private generic functions
qpurequest-patch_values: Private generic functions
qpurequest-patch_values: Private generic functions
qpurequest-program: Private generic functions
qpurequest-program: Private generic functions
qr-tx-2-sequencer-low-freq-range: Private generic functions
qr-tx-2-sequencer-low-freq-range: Private generic functions
qr-tx-2-sequencer-sequencer-index: Private generic functions
qr-tx-2-sequencer-sequencer-index: Private generic functions
qr-tx-2-sequencer-tx-channel: Private generic functions
qr-tx-2-sequencer-tx-channel: Private generic functions
qrr-channel-channel-index: Private generic functions
qrr-channel-channel-index: Private generic functions
qrr-channel-delay: Private generic functions
qrr-channel-delay: Private generic functions
qrr-channel-direction: Private generic functions
qrr-channel-direction: Private generic functions
qrr-channel-gain: Private generic functions
qrr-channel-gain: Private generic functions
qrr-channel-nco-frequency: Private generic functions
qrr-channel-nco-frequency: Private generic functions
qrr-sequencer-rx-channel: Private generic functions
qrr-sequencer-rx-channel: Private generic functions
qrr-sequencer-sequencer-index: Private generic functions
qrr-sequencer-sequencer-index: Private generic functions
qrrchannel-channel_index: Private generic functions
qrrchannel-channel_index: Private generic functions
qrrchannel-delay: Private generic functions
qrrchannel-delay: Private generic functions
qrrchannel-direction: Private generic functions
qrrchannel-direction: Private generic functions
qrrchannel-gain: Private generic functions
qrrchannel-gain: Private generic functions
qrrchannel-nco_frequency: Private generic functions
qrrchannel-nco_frequency: Private generic functions
qrrsequencer-rx_channel: Private generic functions
qrrsequencer-rx_channel: Private generic functions
qrrsequencer-sequencer_index: Private generic functions
qrrsequencer-sequencer_index: Private generic functions
qrt-channel-channel-index: Private generic functions
qrt-channel-channel-index: Private generic functions
qrt-channel-delay: Private generic functions
qrt-channel-delay: Private generic functions
qrt-channel-direction: Private generic functions
qrt-channel-direction: Private generic functions
qrt-channel-gain: Private generic functions
qrt-channel-gain: Private generic functions
qrt-channel-nco-frequency: Private generic functions
qrt-channel-nco-frequency: Private generic functions
qrt-sequencer-low-freq-range: Private generic functions
qrt-sequencer-low-freq-range: Private generic functions
qrt-sequencer-sequencer-index: Private generic functions
qrt-sequencer-sequencer-index: Private generic functions
qrt-sequencer-tx-channel: Private generic functions
qrt-sequencer-tx-channel: Private generic functions
qrtchannel-channel_index: Private generic functions
qrtchannel-channel_index: Private generic functions
qrtchannel-delay: Private generic functions
qrtchannel-delay: Private generic functions
qrtchannel-direction: Private generic functions
qrtchannel-direction: Private generic functions
qrtchannel-gain: Private generic functions
qrtchannel-gain: Private generic functions
qrtchannel-nco_frequency: Private generic functions
qrtchannel-nco_frequency: Private generic functions
qrtsequencer-low_freq_range: Private generic functions
qrtsequencer-low_freq_range: Private generic functions
qrtsequencer-sequencer_index: Private generic functions
qrtsequencer-sequencer_index: Private generic functions
qrtsequencer-tx_channel: Private generic functions
qrtsequencer-tx_channel: Private generic functions
qrtx2sequencer-low_freq_range: Private generic functions
qrtx2sequencer-low_freq_range: Private generic functions
qrtx2sequencer-sequencer_index: Private generic functions
qrtx2sequencer-sequencer_index: Private generic functions
qrtx2sequencer-tx_channel: Private generic functions
qrtx2sequencer-tx_channel: Private generic functions
quilt-binary-executable-request-num-shots: Private generic functions
quilt-binary-executable-request-num-shots: Private generic functions
quilt-binary-executable-request-quilt: Private generic functions
quilt-binary-executable-request-quilt: Private generic functions
quilt-binary-executable-response-debug: Private generic functions
quilt-binary-executable-response-debug: Private generic functions
quilt-binary-executable-response-memory-descriptors: Private generic functions
quilt-binary-executable-response-memory-descriptors: Private generic functions
quilt-binary-executable-response-program: Private generic functions
quilt-binary-executable-response-program: Private generic functions
quilt-binary-executable-response-ro-sources: Private generic functions
quilt-binary-executable-response-ro-sources: Private generic functions
quilt-calibrations-request-target-device: Private generic functions
quilt-calibrations-request-target-device: Private generic functions
quilt-calibrations-response-quilt: Private generic functions
quilt-calibrations-response-quilt: Private generic functions
quiltbinaryexecutablerequest-num_shots: Private generic functions
quiltbinaryexecutablerequest-num_shots: Private generic functions
quiltbinaryexecutablerequest-quilt: Private generic functions
quiltbinaryexecutablerequest-quilt: Private generic functions
quiltbinaryexecutableresponse-debug: Private generic functions
quiltbinaryexecutableresponse-debug: Private generic functions
quiltbinaryexecutableresponse-memory_descriptors: Private generic functions
quiltbinaryexecutableresponse-memory_descriptors: Private generic functions
quiltbinaryexecutableresponse-program: Private generic functions
quiltbinaryexecutableresponse-program: Private generic functions
quiltbinaryexecutableresponse-ro_sources: Private generic functions
quiltbinaryexecutableresponse-ro_sources: Private generic functions
quiltcalibrationsrequest-target_device: Private generic functions
quiltcalibrationsrequest-target_device: Private generic functions
quiltcalibrationsresponse-quilt: Private generic functions
quiltcalibrationsresponse-quilt: Private generic functions

R
rack-meta-rack-id: Private generic functions
rack-meta-rack-id: Private generic functions
rack-meta-rack-version: Private generic functions
rack-meta-rack-version: Private generic functions
rack-meta-schema-version: Private generic functions
rack-meta-schema-version: Private generic functions
rackmeta-rack_id: Private generic functions
rackmeta-rack_id: Private generic functions
rackmeta-rack_version: Private generic functions
rackmeta-rack_version: Private generic functions
rackmeta-schema_version: Private generic functions
rackmeta-schema_version: Private generic functions
randomized-benchmarking-request-depth: Private generic functions
randomized-benchmarking-request-depth: Private generic functions
randomized-benchmarking-request-gateset: Private generic functions
randomized-benchmarking-request-gateset: Private generic functions
randomized-benchmarking-request-interleaver: Private generic functions
randomized-benchmarking-request-interleaver: Private generic functions
randomized-benchmarking-request-qubits: Private generic functions
randomized-benchmarking-request-qubits: Private generic functions
randomized-benchmarking-request-seed: Private generic functions
randomized-benchmarking-request-seed: Private generic functions
randomized-benchmarking-response-sequence: Private generic functions
randomized-benchmarking-response-sequence: Private generic functions
randomizedbenchmarkingrequest-depth: Private generic functions
randomizedbenchmarkingrequest-depth: Private generic functions
randomizedbenchmarkingrequest-gateset: Private generic functions
randomizedbenchmarkingrequest-gateset: Private generic functions
randomizedbenchmarkingrequest-interleaver: Private generic functions
randomizedbenchmarkingrequest-interleaver: Private generic functions
randomizedbenchmarkingrequest-qubits: Private generic functions
randomizedbenchmarkingrequest-qubits: Private generic functions
randomizedbenchmarkingrequest-seed: Private generic functions
randomizedbenchmarkingrequest-seed: Private generic functions
randomizedbenchmarkingresponse-sequence: Private generic functions
randomizedbenchmarkingresponse-sequence: Private generic functions
receiver-channel: Private generic functions
receiver-channel: Private generic functions
receiver-channel: Private generic functions
receiver-channel: Private generic functions
receiver-data-axes: Private generic functions
receiver-data-axes: Private generic functions
receiver-data_axes: Private generic functions
receiver-data_axes: Private generic functions
receiver-instrument: Private generic functions
receiver-instrument: Private generic functions
receiver-instrument: Private generic functions
receiver-instrument: Private generic functions
receiver-publish: Private generic functions
receiver-publish: Private generic functions
receiver-publish: Private generic functions
receiver-publish: Private generic functions
receiver-stream: Private generic functions
receiver-stream: Private generic functions
receiver-stream: Private generic functions
receiver-stream: Private generic functions
register-message: Private ordinary functions
resources-frames: Private generic functions
resources-frames: Private generic functions
resources-frames: Private generic functions
resources-frames: Private generic functions
resources-frames-to-controls: Private generic functions
resources-frames-to-controls: Private generic functions
resources-frames_to_controls: Private generic functions
resources-frames_to_controls: Private generic functions
resources-qubits: Private generic functions
resources-qubits: Private generic functions
resources-qubits: Private generic functions
resources-qubits: Private generic functions
rewrite-arithmetic-request-quil: Private generic functions
rewrite-arithmetic-request-quil: Private generic functions
rewrite-arithmetic-response-original-memory-descriptors: Private generic functions
rewrite-arithmetic-response-original-memory-descriptors: Private generic functions
rewrite-arithmetic-response-quil: Private generic functions
rewrite-arithmetic-response-quil: Private generic functions
rewrite-arithmetic-response-recalculation-table: Private generic functions
rewrite-arithmetic-response-recalculation-table: Private generic functions
rewritearithmeticrequest-quil: Private generic functions
rewritearithmeticrequest-quil: Private generic functions
rewritearithmeticresponse-original_memory_descriptors: Private generic functions
rewritearithmeticresponse-original_memory_descriptors: Private generic functions
rewritearithmeticresponse-quil: Private generic functions
rewritearithmeticresponse-quil: Private generic functions
rewritearithmeticresponse-recalculation_table: Private generic functions
rewritearithmeticresponse-recalculation_table: Private generic functions
rpc-call: Public ordinary functions
rpc-client-p: Private ordinary functions
rpc-client-socket: Private ordinary functions
rpc-client-timeout: Private ordinary functions
rpc-error-error: Private generic functions
rpc-error-error: Private generic functions
rpc-error-id: Private generic functions
rpc-error-id: Private generic functions
rpc-error-jsonrpc: Private generic functions
rpc-error-jsonrpc: Private generic functions
rpc-error-request-id: Public generic functions
rpc-error-request-id: Public generic functions
rpc-error-string: Public generic functions
rpc-error-string: Public generic functions
rpc-error-warnings: Private generic functions
rpc-error-warnings: Private generic functions
rpc-protocol-error-id: Public generic functions
rpc-protocol-error-id: Public generic functions
rpc-protocol-error-object: Public generic functions
rpc-protocol-error-object: Public generic functions
rpc-reply-id: Private generic functions
rpc-reply-id: Private generic functions
rpc-reply-jsonrpc: Private generic functions
rpc-reply-jsonrpc: Private generic functions
rpc-reply-result: Private generic functions
rpc-reply-result: Private generic functions
rpc-reply-warnings: Private generic functions
rpc-reply-warnings: Private generic functions
rpc-request-client-key: Private generic functions
rpc-request-client-key: Private generic functions
rpc-request-client-timeout: Private generic functions
rpc-request-client-timeout: Private generic functions
rpc-request-id: Private generic functions
rpc-request-id: Private generic functions
rpc-request-jsonrpc: Private generic functions
rpc-request-jsonrpc: Private generic functions
rpc-request-method: Private generic functions
rpc-request-method: Private generic functions
rpc-request-params: Private generic functions
rpc-request-params: Private generic functions
rpc-warning-body: Private generic functions
rpc-warning-body: Private generic functions
rpc-warning-kind: Private generic functions
rpc-warning-kind: Private generic functions
rpcerror-error: Private generic functions
rpcerror-error: Private generic functions
rpcerror-id: Private generic functions
rpcerror-id: Private generic functions
rpcerror-jsonrpc: Private generic functions
rpcerror-jsonrpc: Private generic functions
rpcerror-warnings: Private generic functions
rpcerror-warnings: Private generic functions
rpcreply-id: Private generic functions
rpcreply-id: Private generic functions
rpcreply-jsonrpc: Private generic functions
rpcreply-jsonrpc: Private generic functions
rpcreply-result: Private generic functions
rpcreply-result: Private generic functions
rpcreply-warnings: Private generic functions
rpcreply-warnings: Private generic functions
rpcrequest-client_key: Private generic functions
rpcrequest-client_key: Private generic functions
rpcrequest-client_timeout: Private generic functions
rpcrequest-client_timeout: Private generic functions
rpcrequest-id: Private generic functions
rpcrequest-id: Private generic functions
rpcrequest-jsonrpc: Private generic functions
rpcrequest-jsonrpc: Private generic functions
rpcrequest-method: Private generic functions
rpcrequest-method: Private generic functions
rpcrequest-params: Private generic functions
rpcrequest-params: Private generic functions
rpcwarning-body: Private generic functions
rpcwarning-body: Private generic functions
rpcwarning-kind: Private generic functions
rpcwarning-kind: Private generic functions

S
sanitize-name: Private ordinary functions
schedule-ir-job-filter-pipeline: Private generic functions
schedule-ir-job-filter-pipeline: Private generic functions
schedule-ir-job-job-id: Private generic functions
schedule-ir-job-job-id: Private generic functions
schedule-ir-job-num-shots: Private generic functions
schedule-ir-job-num-shots: Private generic functions
schedule-ir-job-operating-point: Private generic functions
schedule-ir-job-operating-point: Private generic functions
schedule-ir-job-program: Private generic functions
schedule-ir-job-program: Private generic functions
schedule-ir-job-resources: Private generic functions
schedule-ir-job-resources: Private generic functions
scheduleirjob-filter_pipeline: Private generic functions
scheduleirjob-filter_pipeline: Private generic functions
scheduleirjob-job_id: Private generic functions
scheduleirjob-job_id: Private generic functions
scheduleirjob-num_shots: Private generic functions
scheduleirjob-num_shots: Private generic functions
scheduleirjob-operating_point: Private generic functions
scheduleirjob-operating_point: Private generic functions
scheduleirjob-program: Private generic functions
scheduleirjob-program: Private generic functions
scheduleirjob-resources: Private generic functions
scheduleirjob-resources: Private generic functions
serialize: Public ordinary functions
server-auth-config-p: Private ordinary functions
server-auth-config-server-secret-key: Public ordinary functions
set-frequency-frame: Private generic functions
set-frequency-frame: Private generic functions
set-frequency-frequency: Private generic functions
set-frequency-frequency: Private generic functions
set-phase-frame: Private generic functions
set-phase-frame: Private generic functions
set-phase-phase: Private generic functions
set-phase-phase: Private generic functions
set-scale-frame: Private generic functions
set-scale-frame: Private generic functions
set-scale-scale: Private generic functions
set-scale-scale: Private generic functions
setfrequency-frame: Private generic functions
setfrequency-frame: Private generic functions
setfrequency-frequency: Private generic functions
setfrequency-frequency: Private generic functions
setphase-frame: Private generic functions
setphase-frame: Private generic functions
setphase-phase: Private generic functions
setphase-phase: Private generic functions
setscale-frame: Private generic functions
setscale-frame: Private generic functions
setscale-scale: Private generic functions
setscale-scale: Private generic functions
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
shift-frequency-delta: Private generic functions
shift-frequency-delta: Private generic functions
shift-frequency-frame: Private generic functions
shift-frequency-frame: Private generic functions
shift-phase-delta: Private generic functions
shift-phase-delta: Private generic functions
shift-phase-frame: Private generic functions
shift-phase-frame: Private generic functions
shiftfrequency-delta: Private generic functions
shiftfrequency-delta: Private generic functions
shiftfrequency-frame: Private generic functions
shiftfrequency-frame: Private generic functions
shiftphase-delta: Private generic functions
shiftphase-delta: Private generic functions
shiftphase-frame: Private generic functions
shiftphase-frame: Private generic functions
slot-type-and-initform: Private ordinary functions
snake-to-kebab: Private ordinary functions
start-server: Public ordinary functions
str->lisp-keyword: Private ordinary functions
swap-phases-frame-a: Private generic functions
swap-phases-frame-a: Private generic functions
swap-phases-frame-b: Private generic functions
swap-phases-frame-b: Private generic functions
swapphases-frame_a: Private generic functions
swapphases-frame_a: Private generic functions
swapphases-frame_b: Private generic functions
swapphases-frame_b: Private generic functions

T
target-device-isa: Private generic functions
target-device-isa: Private generic functions
target-device-specs: Private generic functions
target-device-specs: Private generic functions
targetdevice-isa: Private generic functions
targetdevice-isa: Private generic functions
targetdevice-specs: Private generic functions
targetdevice-specs: Private generic functions
template-kernel-bias: Private generic functions
template-kernel-bias: Private generic functions
template-kernel-detuning: Private generic functions
template-kernel-detuning: Private generic functions
template-kernel-duration: Private generic functions
template-kernel-duration: Private generic functions
template-kernel-phase: Private generic functions
template-kernel-phase: Private generic functions
template-kernel-scale: Private generic functions
template-kernel-scale: Private generic functions
template-waveform-detuning: Private generic functions
template-waveform-detuning: Private generic functions
template-waveform-duration: Private generic functions
template-waveform-duration: Private generic functions
template-waveform-phase: Private generic functions
template-waveform-phase: Private generic functions
template-waveform-scale: Private generic functions
template-waveform-scale: Private generic functions
templatekernel-bias: Private generic functions
templatekernel-bias: Private generic functions
templatekernel-detuning: Private generic functions
templatekernel-detuning: Private generic functions
templatekernel-duration: Private generic functions
templatekernel-duration: Private generic functions
templatekernel-phase: Private generic functions
templatekernel-phase: Private generic functions
templatekernel-scale: Private generic functions
templatekernel-scale: Private generic functions
templatewaveform-detuning: Private generic functions
templatewaveform-detuning: Private generic functions
templatewaveform-duration: Private generic functions
templatewaveform-duration: Private generic functions
templatewaveform-phase: Private generic functions
templatewaveform-phase: Private generic functions
templatewaveform-scale: Private generic functions
templatewaveform-scale: Private generic functions
time-bomb-chip-label: Private generic functions
time-bomb-chip-label: Private generic functions
time-bomb-deadline: Private generic functions
time-bomb-deadline: Private generic functions
timebomb-chip_label: Private generic functions
timebomb-chip_label: Private generic functions
timebomb-deadline: Private generic functions
timebomb-deadline: Private generic functions
to-json: Public ordinary functions
to-json-string: Public ordinary functions
to-octets: Private ordinary functions
to-string: Private ordinary functions

U
unknown-rpc-method-name: Public generic functions
unknown-rpc-method-name: Public generic functions
unpack-foreign-msg-to-bytes: Private ordinary functions
usi-card-sequencer-tx-channel: Private generic functions
usi-card-sequencer-tx-channel: Private generic functions
usi-target-sequencer-rx-channel: Private generic functions
usi-target-sequencer-rx-channel: Private generic functions
usi-target-sequencer-sequencer-index: Private generic functions
usi-target-sequencer-sequencer-index: Private generic functions
usi-target-sequencer-tx-channel: Private generic functions
usi-target-sequencer-tx-channel: Private generic functions
usicardsequencer-tx_channel: Private generic functions
usicardsequencer-tx_channel: Private generic functions
usitargetsequencer-rx_channel: Private generic functions
usitargetsequencer-rx_channel: Private generic functions
usitargetsequencer-sequencer_index: Private generic functions
usitargetsequencer-sequencer_index: Private generic functions
usitargetsequencer-tx_channel: Private generic functions
usitargetsequencer-tx_channel: Private generic functions

V
vna-settings-averaging: Private generic functions
vna-settings-averaging: Private generic functions
vna-settings-bandwidth: Private generic functions
vna-settings-bandwidth: Private generic functions
vna-settings-e-delay: Private generic functions
vna-settings-e-delay: Private generic functions
vna-settings-freq-sweep: Private generic functions
vna-settings-freq-sweep: Private generic functions
vna-settings-phase-offset: Private generic functions
vna-settings-phase-offset: Private generic functions
vna-settings-power: Private generic functions
vna-settings-power: Private generic functions
vnasettings-averaging: Private generic functions
vnasettings-averaging: Private generic functions
vnasettings-bandwidth: Private generic functions
vnasettings-bandwidth: Private generic functions
vnasettings-e_delay: Private generic functions
vnasettings-e_delay: Private generic functions
vnasettings-freq_sweep: Private generic functions
vnasettings-freq_sweep: Private generic functions
vnasettings-phase_offset: Private generic functions
vnasettings-phase_offset: Private generic functions
vnasettings-power: Private generic functions
vnasettings-power: Private generic functions

W
waveform-iqs: Private generic functions
waveform-iqs: Private generic functions
waveform-iqs: Private generic functions
waveform-iqs: Private generic functions
with-rpc-client: Public macros
with-unique-rpc-address: Public macros


A.3 Variables

Jump to:   *  
A   B   C   D   E   F   G   I   J   K   L   M   N   O   P   Q   R   S   T   V   W  
Index Entry  Section

*
*messages*: Private special variables
*mocked-namespace*: Private special variables
*python-instance-check-types*: Private special variables
*python-types*: Private special variables
*use-false*: Private special variables
*warnings*: Private special variables

A
a: Private classes
address: Private classes
alpha: Private classes
alpha: Private classes
anh: Private classes
anh: Private classes
apply_feedback_when: Private classes
attempts: Private classes
attributes: Private classes
averaging: Private classes

B
b: Private classes
bandwidth: Private classes
base_binary: Private classes
bias: Private classes
bias: Private classes
body: Private classes
buffers: Private classes

C
channel: Private classes
channels: Private classes
channel_index: Private classes
channel_index: Private classes
channel_index: Private classes
channel_index: Private classes
channel_index: Private classes
channel_index: Private classes
channel_index: Private classes
chip_label: Private classes
chip_label: Private classes
client-public-key: Public structures
client-secret-key: Public structures
client_key: Private classes
client_timeout: Private classes
clifford: Private classes
controls: Private classes
controls_by_qubit: Private classes

D
data_axes: Private classes
deadline: Private classes
debug: Private classes
delay: Private classes
delay: Private classes
delay: Private classes
delay: Private classes
delay: Private classes
delay: Private classes
delta: Private classes
delta: Private classes
depth: Private classes
destination: Private classes
detuning: Private classes
detuning: Private classes
detuning: Private classes
detuning: Private classes
detuning: Private classes
direction: Private classes
direction: Private classes
direction: Private classes
direction: Private classes
direction: Private classes
direction: Private classes
direction: Private classes
duration: Private classes
duration: Private classes
duration: Private classes
duration: Private classes
duration: Private classes

E
error: Private classes
error-string: Public conditions
execution_duration_microseconds: Private classes
e_delay: Private classes

F
feedback_duration: Private classes
feedback_instructions: Private classes
filters: Private classes
filters: Private classes
filter_pipeline: Private classes
filter_pipeline: Private classes
filter_type: Private classes
final_rewiring: Private classes
flux_current: Private classes
flux_current: Private classes
flux_current: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frame: Private classes
frames: Private classes
frames_to_controls: Private classes
frame_a: Private classes
frame_b: Private classes
frequency: Private classes
frequency: Private classes
frequency: Private classes
freq_sweep: Private classes
fwhm: Private classes
fwhm: Private classes
fwhm: Private classes

G
gain: Private classes
gain: Private classes
gain: Private classes
gain: Private classes
gain: Private classes
gateset: Private classes
gate_depth: Private classes
gate_volume: Private classes

I
id: Public conditions
id: Private classes
id: Private classes
id: Private classes
id: Private classes
index: Private classes
indices: Private classes
instrument: Private classes
instruments: Private classes
instrument_settings: Private classes
instrument_type: Private classes
interleaver: Private classes
iq: Private classes
iq: Private classes
iqs: Private classes
iqs: Private classes
isa: Private classes

J
job_id: Private classes
jsonrpc: Private classes
jsonrpc: Private classes
jsonrpc: Private classes

K
kind: Private classes

L
length: Private classes
low_freq_range: Private classes
low_freq_range: Private classes
lo_frequency: Private classes

M
measure: Private classes
measurement_bit: Private classes
measurement_duration: Private classes
measurement_instructions: Private classes
memory_descriptors: Private classes
memory_descriptors: Private classes
message: Private classes
metadata: Private classes
method: Private classes
method-name: Public conditions
mnio_connections: Private classes
module: Private classes
module: Private classes
multiqubit_gate_depth: Private classes

N
name: Private classes
name: Private classes
nco_frequency: Private classes
nco_frequency: Private classes
nco_frequency: Private classes
nco_frequency: Private classes
num_pts: Private classes
num_shots: Private classes
num_shots: Private classes
num_shots: Private classes

O
object: Public conditions
object: Public conditions
operating_point: Private classes
operator: Private classes
original_memory_descriptors: Private classes
output: Private classes

P
pad_left: Private classes
pad_right: Private classes
parameters: Private classes
params: Private classes
params: Private classes
patch_offset: Private classes
patch_table: Private classes
patch_type: Private classes
patch_values: Private classes
pauli: Private classes
pauli: Private classes
phase: Private classes
phase: Private classes
phase: Private classes
phase: Private classes
phase: Private classes
phase: Private classes
phase: Private classes
phase_offset: Private classes
points: Private classes
port: Private classes
power: Private classes
power: Private classes
program: Private classes
program: Private classes
program: Private classes
program: Private classes
program: Private classes
program_duration: Private classes
program_fidelity: Private classes
publish: Private classes
publish: Private classes

Q
qpu: Private classes
qpu_runtime_estimation: Private classes
qubits: Private classes
qubits: Private classes
qubits: Private classes
quil: Private classes
quil: Private classes
quil: Private classes
quil: Private classes
quil: Private classes
quilt: Private classes
quilt: Private classes

R
rack_id: Private classes
rack_meta: Private classes
rack_version: Private classes
recalculation_table: Private classes
receivers: Private classes
relay_closed: Private classes
relay_closed: Private classes
request-id: Public conditions
resources: Private classes
result: Private classes
rf_output_enabled: Private classes
rf_output_frequency: Private classes
rf_output_power: Private classes
risetime: Private classes
ro_sources: Private classes
ro_sources: Private classes
rx_channel: Private classes
rx_channel: Private classes
rx_channel: Private classes

S
sample_rate: Private classes
sample_rate: Private classes
scale: Private classes
scale: Private classes
scale: Private classes
scale: Private classes
scale: Private classes
scheduled_instructions: Private classes
schema_version: Private classes
second_order_hrm_coeff: Private classes
seed: Private classes
send_to_host: Private classes
sequence: Private classes
sequencer_index: Private classes
sequencer_index: Private classes
sequencer_index: Private classes
sequencer_index: Private classes
sequencer_index: Private classes
sequencer_index: Private classes
sequencer_index: Private classes
sequencer_index: Private classes
sequencer_index: Private classes
server-public-key: Public structures
server-secret-key: Public structures
setup: Private classes
Slot, a: Private classes
Slot, address: Private classes
Slot, alpha: Private classes
Slot, alpha: Private classes
Slot, anh: Private classes
Slot, anh: Private classes
Slot, apply_feedback_when: Private classes
Slot, attempts: Private classes
Slot, attributes: Private classes
Slot, averaging: Private classes
Slot, b: Private classes
Slot, bandwidth: Private classes
Slot, base_binary: Private classes
Slot, bias: Private classes
Slot, bias: Private classes
Slot, body: Private classes
Slot, buffers: Private classes
Slot, channel: Private classes
Slot, channels: Private classes
Slot, channel_index: Private classes
Slot, channel_index: Private classes
Slot, channel_index: Private classes
Slot, channel_index: Private classes
Slot, channel_index: Private classes
Slot, channel_index: Private classes
Slot, channel_index: Private classes
Slot, chip_label: Private classes
Slot, chip_label: Private classes
Slot, client-public-key: Public structures
Slot, client-secret-key: Public structures
Slot, client_key: Private classes
Slot, client_timeout: Private classes
Slot, clifford: Private classes
Slot, controls: Private classes
Slot, controls_by_qubit: Private classes
Slot, data_axes: Private classes
Slot, deadline: Private classes
Slot, debug: Private classes
Slot, delay: Private classes
Slot, delay: Private classes
Slot, delay: Private classes
Slot, delay: Private classes
Slot, delay: Private classes
Slot, delay: Private classes
Slot, delta: Private classes
Slot, delta: Private classes
Slot, depth: Private classes
Slot, destination: Private classes
Slot, detuning: Private classes
Slot, detuning: Private classes
Slot, detuning: Private classes
Slot, detuning: Private classes
Slot, detuning: Private classes
Slot, direction: Private classes
Slot, direction: Private classes
Slot, direction: Private classes
Slot, direction: Private classes
Slot, direction: Private classes
Slot, direction: Private classes
Slot, direction: Private classes
Slot, duration: Private classes
Slot, duration: Private classes
Slot, duration: Private classes
Slot, duration: Private classes
Slot, duration: Private classes
Slot, error: Private classes
Slot, error-string: Public conditions
Slot, execution_duration_microseconds: Private classes
Slot, e_delay: Private classes
Slot, feedback_duration: Private classes
Slot, feedback_instructions: Private classes
Slot, filters: Private classes
Slot, filters: Private classes
Slot, filter_pipeline: Private classes
Slot, filter_pipeline: Private classes
Slot, filter_type: Private classes
Slot, final_rewiring: Private classes
Slot, flux_current: Private classes
Slot, flux_current: Private classes
Slot, flux_current: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frame: Private classes
Slot, frames: Private classes
Slot, frames_to_controls: Private classes
Slot, frame_a: Private classes
Slot, frame_b: Private classes
Slot, frequency: Private classes
Slot, frequency: Private classes
Slot, frequency: Private classes
Slot, freq_sweep: Private classes
Slot, fwhm: Private classes
Slot, fwhm: Private classes
Slot, fwhm: Private classes
Slot, gain: Private classes
Slot, gain: Private classes
Slot, gain: Private classes
Slot, gain: Private classes
Slot, gain: Private classes
Slot, gateset: Private classes
Slot, gate_depth: Private classes
Slot, gate_volume: Private classes
Slot, id: Public conditions
Slot, id: Private classes
Slot, id: Private classes
Slot, id: Private classes
Slot, id: Private classes
Slot, index: Private classes
Slot, indices: Private classes
Slot, instrument: Private classes
Slot, instruments: Private classes
Slot, instrument_settings: Private classes
Slot, instrument_type: Private classes
Slot, interleaver: Private classes
Slot, iq: Private classes
Slot, iq: Private classes
Slot, iqs: Private classes
Slot, iqs: Private classes
Slot, isa: Private classes
Slot, job_id: Private classes
Slot, jsonrpc: Private classes
Slot, jsonrpc: Private classes
Slot, jsonrpc: Private classes
Slot, kind: Private classes
Slot, length: Private classes
Slot, low_freq_range: Private classes
Slot, low_freq_range: Private classes
Slot, lo_frequency: Private classes
Slot, measure: Private classes
Slot, measurement_bit: Private classes
Slot, measurement_duration: Private classes
Slot, measurement_instructions: Private classes
Slot, memory_descriptors: Private classes
Slot, memory_descriptors: Private classes
Slot, message: Private classes
Slot, metadata: Private classes
Slot, method: Private classes
Slot, method-name: Public conditions
Slot, mnio_connections: Private classes
Slot, module: Private classes
Slot, module: Private classes
Slot, multiqubit_gate_depth: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, nco_frequency: Private classes
Slot, nco_frequency: Private classes
Slot, nco_frequency: Private classes
Slot, nco_frequency: Private classes
Slot, num_pts: Private classes
Slot, num_shots: Private classes
Slot, num_shots: Private classes
Slot, num_shots: Private classes
Slot, object: Public conditions
Slot, object: Public conditions
Slot, operating_point: Private classes
Slot, operator: Private classes
Slot, original_memory_descriptors: Private classes
Slot, output: Private classes
Slot, pad_left: Private classes
Slot, pad_right: Private classes
Slot, parameters: Private classes
Slot, params: Private classes
Slot, params: Private classes
Slot, patch_offset: Private classes
Slot, patch_table: Private classes
Slot, patch_type: Private classes
Slot, patch_values: Private classes
Slot, pauli: Private classes
Slot, pauli: Private classes
Slot, phase: Private classes
Slot, phase: Private classes
Slot, phase: Private classes
Slot, phase: Private classes
Slot, phase: Private classes
Slot, phase: Private classes
Slot, phase: Private classes
Slot, phase_offset: Private classes
Slot, points: Private classes
Slot, port: Private classes
Slot, power: Private classes
Slot, power: Private classes
Slot, program: Private classes
Slot, program: Private classes
Slot, program: Private classes
Slot, program: Private classes
Slot, program: Private classes
Slot, program_duration: Private classes
Slot, program_fidelity: Private classes
Slot, publish: Private classes
Slot, publish: Private classes
Slot, qpu: Private classes
Slot, qpu_runtime_estimation: Private classes
Slot, qubits: Private classes
Slot, qubits: Private classes
Slot, qubits: Private classes
Slot, quil: Private classes
Slot, quil: Private classes
Slot, quil: Private classes
Slot, quil: Private classes
Slot, quil: Private classes
Slot, quilt: Private classes
Slot, quilt: Private classes
Slot, rack_id: Private classes
Slot, rack_meta: Private classes
Slot, rack_version: Private classes
Slot, recalculation_table: Private classes
Slot, receivers: Private classes
Slot, relay_closed: Private classes
Slot, relay_closed: Private classes
Slot, request-id: Public conditions
Slot, resources: Private classes
Slot, result: Private classes
Slot, rf_output_enabled: Private classes
Slot, rf_output_frequency: Private classes
Slot, rf_output_power: Private classes
Slot, risetime: Private classes
Slot, ro_sources: Private classes
Slot, ro_sources: Private classes
Slot, rx_channel: Private classes
Slot, rx_channel: Private classes
Slot, rx_channel: Private classes
Slot, sample_rate: Private classes
Slot, sample_rate: Private classes
Slot, scale: Private classes
Slot, scale: Private classes
Slot, scale: Private classes
Slot, scale: Private classes
Slot, scale: Private classes
Slot, scheduled_instructions: Private classes
Slot, schema_version: Private classes
Slot, second_order_hrm_coeff: Private classes
Slot, seed: Private classes
Slot, send_to_host: Private classes
Slot, sequence: Private classes
Slot, sequencer_index: Private classes
Slot, sequencer_index: Private classes
Slot, sequencer_index: Private classes
Slot, sequencer_index: Private classes
Slot, sequencer_index: Private classes
Slot, sequencer_index: Private classes
Slot, sequencer_index: Private classes
Slot, sequencer_index: Private classes
Slot, sequencer_index: Private classes
Slot, server-public-key: Public structures
Slot, server-secret-key: Public structures
Slot, setup: Private classes
Slot, socket: Private structures
Slot, source: Private classes
Slot, source: Private classes
Slot, specs: Private classes
Slot, start: Private classes
Slot, stop: Private classes
Slot, stream: Private classes
Slot, symbols: Private classes
Slot, t0: Private classes
Slot, t0: Private classes
Slot, t0: Private classes
Slot, target_device: Private classes
Slot, target_device: Private classes
Slot, time: Private classes
Slot, time: Private classes
Slot, timebomb: Private classes
Slot, timeout: Private structures
Slot, topological_swaps: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, tx_channel: Private classes
Slot, type: Private classes
Slot, virtual: Private classes
Slot, warnings: Private classes
Slot, warnings: Private classes
Slot, waveform: Private classes
Slot, waveforms: Private classes
socket: Private structures
source: Private classes
source: Private classes
Special Variable, *messages*: Private special variables
Special Variable, *mocked-namespace*: Private special variables
Special Variable, *python-instance-check-types*: Private special variables
Special Variable, *python-types*: Private special variables
Special Variable, *use-false*: Private special variables
Special Variable, *warnings*: Private special variables
specs: Private classes
start: Private classes
stop: Private classes
stream: Private classes
symbols: Private classes

T
t0: Private classes
t0: Private classes
t0: Private classes
target_device: Private classes
target_device: Private classes
time: Private classes
time: Private classes
timebomb: Private classes
timeout: Private structures
topological_swaps: Private classes
tx_channel: Private classes
tx_channel: Private classes
tx_channel: Private classes
tx_channel: Private classes
tx_channel: Private classes
tx_channel: Private classes
tx_channel: Private classes
tx_channel: Private classes
tx_channel: Private classes
tx_channel: Private classes
type: Private classes

V
virtual: Private classes

W
warnings: Private classes
warnings: Private classes
waveform: Private classes
waveforms: Private classes


A.4 Data types

Jump to:   A   B   C   D   E   F   G   H   I   L   M   N   O   P   Q   R   S   T   U   V   W   Y  
Index Entry  Section

A
abstractkernel: Private classes
abstractwaveform: Private classes
activereset: Private classes
atom-type: Private types
awgchannel: Private classes

B
binaryexecutablerequest: Private classes
binaryexecutableresponse: Private classes
boxcaraveragerkernel: Private classes

C
capture: Private classes
Class, abstractkernel: Private classes
Class, abstractwaveform: Private classes
Class, activereset: Private classes
Class, awgchannel: Private classes
Class, binaryexecutablerequest: Private classes
Class, binaryexecutableresponse: Private classes
Class, boxcaraveragerkernel: Private classes
Class, capture: Private classes
Class, conjugatebycliffordrequest: Private classes
Class, conjugatebycliffordresponse: Private classes
Class, cwchannel: Private classes
Class, cwfrequencysweep: Private classes
Class, dataaxis: Private classes
Class, debugmessage: Private classes
Class, deployedrack: Private classes
Class, draggaussianwaveform: Private classes
Class, erfsquarewaveform: Private classes
Class, executorjob: Private classes
Class, filterkernel: Private classes
Class, filternode: Private classes
Class, flatkernel: Private classes
Class, flatpulse: Private classes
Class, flatwaveform: Private classes
Class, frame: Private classes
Class, gaussianwaveform: Private classes
Class, getexecutionresultsresponse: Private classes
Class, hermitegaussianwaveform: Private classes
Class, instruction: Private classes
Class, instrument: Private classes
Class, legacyusrpsequencer: Private classes
Class, microwavesourcesettings: Private classes
Class, mnioconnection: Private classes
Class, nativequilmetadata: Private classes
Class, nativequilrequest: Private classes
Class, nativequilresponse: Private classes
Class, parameteraref: Private classes
Class, parameterexpression: Private classes
Class, parameterspec: Private classes
Class, patchablebinary: Private classes
Class, patchtarget: Private classes
Class, pauliterm: Private classes
Class, program: Private classes
Class, pulse: Private classes
Class, pyquilexecutableresponse: Private classes
Class, qdofastfluxchannel: Private classes
Class, qdosequencer: Private classes
Class, qdoslowfluxchannel: Private classes
Class, qfdchannel: Private classes
Class, qfdsequencer: Private classes
Class, qfdx2sequencer: Private classes
Class, qgschannel: Private classes
Class, qgssequencer: Private classes
Class, qgsx2sequencer: Private classes
Class, qpu: Private classes
Class, qpurequest: Private classes
Class, qrrchannel: Private classes
Class, qrrsequencer: Private classes
Class, qrtchannel: Private classes
Class, qrtsequencer: Private classes
Class, qrtx2sequencer: Private classes
Class, quiltbinaryexecutablerequest: Private classes
Class, quiltbinaryexecutableresponse: Private classes
Class, quiltcalibrationsrequest: Private classes
Class, quiltcalibrationsresponse: Private classes
Class, rackmeta: Private classes
Class, randomizedbenchmarkingrequest: Private classes
Class, randomizedbenchmarkingresponse: Private classes
Class, receiver: Private classes
Class, resources: Private classes
Class, rewritearithmeticrequest: Private classes
Class, rewritearithmeticresponse: Private classes
Class, rpcerror: Private classes
Class, rpcreply: Private classes
Class, rpcrequest: Private classes
Class, rpcwarning: Private classes
Class, scheduleirjob: Private classes
Class, setfrequency: Private classes
Class, setphase: Private classes
Class, setscale: Private classes
Class, shiftfrequency: Private classes
Class, shiftphase: Private classes
Class, swapphases: Private classes
Class, targetdevice: Private classes
Class, templatekernel: Private classes
Class, templatewaveform: Private classes
Class, timebomb: Private classes
Class, usicardsequencer: Private classes
Class, usitargetsequencer: Private classes
Class, vnasettings: Private classes
Class, waveform: Private classes
Class, yokogawags200channel: Private classes
client-auth-config: Public structures
client.lisp: The rpcq/client․lisp file
Condition, not-an-rpcrequest: Public conditions
Condition, rpc-error: Public conditions
Condition, rpc-protocol-error: Public conditions
Condition, unknown-rpc-method: Public conditions
conjugatebycliffordrequest: Private classes
conjugatebycliffordresponse: Private classes
core-messages.lisp: The rpcq/core-messages․lisp file
cwchannel: Private classes
cwfrequencysweep: Private classes

D
dataaxis: Private classes
debugmessage: Private classes
deployedrack: Private classes
dispatch-table: Private types
draggaussianwaveform: Private classes

E
erfsquarewaveform: Private classes
executorjob: Private classes

F
File, client.lisp: The rpcq/client․lisp file
File, core-messages.lisp: The rpcq/core-messages․lisp file
File, messages.lisp: The rpcq/messages․lisp file
File, package.lisp: The rpcq/package․lisp file
File, rpcq-python.lisp: The rpcq/rpcq-python․lisp file
File, rpcq.asd: The rpcq/rpcq․asd file
File, rpcq.lisp: The rpcq/rpcq․lisp file
File, server.lisp: The rpcq/server․lisp file
File, utilities.lisp: The rpcq/utilities․lisp file
filterkernel: Private classes
filternode: Private classes
flatkernel: Private classes
flatpulse: Private classes
flatwaveform: Private classes
frame: Private classes

G
gaussianwaveform: Private classes
getexecutionresultsresponse: Private classes

H
hermitegaussianwaveform: Private classes

I
instruction: Private classes
instrument: Private classes

L
legacyusrpsequencer: Private classes

M
messages.lisp: The rpcq/messages․lisp file
microwavesourcesettings: Private classes
mnioconnection: Private classes

N
nativequilmetadata: Private classes
nativequilrequest: Private classes
nativequilresponse: Private classes
not-an-rpcrequest: Public conditions

O
optional-bool: Public types

P
Package, rpcq: The rpcq package
package.lisp: The rpcq/package․lisp file
parameteraref: Private classes
parameterexpression: Private classes
parameterspec: Private classes
patchablebinary: Private classes
patchtarget: Private classes
pauliterm: Private classes
program: Private classes
pulse: Private classes
pyquilexecutableresponse: Private classes

Q
qdofastfluxchannel: Private classes
qdosequencer: Private classes
qdoslowfluxchannel: Private classes
qfdchannel: Private classes
qfdsequencer: Private classes
qfdx2sequencer: Private classes
qgschannel: Private classes
qgssequencer: Private classes
qgsx2sequencer: Private classes
qpu: Private classes
qpurequest: Private classes
qrrchannel: Private classes
qrrsequencer: Private classes
qrtchannel: Private classes
qrtsequencer: Private classes
qrtx2sequencer: Private classes
quiltbinaryexecutablerequest: Private classes
quiltbinaryexecutableresponse: Private classes
quiltcalibrationsrequest: Private classes
quiltcalibrationsresponse: Private classes

R
rackmeta: Private classes
randomizedbenchmarkingrequest: Private classes
randomizedbenchmarkingresponse: Private classes
receiver: Private classes
resources: Private classes
rewritearithmeticrequest: Private classes
rewritearithmeticresponse: Private classes
rpc-client: Private structures
rpc-error: Public conditions
rpc-protocol-error: Public conditions
rpcerror: Private classes
rpcq: The rpcq system
rpcq: The rpcq package
rpcq-python.lisp: The rpcq/rpcq-python․lisp file
rpcq.asd: The rpcq/rpcq․asd file
rpcq.lisp: The rpcq/rpcq․lisp file
rpcreply: Private classes
rpcrequest: Private classes
rpcwarning: Private classes

S
scheduleirjob: Private classes
server-auth-config: Public structures
server.lisp: The rpcq/server․lisp file
setfrequency: Private classes
setphase: Private classes
setscale: Private classes
shiftfrequency: Private classes
shiftphase: Private classes
Structure, client-auth-config: Public structures
Structure, rpc-client: Private structures
Structure, server-auth-config: Public structures
swapphases: Private classes
System, rpcq: The rpcq system

T
targetdevice: Private classes
templatekernel: Private classes
templatewaveform: Private classes
timebomb: Private classes
Type, atom-type: Private types
Type, dispatch-table: Private types
Type, optional-bool: Public types

U
unknown-rpc-method: Public conditions
usicardsequencer: Private classes
usitargetsequencer: Private classes
utilities.lisp: The rpcq/utilities․lisp file

V
vnasettings: Private classes

W
waveform: Private classes

Y
yokogawags200channel: Private classes