diff --git a/docs/transpile/unitary-synthesis.ipynb b/docs/transpile/unitary-synthesis.ipynb index 8c5d48a2997..d6e3ad4e4e4 100644 --- a/docs/transpile/unitary-synthesis.ipynb +++ b/docs/transpile/unitary-synthesis.ipynb @@ -6,7 +6,13 @@ "source": [ "# Translate instructions to basis gates\n", "\n", - "Aside from choosing a layout and routing configuration, translating the instructions of a quantum circuit into the native basis gates of a backend is one of the most complex tasks that the transpiler must take on. This type of task is executed in several stages of the transpiler and is primarily powered by the [`UnitarySynthesis`](../api/qiskit/qiskit.transpiler.passes.UnitarySynthesis) pass." + "Aside from choosing a layout and routing configuration, translating the instructions of a quantum circuit into the native basis gates of a backend is one of the most complex tasks that the transpiler must take on. This type of task is executed in several stages of the transpiler and is primarily powered by the [`UnitarySynthesis`](../api/qiskit/qiskit.transpiler.passes.UnitarySynthesis) pass. It is also used in several stages of the preset pass managers including `init`, `translation`, and `optimization`.\n", + "\n", + "Points to cover:\n", + "\n", + "- How it works\n", + "- KAK decomposition\n", + "- Multiplexor formalism and decomposing 3+ qubit gates." ] }, {