Skip to content

Commit

Permalink
added (#1978)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamFerracin authored and kt474 committed Oct 17, 2024
1 parent 689c64e commit ce3d7a2
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Finally, preview the docs build by following the instructions in
Building The release notes are part of the standard qiskit-ibm-runtime
documentation builds. To check what the rendered html output of the release
notes will look like for the current state of the repo you can run:
`tox -edocs` which will build all the documentation into `docs/_build/html`
`tox -e docs` which will build all the documentation into `docs/_build/html`
and the release notes in particular will be located at
`docs/_build/html/release_notes.html`.

Expand Down
4 changes: 4 additions & 0 deletions docs/apidocs/debug_tools.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.. automodule:: qiskit_ibm_runtime.debug_tools
:no-members:
:no-inherited-members:
:no-special-members:
1 change: 1 addition & 0 deletions docs/apidocs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ qiskit-ibm-runtime API reference
qiskit_ibm_runtime.transpiler.passes.scheduling
fake_provider
execution_span
debug_tools
visualization
21 changes: 20 additions & 1 deletion qiskit_ibm_runtime/debug_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,26 @@
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

"""Functions and classes for debugging and analyzing qiskit-ibm-runtime jobs."""
"""
=======================================================
Debugging tools (:mod:`qiskit_ibm_runtime.debug_tools`)
=======================================================
.. currentmodule:: qiskit_ibm_runtime.debug_tools
The tools for debugging and analyzing qiskit-ibm-runtime jobs.
Classes
=======
.. autosummary::
:toctree: ../stubs/
Neat
NeatResult
NeatPubResult
"""

from .neat import Neat
from .neat_results import NeatPubResult, NeatResult

0 comments on commit ce3d7a2

Please sign in to comment.