pyquil.quantum_processor.graph module¶
An implementation of an AbstractQuantumProcessor based on a NetworkX graph topology.
- 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]¶
Return the NetworkX graph that represents the connectivity of qubits in this quantum_processor.
- to_compiler_isa() CompilerISA[source]¶
Generate a
CompilerISAobject based on the NetworkX graph,gates_1q, andgates_2q.May raise
GraphGateErrorif the specified gates are not supported.