Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 32
ENH: implement at#53
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
34f89f5a50c5aef19e42f64396d098141ca38562dbb19cc1126f9a7dFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -6,6 +6,7 @@ | ||
| :nosignatures: | ||
| :toctree: generated | ||
| at | ||
| atleast_nd | ||
| cov | ||
| create_diagonal | ||
Large diffs are not rendered by default.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -26,7 +26,7 @@ classifiers = [ | ||
| "Typing :: Typed", | ||
| ] | ||
| dynamic = ["version"] | ||
| dependencies = ["array-api-compat>=1.1.1"] | ||
| dependencies = ["array-api-compat>=1.10.0,<2"] | ||
| [project.optional-dependencies] | ||
| tests = [ | ||
| @@ -62,8 +62,8 @@ channels = ["https://prefix.dev/conda-forge"] | ||
| platforms = ["linux-64", "osx-arm64", "win-64"] | ||
| [tool.pixi.dependencies] | ||
| python = ">=3.10.15,<3.14" | ||
| array-api-compat = ">=1.1.1" | ||
| python = ">=3.10,<3.14" | ||
crusaderky marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| array-api-compat = ">=1.10.0,<2" | ||
| [tool.pixi.pypi-dependencies] | ||
| array-api-extra = { path = ".", editable = true } | ||
| @@ -130,6 +130,35 @@ python = "~=3.10.0" | ||
| [tool.pixi.feature.py313.dependencies] | ||
| python = "~=3.13.0" | ||
| # Backends that can run on CPU-only hosts | ||
| [tool.pixi.feature.backends.target.linux-64.dependencies] | ||
| pytorch = "*" | ||
| dask = "*" | ||
| sparse = ">=0.15" | ||
| jax = "*" | ||
| [tool.pixi.feature.backends.target.osx-arm64.dependencies] | ||
| pytorch = "*" | ||
| dask = "*" | ||
| sparse = ">=0.15" | ||
| jax = "*" | ||
| [tool.pixi.feature.backends.target.win-64.dependencies] | ||
| # pytorch = "*" # Package unavailable on Windows | ||
| dask = "*" | ||
| sparse = ">=0.15" | ||
| # jax = "*" # Package unavailable on Windows | ||
| # Backends that require a GPU host and a CUDA driver | ||
| [tool.pixi.feature.cuda-backends.target.linux-64.dependencies] | ||
| cupy = "*" | ||
| [tool.pixi.feature.cuda-backends.target.osx-arm64.dependencies] | ||
| # cupy = "*" # Package unavailable on macOSX | ||
| [tool.pixi.feature.cuda-backends.target.win-64.dependencies] | ||
| cupy = "*" | ||
| [tool.pixi.environments] | ||
| default = { solve-group = "default" } | ||
| lint = { features = ["lint"], solve-group = "default" } | ||
| @@ -138,7 +167,9 @@ docs = { features = ["docs"], solve-group = "default" } | ||
| dev = { features = ["lint", "tests", "docs", "dev"], solve-group = "default" } | ||
| ci-py310 = ["py310", "tests"] | ||
| ci-py313 = ["py313", "tests"] | ||
| # CUDA not available on free github actions | ||
| ci-backends = ["py310", "tests", "backends"] | ||
| tests-backends = ["py310", "tests", "backends", "cuda-backends"] | ||
| # pytest | ||
| @@ -195,6 +226,8 @@ reportAny = false | ||
| reportExplicitAny = false | ||
| # data-apis/array-api-strict#6 | ||
| reportUnknownMemberType = false | ||
| # no array-api-compat type stubs | ||
| reportUnknownVariableType = false | ||
| # Ruff | ||
| @@ -236,6 +269,7 @@ ignore = [ | ||
| "PLR09", # Too many <...> | ||
| "PLR2004", # Magic value used in comparison | ||
| "ISC001", # Conflicts with formatter | ||
| "N801", # Class name should use CapWords convention | ||
| "N802", # Function name should be lowercase | ||
| "N806", # Variable in function should be lowercase | ||
| ] | ||
| @@ -271,6 +305,7 @@ checks = [ | ||
| "ES01", | ||
| ] | ||
| exclude = [ # don't report on objects that match any of these regex | ||
| '.*test_at.*', | ||
| '.*test_funcs.*', | ||
| '.*test_utils.*', | ||
| '.*test_version.*', | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.