Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.
Important

IBM Quantum Platform is moving and this version will be sunset on July 1. To get started on the new platform, read the migration guide.

BlockCollapser

class qiskit.dagcircuit.BlockCollapser(dag)

GitHub

Bases: object

This class implements various strategies of consolidating blocks of nodes in a DAG (direct acyclic graph). It works both with the DAGCircuit and DAGDependency DAG representations.

Parameters

dag (Union[DAGCircuit, DAGDependency]) – The input DAG.

Raises

DAGCircuitError – the input object is not a DAG.


Methods

collapse_to_operation

collapse_to_operation(blocks, collapse_fn)

For each block, constructs a quantum circuit containing instructions in the block, then uses collapse_fn to collapse this circuit into a single operation.

Was this page helpful?
Report a bug or request content on GitHub.