Skip to content

Commit

Permalink
missed commited files
Browse files Browse the repository at this point in the history
  • Loading branch information
DanPuzzuoli committed Feb 26, 2024
1 parent 9f2bda1 commit bd50426
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/apidocs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ Qiskit Dynamics API Reference
signals
pulse
perturbation
arraylias
array
dispatch
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@
autoclass_content = "both"
intersphinx_mapping = {
"qiskit": ("https://docs.quantum.ibm.com/api/qiskit", None),
"qiskit_experiments": ("https://qiskit-extensions.github.io/qiskit-experiments/", None)
"qiskit_experiments": ("https://qiskit-extensions.github.io/qiskit-experiments/", None),
"arraylias": ("https://qiskit-extensions.github.io/arraylias/", None)
}

# nbsphinx options (for tutorials)
Expand Down
22 changes: 18 additions & 4 deletions qiskit_dynamics/arraylias/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,27 @@
# that they have been altered from the originals.

r"""
=========================================
Models (:mod:`qiskit_dynamics.arraylias`)
=========================================
============================================
Arraylias (:mod:`qiskit_dynamics.arraylias`)
============================================
.. currentmodule:: qiskit_dynamics.arraylias
Module for Qiskit Dynamics global NumPy and SciPy aliases.
Qiskit Dynamics uses `Arraylias <https://qiskit-extensions.github.io/arraylias/>`_ to manage
dispatching of array operations for different array types coming from different array libraries.
This module contains Qiskit Dynamics-global extensions of the default NumPy and SciPy aliases
provided by Arraylias <https://qiskit-extensions.github.io/arraylias/>`_, which have been configured
to support the `JAX <https://jax.readthedocs.io/en/latest/>`_ `BCOO` sparse array type, as well as
the sparse types offered by SciPy.
.. autosummary::
:toctree: ../stubs/
DYNAMICS_NUMPY_ALIAS
DYNAMICS_SCIPY_ALIAS
DYNAMICS_NUMPY
DYNAMICS_SCIPY
"""

from .alias import (
Expand Down

0 comments on commit bd50426

Please sign in to comment.