Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
6cb7859
feat: add dtype objects, backend properties, and dtype registration
nicola-bastianello Jun 12, 2026
9823697
docs: added discussion of supported dtypes
nicola-bastianello Jun 12, 2026
2767bad
Merge remote-tracking branch 'origin/main' into dtypes
nicola-bastianello Jun 12, 2026
1c18f8a
enh: next iteration of dtypes
nicola-bastianello Jun 14, 2026
b987a82
ref: change enums names
nicola-bastianello Jun 15, 2026
b963ff8
enh: change default dtype names
nicola-bastianello Jun 15, 2026
41aed3b
enh: first working version
nicola-bastianello Jun 17, 2026
86212da
enh: improvements
nicola-bastianello Jun 17, 2026
249993f
enh: added filtering in dtypes function
nicola-bastianello Jun 17, 2026
cf6c260
enh: user guide
nicola-bastianello Jun 17, 2026
8478f20
enh: added constants
nicola-bastianello Jun 18, 2026
9c189d1
fix: tests and sphinx
nicola-bastianello Jun 18, 2026
3d02be1
enh: add test for dtypes
nicola-bastianello Jun 18, 2026
f40712f
enh: add backend name and utils submodule
nicola-bastianello Jun 18, 2026
4066770
enh: dtypes docstring
nicola-bastianello Jun 18, 2026
5f68671
fix: remove ruff preview rules
nicola-bastianello Jun 19, 2026
b67c251
fix: address PR comments
nicola-bastianello Jul 1, 2026
3d1f1f1
fix: added version control
nicola-bastianello Jul 1, 2026
e259113
fix: properly lock versions, improve pyproject.toml, fix numpy-relate…
nicola-bastianello Jul 6, 2026
2417bc7
enh: add item to array, base coercion dunders on item
nicola-bastianello Jul 6, 2026
8542728
enh: unify error messaging
nicola-bastianello Jul 6, 2026
9a84679
enh: first steps for cupy support
nicola-bastianello Jul 6, 2026
2ab147c
enh: full cupy backend definition
nicola-bastianello Jul 9, 2026
a9644bc
fix: small fixes
nicola-bastianello Jul 9, 2026
7c736af
Merge branch 'main' into cupy
nicola-bastianello Aug 12, 2026
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
5 changes: 5 additions & 0 deletions decent_array/interoperability/_cupy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""CuPy backend package; importing it triggers backend registration."""

from .cupy_backend import CupyBackend

__all__ = ["CupyBackend"]
Loading