Skip to content

Commit 6f26ebb

Browse files
committed
ENH: New function lazy_apply
1 parent ce7342e commit 6f26ebb

File tree

8 files changed

+857
-16
lines changed

8 files changed

+857
-16
lines changed

docs/api-lazy.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Tools for lazy backends
2+
3+
These additional functions are meant to be used to support compatibility with
4+
lazy backends, e.g. Dask or Jax:
5+
6+
```{eval-rst}
7+
.. currentmodule:: array_api_extra
8+
.. autosummary::
9+
:nosignatures:
10+
:toctree: generated
11+
12+
lazy_apply
13+
testing.lazy_xp_function
14+
testing.patch_lazy_xp_functions
15+
```

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
:hidden:
66
self
77
api-reference.md
8-
testing-utils.md
8+
api-lazy.md
99
contributing.md
1010
contributors.md
1111
```

docs/testing-utils.md

-14
This file was deleted.

pixi.lock

+30-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ sphinx-autodoc-typehints = "*"
106106
dask-core = "*"
107107
pytest = "*"
108108
typing-extensions = "*"
109+
numpy = "*"
109110

110111
[tool.pixi.feature.docs.tasks]
111112
docs = { cmd = "sphinx-build . build/", cwd = "docs" }

src/array_api_extra/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
setdiff1d,
1414
sinc,
1515
)
16+
from ._lib._lazy import lazy_apply
1617

1718
__version__ = "0.7.0.dev0"
1819

@@ -27,6 +28,7 @@
2728
"expand_dims",
2829
"isclose",
2930
"kron",
31+
"lazy_apply",
3032
"nunique",
3133
"pad",
3234
"setdiff1d",

0 commit comments

Comments
 (0)