qiskit.circuit.QuantumCircuit.depth¶
- QuantumCircuit.depth(filter_function=<function QuantumCircuit.<lambda>>)[source]¶
Return circuit depth (i.e., length of critical path).
- প্যারামিটার
filter_function (callable) -- a function to filter out some instructions. Should take as input a tuple of (Instruction, list(Qubit), list(Clbit)). By default filters out "directives", such as barrier or snapshot.
- রিটার্নস
Depth of circuit.
- রিটার্ন টাইপ
int
Notes
The circuit depth and the DAG depth need not be the same.