From 996185527251c603d614f7583adc860b19ffb03a Mon Sep 17 00:00:00 2001 From: Changsoo Kim <57739683+csookim@users.noreply.github.com> Date: Wed, 11 Dec 2024 17:08:39 +0900 Subject: [PATCH] Update src/qibo/transpiler/pipeline.py Co-authored-by: Renato Mello --- src/qibo/transpiler/pipeline.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qibo/transpiler/pipeline.py b/src/qibo/transpiler/pipeline.py index c9d284008c..bb1ede80a9 100644 --- a/src/qibo/transpiler/pipeline.py +++ b/src/qibo/transpiler/pipeline.py @@ -51,7 +51,8 @@ class Passes: passes (list, optional): List of transpiler passes to be applied sequentially. If ``None``, default transpiler will be used. Defaults to ``None``. connectivity (:class:`networkx.Graph`, optional): Hardware connectivity. - native_gates (:class:`qibo.transpiler.unroller.NativeGates`, optional): Native gates supported by the hardware. Defaults to :class:`qibo.transpiler.unroller.NativeGates.default()`. + native_gates (:class:`qibo.transpiler.unroller.NativeGates`, optional): Native gates supported by the hardware. + Defaults to :class:`qibo.transpiler.unroller.NativeGates.default()`. on_qubits (list, optional): List of qubits to be used in the transpiler. If ``None``, all qubits in the connectivity will be used. Defaults to ``None``. """