From 960f26702ee6570966b5daaeec6e40d327062b1a Mon Sep 17 00:00:00 2001 From: Rebecca Dimock <66339736+beckykd@users.noreply.github.com> Date: Thu, 12 Dec 2024 14:25:26 -0600 Subject: [PATCH] Remove brackets from alt text (#2080) --- qiskit_ibm_runtime/fake_provider/__init__.py | 6 ++-- .../transpiler/passes/scheduling/__init__.py | 34 +++++++++---------- .../passes/scheduling/dynamical_decoupling.py | 4 +-- 3 files changed, 22 insertions(+), 22 deletions(-) diff --git a/qiskit_ibm_runtime/fake_provider/__init__.py b/qiskit_ibm_runtime/fake_provider/__init__.py index 82b5917b9..1b62b8391 100644 --- a/qiskit_ibm_runtime/fake_provider/__init__.py +++ b/qiskit_ibm_runtime/fake_provider/__init__.py @@ -32,7 +32,7 @@ Here is an example of using a fake backend for transpilation and simulation. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -54,7 +54,7 @@ circuit.draw('mpl', style="iqp") .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -64,7 +64,7 @@ transpiled_circuit.draw('mpl', style="iqp") .. plot:: - :alt: [Histogram output by the previous code.] + :alt: Histogram output by the previous code. :include-source: :context: close-figs diff --git a/qiskit_ibm_runtime/transpiler/passes/scheduling/__init__.py b/qiskit_ibm_runtime/transpiler/passes/scheduling/__init__.py index a5662ca23..b26cd4088 100644 --- a/qiskit_ibm_runtime/transpiler/passes/scheduling/__init__.py +++ b/qiskit_ibm_runtime/transpiler/passes/scheduling/__init__.py @@ -49,7 +49,7 @@ for a dynamic circuit backend's execution model: .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -101,7 +101,7 @@ using the :class:`PadDynamicalDecoupling` pass as shown below: .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -137,7 +137,7 @@ Scheduling with old format ``c_if`` conditioned gates is not supported. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -153,7 +153,7 @@ We may then schedule the transpiled circuit without further modification. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -178,7 +178,7 @@ prior to your scheduling pass. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -210,7 +210,7 @@ gates to the same measurement qubit. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -230,7 +230,7 @@ on a different qubit than the measurement qubit. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -245,7 +245,7 @@ and will not be performed using the fast-path. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -262,7 +262,7 @@ padded out to the duration of the longest block. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -281,7 +281,7 @@ This behavior is also applied to the else condition of a fast-path eligible branch. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -302,7 +302,7 @@ the standard higher latency conditional branch. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -322,7 +322,7 @@ the conditional branch. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -338,7 +338,7 @@ Conditional measurements are not eligible for the fast-path. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -353,7 +353,7 @@ Similarly nested control-flow is not eligible. .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -375,7 +375,7 @@ be padded out by the scheduler to ensure they are of the same duration in Qiskit .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -395,7 +395,7 @@ qc.draw(output="mpl", style="iqp") .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -420,7 +420,7 @@ For example: .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs diff --git a/qiskit_ibm_runtime/transpiler/passes/scheduling/dynamical_decoupling.py b/qiskit_ibm_runtime/transpiler/passes/scheduling/dynamical_decoupling.py index 47afd6418..248174706 100644 --- a/qiskit_ibm_runtime/transpiler/passes/scheduling/dynamical_decoupling.py +++ b/qiskit_ibm_runtime/transpiler/passes/scheduling/dynamical_decoupling.py @@ -54,7 +54,7 @@ class PadDynamicalDecoupling(BlockBasePadder): (including global phase). .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs @@ -87,7 +87,7 @@ class PadDynamicalDecoupling(BlockBasePadder): circ_dd.draw('mpl', style="iqp") .. plot:: - :alt: [Circuit diagram output by the previous code.] + :alt: Circuit diagram output by the previous code. :include-source: :context: close-figs