Skip to main contentIBM Quantum Documentation
You are viewing the API reference for an old version of Qiskit SDK. Switch to latest version

BasisTranslator

BasisTranslator(*args, **kwargs) GitHub(opens in a new tab)

Bases: qiskit.transpiler.basepasses.TransformationPass

Translates gates to a target basis by searching for a set of translations from a given EquivalenceLibrary.

This pass operates in several steps:

  • Determine the source basis from the input circuit.
  • Perform an A* search over basis sets, starting from the source basis and targeting the device’s target_basis, with edges discovered from the provided EquivalenceLibrary. The heuristic used by the A* search is the number of distinct circuit basis gates not in the target_basis, plus the number of distinct device basis gates not used in the current basis.
  • The found path, as a set of rules from the EquivalenceLibrary, is composed into a set of gate replacement rules.
  • The composed replacement rules are applied in-place to each op node which is not already in the target_basis.

If the target keyword argument is specified and that Target objects contains operations which are non-global (i.e. they are defined only for a subset of qubits), as calculated by get_non_global_operation_names(), this pass will attempt to match the output translation to those constraints. For 1 qubit operations this is straightforward, the pass will perform a search using the union of the set of global operations with the set of operations defined solely on that qubit. For multi-qubit gates this is a bit more involved, while the behavior is initially similar to the single qubit case, just using all the qubits the operation is run on (where order is not significant) isn’t sufficient. We also need to consider any potential local qubits defined on subsets of the quantum arguments for the multi-qubit operation. This means the target used for the search of a non-global multi-qubit gate is the union of global operations, non-global multi-qubit gates sharing the same qubits, and any non-global gates defined on any subset of the qubits used.

Note

In the case of non-global operations it is possible for a single execution of this pass to output an incomplete translation if any non-global gates are defined on qubits that are a subset of a larger multi-qubit gate. For example, if you have a u gate only defined on qubit 0 and an x gate only on qubit 1 it is possible when translating a 2 qubit operation on qubit 0 and 1 that the output might have u on qubit 1 and x on qubit 0. Typically running this pass a second time will correct these issues.

Initialize a BasisTranslator instance.

Parameters

  • equivalence_library (EquivalenceLibrary) – The equivalence library which will be used by the BasisTranslator pass. (Instructions in this library will not be unrolled by this pass.)
  • target_basis (list[str]) – Target basis names to unroll to, e.g. [‘u3’, ‘cx’].
  • target (Target) – The backend compilation target

Methods

name

BasisTranslator.name()

Return the name of the pass.

run

BasisTranslator.run(dag)

Translate an input DAGCircuit to the target basis.

Parameters

dag (DAGCircuit) – input dag

Raises

TranspilerError – if the target basis cannot be reached

Returns

translated circuit.

Return type

DAGCircuit


Attributes

is_analysis_pass

Check if the pass is an analysis pass.

If the pass is an AnalysisPass, that means that the pass can analyze the DAG and write the results of that analysis in the property set. Modifications on the DAG are not allowed by this kind of pass.

is_transformation_pass

Check if the pass is a transformation pass.

If the pass is a TransformationPass, that means that the pass can manipulate the DAG, but cannot modify the property set (but it can be read).

Was this page helpful?