Skip to main content
IBM Quantum Platform
This page is from an old version of Qiskit SDK Go to the latest version

UnitarySynthesis

class UnitarySynthesis(basis_gates, approximation_degree=1, coupling_map=None, backend_props=None, pulse_optimize=None, natural_direction=None, synth_gates=None)

GitHub

Bases: qiskit.transpiler.basepasses.TransformationPass

Synthesize gates according to their basis gates.

Synthesize unitaries over some basis gates.

This pass can approximate 2-qubit unitaries given some approximation closeness measure (expressed as approximation_degree). Other unitaries are synthesized exactly.

Parameters

  • basis_gates (list[str]) – List of gate names to target.
  • approximation_degree (float) – Closeness of approximation (0: lowest, 1: highest).
  • coupling_map (CouplingMap) – the coupling map of the backend in case synthesis is done on a physical circuit. The directionality of the coupling_map will be taken into account if pulse_optimize is True/None and natural_direction is True/None.
  • backend_props (BackendProperties) – Properties of a backend to synthesize for (e.g. gate fidelities).
  • pulse_optimize (bool) – Whether to optimize pulses during synthesis. A value of None will attempt it but fall back if it doesn’t succeed. A value of True will raise an error if pulse-optimized synthesis does not succeed.
  • natural_direction (bool) – Whether to apply synthesis considering directionality of 2-qubit gates. Only applies when pulse_optimize is True or None. The natural direction is determined by first checking to see whether the coupling map is unidirectional. If there is no coupling map or the coupling map is bidirectional, the gate direction with the shorter duration from the backend properties will be used. If set to True, and a natural direction can not be determined, raises TranspileError. If set to None, no exception will be raised if a natural direction can not be determined.
  • synth_gates (list[str]) – List of gates to synthesize. If None and pulse_optimize is False or None, default to [‘unitary’]. If None and pulse_optimzie == True, default to [‘unitary’, ‘swap’]

Methods

name

UnitarySynthesis.name()

Return the name of the pass.

run

UnitarySynthesis.run(dag)

Run the UnitarySynthesis pass on dag.

Parameters

dag (DAGCircuit) – input dag.

Return type

DAGCircuit

Returns

Output dag with UnitaryGates synthesized to target basis.

Raises

TranspilerError

  1. pulse_optimize is True but pulse optimal decomposition is not known for requested basis. 2. pulse_optimize is True and natural_direction is True but a preferred gate direction can’t be determined from the coupling map or the relative gate lengths.

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?
Report a bug or request content on GitHub.