pyquil.quantum_processor.graph module¶
- class pyquil.quantum_processor.graph.NxQuantumProcessor(topology: networkx.classes.graph.Graph, gates_1q: Optional[List[str]] = None, gates_2q: Optional[List[str]] = None)[source]¶
Bases:
pyquil.quantum_processor._base.AbstractQuantumProcessorAn AbstractQuantumProcessor initialized with a user constructed NetworkX graph topology. Notably, this class is able to serialize a
CompilerISAbased on the graph topology and the configured 1Q and 2Q gates.Initialize a new NxQuantumProcessor.
- Parameters
topology – The graph topology of the quantum_processor.
gates_1q – A list of 1Q gate names supported by all qubits in the quantum_processor.
gates_2q – A list of 2Q gate names supported all edges in the quantum_processor.
- qubit_topology() networkx.classes.graph.Graph[source]¶
The connectivity of qubits in this quantum_processor given as a NetworkX graph.
- to_compiler_isa() pyquil.external.rpcq.CompilerISA[source]¶
Generate a
CompilerISAobject based on a NetworkX graph and thegates_1qandgates_2qwith which the quantum_processor was initialized.May raise
GraphGateErrorif the specified gates are not supported.