Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.transpiler.preset_passmanagers.level_1_pass_manager

level_1_pass_manager(pass_manager_config)[소스]

Level 1 pass manager: light optimization by simple adjacent gate collapsing.

This pass manager applies the user-given initial layout. If none is given, and a trivial layout (i-th virtual -> i-th physical) makes the circuit fit the coupling map, that is used. Otherwise, the circuit is mapped to the most densely connected coupling subgraph, and swaps are inserted to map. Any unused physical qubit is allocated as ancilla space. The pass manager then unrolls the circuit to the desired basis, and transforms the circuit to match the coupling map. Finally, optimizations in the form of adjacent gate collapse and redundant reset removal are performed.

참고

In simulators where coupling_map=None, only the unrolling and optimization stages are done.

매개변수

pass_manager_config (PassManagerConfig) – configuration of the pass manager.

반환 형식

PassManager

반환값

a level 1 pass manager.

예외

TranspilerError – if the passmanager config is invalid.