qandle.qcircuit module

class qandle.qcircuit.Circuit(layers: List[Operator], num_qubits=None, split_max_qubits=0, circuit=None)[source]

Bases: Module

class DummyUnbuiltCircuit(num_qubits: int, layers: List[Operator])[source]

Bases: object

Helper class to decompose a circuit with subcircuits without building it.

decompose()[source]
decompose()[source]
draw()[source]

Shorthand for drawer.draw(self.circuit)

forward(state=None, **kwargs)[source]

Define the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.

split(max_qubits)[source]
to_openqasm2() str[source]
to_openqasm3() str[source]
to_qasm()[source]