AddNoops

class samplomatic.transpiler.passes.insert_noops.AddNoops(*args, **kwargs)[source]

Bases: TransformationPass

Expand boxes to the given qubits.

This pass leaves non-box operations as-is, but boxes are modified to span the original qubits, original clbits, and any user-specified qubits not already included in the original qubits.

Methods Summary

run(dag)

Run a pass on the DAGCircuit.

Methods Documentation

run(dag: DAGCircuit)[source]

Run a pass on the DAGCircuit. This is implemented by the pass developer.

Parameters:

dag – the dag on which the pass is run.

Raises:

NotImplementedError – when this is left unimplemented for a pass.