View source on GitHub |
A device whose properties are represented by an edge-labelled graph.
Inherits From: Device
cirq.contrib.graph_device.UndirectedGraphDevice(
device_graph: Optional[cirq.contrib.graph_device.UndirectedHypergraph
] = None,
crosstalk_graph: Optional[cirq.contrib.graph_device.UndirectedHypergraph
] = None
) -> None
Each (undirected) edge of the device graph is labelled by an UndirectedGraphDeviceEdge or None. None indicates that any operation is allowed and has zero duration.
Each (undirected) edge of the constraint graph is labelled either by a function or None. The function takes as arguments operations on the adjacent device edges and raises an error if they are not simultaneously executable. If None, no such operations are allowed.
Note that
* the crosstalk graph is allowed to have vertices (i.e. device edges)
that do not exist in the graph device.
* duration_of does not check that operation is valid.
Raises | |
---|---|
TypeError
|
If the crosstalk graph is not a valid crosstalk graph. |
Attributes | |
---|---|
edges
|
|
labelled_edges
|
|
metadata
|
Returns the associated Metadata with the device if applicable. |
qubits
|
Methods
duration_of
duration_of(
operation: cirq.Operation
) -> cirq.Duration
get_device_edge_from_op
get_device_edge_from_op(
operation: cirq.Operation
) -> cirq.contrib.graph_device.graph_device.UndirectedGraphDeviceEdge
validate_circuit
validate_circuit(
circuit: 'cirq.AbstractCircuit'
) -> None
Raises an exception if a circuit is not valid.
Args | |
---|---|
circuit
|
The circuit to validate. |
Raises | |
---|---|
ValueError
|
The circuit isn't valid for this device. |
validate_crosstalk
validate_crosstalk(
operation: cirq.Operation
,
other_operations: Iterable[cirq.Operation
]
) -> None
validate_moment
validate_moment(
moment: 'cirq.Moment'
)
Raises an exception if a moment is not valid.
Args | |
---|---|
moment
|
The moment to validate. |
Raises | |
---|---|
ValueError
|
The moment isn't valid for this device. |
validate_operation
validate_operation(
operation: cirq.Operation
) -> None
Raises an exception if an operation is not valid.
Args | |
---|---|
operation
|
The operation to validate. |
Raises | |
---|---|
ValueError
|
The operation isn't valid for this device. |
__add__
__add__(
other
)
__eq__
__eq__(
other
)
Return self==value.