pyquil.quantum_processor.graph module¶
- class pyquil.quantum_processor.graph.NxQuantumProcessor(topology: Graph, gates_1q: List[str] | None = None, gates_2q: List[str] | None = None)[source]¶
Bases:
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() Graph[source]¶
The connectivity of qubits in this quantum_processor given as a NetworkX graph.
- to_compiler_isa() 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.