Skip to content

Commit

Permalink
Remove brackets from alt text (#2080)
Browse files Browse the repository at this point in the history
  • Loading branch information
beckykd authored Dec 12, 2024
1 parent 8bd5a08 commit 960f267
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions qiskit_ibm_runtime/fake_provider/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
34 changes: 17 additions & 17 deletions qiskit_ibm_runtime/transpiler/passes/scheduling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 960f267

Please sign in to comment.