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

DNM WIP ENH: More lazy functions #99

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
18 changes: 18 additions & 0 deletions docs/api-lazy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Tools for lazy backends

These additional functions are meant to be used to support compatibility with
lazy backends, e.g. Dask or Jax:

```{eval-rst}
.. currentmodule:: array_api_extra
.. autosummary::
:nosignatures:
:toctree: generated

lazy_apply
lazy_raise
lazy_wait_on
lazy_warn
testing.lazy_xp_function
testing.patch_lazy_xp_functions
```
3 changes: 3 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@

intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"numpy": ("https://numpy.org/doc/stable", None),
"dask": ("https://docs.dask.org/en/stable", None),
"jax": ("https://jax.readthedocs.io/en/latest", None),
"equinox": ("https://docs.kidger.site/equinox/", None),
}

nitpick_ignore = [
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:hidden:
self
api-reference.md
testing-utils.md
api-lazy.md
contributing.md
contributors.md
```
Expand Down
14 changes: 0 additions & 14 deletions docs/testing-utils.md

This file was deleted.

115 changes: 71 additions & 44 deletions pixi.lock

Large diffs are not rendered by default.

13 changes: 5 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = ["array-api-compat>=1.10.0,<2"]
# dependencies = ["array-api-compat>=1.10.0,<2"] # DNM

[project.urls]
Homepage = "https://github.com/data-apis/array-api-extra"
Expand All @@ -48,10 +48,11 @@ platforms = ["linux-64", "osx-arm64", "win-64"]

[tool.pixi.dependencies]
python = ">=3.10,<3.14"
array-api-compat = ">=1.10.0,<2"
# array-api-compat = ">=1.10.0,<2" # DNM

[tool.pixi.pypi-dependencies]
array-api-extra = { path = ".", editable = true }
array-api-compat = { git = "https://github.com/data-apis/array-api-compat" } # DNM

[tool.pixi.feature.lint.dependencies]
typing-extensions = "*"
Expand Down Expand Up @@ -106,6 +107,7 @@ sphinx-autodoc-typehints = "*"
dask-core = "*"
pytest = "*"
typing-extensions = "*"
numpy = "*"

[tool.pixi.feature.docs.tasks]
docs = { cmd = "sphinx-build . build/", cwd = "docs" }
Expand Down Expand Up @@ -311,10 +313,5 @@ checks = [
"ES01", # most docstrings do not need an extended summary
]
exclude = [ # don't report on objects that match any of these regex
'.*test_at.*',
'.*test_funcs.*',
'.*test_testing.*',
'.*test_utils.*',
'.*test_version.*',
'.*test_vendor.*',
'.*test_*',
]
5 changes: 5 additions & 0 deletions src/array_api_extra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
setdiff1d,
sinc,
)
from ._lib._lazy import lazy_apply, lazy_raise, lazy_wait_on, lazy_warn

__version__ = "0.6.1.dev0"

Expand All @@ -25,6 +26,10 @@
"expand_dims",
"isclose",
"kron",
"lazy_apply",
"lazy_raise",
"lazy_wait_on",
"lazy_warn",
"nunique",
"pad",
"setdiff1d",
Expand Down
Loading