Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arraylias integration - Signal class - #269

Merged
merged 45 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
02edfce
arraylias to signal class
to24toro Oct 16, 2023
693e378
potential fix for using test_array_backends
DanPuzzuoli Oct 16, 2023
de2596f
Merge pull request #2 from DanPuzzuoli/potential-test-fix
to24toro Oct 17, 2023
055a086
added test_array_backends to TestSignalsJaxTransformations
to24toro Oct 18, 2023
f8a3b62
changed signals.py
to24toro Oct 18, 2023
fcaaa82
remove unsed module
to24toro Oct 18, 2023
bb5422c
pylint: disable=no-member in test_signals.py
to24toro Oct 19, 2023
47a9de4
added docstrings to setup in test_signals.py
to24toro Oct 19, 2023
941adde
transfer_functions.py
to24toro Oct 20, 2023
f374ff1
Merge branch 'main' into arraylias/signal
DanPuzzuoli Oct 24, 2023
46801f7
changing Signal(Array(x)) to Signal(x) for constant signals
DanPuzzuoli Oct 24, 2023
2dd286b
fixing lanczos jax diag test
DanPuzzuoli Oct 24, 2023
44a935e
fixing JAX perturbative solver tests
DanPuzzuoli Oct 24, 2023
42ff34f
remove pdb
to24toro Oct 25, 2023
d3fd3dc
lint
to24toro Oct 25, 2023
79c45ce
change alias to numpy_alias
to24toro Oct 25, 2023
a3509f5
remove type hint included in ArrayLike
to24toro Oct 25, 2023
2849168
add list to Arraylike
to24toro Oct 25, 2023
921126b
remove list from type hint
to24toro Oct 25, 2023
c0b15c5
fixing JAX perturbative solver test
DanPuzzuoli Oct 25, 2023
9717146
getting pulse tests working through addition of _preferred_lib function
DanPuzzuoli Oct 25, 2023
a6043b3
fixing pulse conversion errors
DanPuzzuoli Oct 25, 2023
09ffd37
fixing remaining errors with simple multiple dispatching function
DanPuzzuoli Oct 25, 2023
3a36f1c
change isinstance(sig, Array)
to24toro Oct 25, 2023
591b533
change isinstance(sig, Array)
to24toro Oct 25, 2023
fdb82e3
modify Array to unp to pass tests
to24toro Oct 26, 2023
3fcec23
pulse_to_signals
to24toro Oct 26, 2023
facd132
lint
to24toro Oct 26, 2023
2d2321c
modify if statement in _nyquist_warn
to24toro Oct 26, 2023
54cf514
getting docs to ubild
DanPuzzuoli Oct 26, 2023
adcbc60
Merge branch 'arraylias/signal' into further-signal-arraylias-fix
to24toro Oct 27, 2023
2ca2866
Merge pull request #3 from DanPuzzuoli/further-signal-arraylias-fix
to24toro Oct 27, 2023
787f0f8
black
to24toro Oct 27, 2023
7171fd4
Merge branch 'main' into arraylias/signal
to24toro Oct 27, 2023
de6aff0
reorganize import
to24toro Oct 27, 2023
3a4d2b1
Update qiskit_dynamics/signals/signals.py
to24toro Oct 30, 2023
94480ea
Update qiskit_dynamics/signals/signals.py
to24toro Oct 30, 2023
5a6b474
Update qiskit_dynamics/signals/signals.py
to24toro Oct 30, 2023
dcbd902
Update qiskit_dynamics/signals/signals.py
to24toro Oct 30, 2023
0d77f8b
Update qiskit_dynamics/signals/signals.py
to24toro Oct 30, 2023
2e1436e
reflect on comments
to24toro Oct 30, 2023
e2f6449
Merge branch 'main' into arraylias/signal
to24toro Oct 30, 2023
29ba659
Merge branch 'main' into arraylias/signal
DanPuzzuoli Oct 30, 2023
619581b
Update qiskit_dynamics/signals/transfer_functions.py
DanPuzzuoli Oct 30, 2023
12c36da
fixing formatting
DanPuzzuoli Oct 30, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion qiskit_dynamics/arraylias/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,10 @@
Module for Qiskit Dynamics global NumPy and SciPy aliases.
"""

from .alias import DYNAMICS_NUMPY_ALIAS, DYNAMICS_SCIPY_ALIAS, DYNAMICS_NUMPY, DYNAMICS_SCIPY
from .alias import (
DYNAMICS_NUMPY_ALIAS,
DYNAMICS_SCIPY_ALIAS,
DYNAMICS_NUMPY,
DYNAMICS_SCIPY,
ArrayLike,
)
Loading
Loading