Skip to content

Commit

Permalink
quantum-computing.ibm.com is going to disappear, eventually (#11830)
Browse files Browse the repository at this point in the history
* quantum-computing.ibm.com is going to disappear, eventually

* black

* Add changes in `MAINTAING.md`

* Fix broken links

---------

Co-authored-by: Jake Lishman <jake.lishman@ibm.com>
Co-authored-by: Jake Lishman <jake@binhbar.com>
(cherry picked from commit 5ae4790)
  • Loading branch information
1ucian0 authored and mergify[bot] committed Feb 19, 2024
1 parent 5034b05 commit c500165
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions MAINTAINING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ The way documentation is structured in Qiskit is to push as much of the actual
documentation into the docstrings as possible. This makes it easier for
additions and corrections to be made during development, because the majority
of the documentation lives near the code being changed. These docstrings are then pulled into
the API Reference section of https://docs.quantum-computing.ibm.com.
the API Reference section of https://docs.quantum.ibm.com.

Refer to https://qiskit.github.io/qiskit_sphinx_theme/apidocs/index.html for how to create and
write effective API documentation, such as setting up the RST files and docstrings.

If changes you are making affect non-API reference content in https://docs.quantum-computing.ibm.com
If changes you are making affect non-API reference content in https://docs.quantum.ibm.com
you can open an issue (or better yet a PR) to update the relevant page in https://github.com/Qiskit/documentation.
You can also use this repo to suggest or contribute brand new content beyond updates to the API reference.
You can also use this repo to suggest or contribute brand new content beyond updates to the API reference.
2 changes: 1 addition & 1 deletion qiskit/circuit/quantumcircuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ def tensor(self, other: "QuantumCircuit", inplace: bool = False) -> Optional["Qu
Remember that in the little-endian convention the leftmost operation will be at the bottom
of the circuit. See also
`the docs <https://docs.quantum-computing.ibm.com/build/circuit-construction>`__
`the docs <https://docs.quantum.ibm.com/build/circuit-construction>`__
for more information.
.. parsed-literal::
Expand Down
2 changes: 1 addition & 1 deletion qiskit/qpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@
With the support of :class:`.~ScheduleBlock`, now :class:`~.QuantumCircuit` can be
serialized together with :attr:`~.QuantumCircuit.calibrations`, or
`Pulse Gates <https://docs.quantum-computing.ibm.com/build/pulse>`_.
`Pulse Gates <https://docs.quantum.ibm.com/build/pulse>`_.
In QPY version 5 and above, :ref:`qpy_circuit_calibrations` payload is
packed after the :ref:`qpy_instructions` block.
Expand Down
6 changes: 3 additions & 3 deletions qiskit/transpiler/passes/basis/basis_translator.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __init__(self, equivalence_library, target_basis, target=None, min_qubits=0)
equivalence_library (EquivalenceLibrary): The equivalence library
which will be used by the BasisTranslator pass. (Instructions in
this library will not be unrolled by this pass.)
target_basis (list[str]): Target basis names to unroll to, e.g. `['u3', 'cx']`.
target_basis (list[str]): Target basis names to unroll to, e.g. ``['u3', 'cx']``.
target (Target): The backend compilation target
min_qubits (int): The minimum number of qubits for operations in the input
dag to translate.
Expand Down Expand Up @@ -202,7 +202,7 @@ def run(self, dag):
"target basis is not universal or there are additional equivalence rules "
"needed in the EquivalenceLibrary being used. For more details on this "
"error see: "
"https://docs.quantum-computing.ibm.com/api/qiskit/qiskit.transpiler.passes."
"https://docs.quantum.ibm.com/api/qiskit/transpiler_passes."
"BasisTranslator#translation-errors"
)

Expand All @@ -220,7 +220,7 @@ def run(self, dag):
f"basis: {list(target_basis)}. This likely means the target basis is not universal "
"or there are additional equivalence rules needed in the EquivalenceLibrary being "
"used. For more details on this error see: "
"https://docs.quantum-computing.ibm.com/api/qiskit/qiskit.transpiler.passes."
"https://docs.quantum.ibm.com/api/qiskit/transpiler_passes."
"BasisTranslator#translation-errors"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ValidatePulseGates(AnalysisPass):
In Qiskit SDK, we can define the pulse-level implementation of custom quantum gate
instructions, as a `pulse gate
<https://docs.quantum-computing.ibm.com/build/pulse>`__,
<https://docs.quantum.ibm.com/build/pulse>`__,
thus user gates should satisfy all waveform memory constraints imposed by the backend.
This pass validates all attached calibration entries and raises ``TranspilerError`` to
Expand Down

0 comments on commit c500165

Please sign in to comment.