├── .all-contributorsrc ├── .dprint.jsonc ├── .editorconfig ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── docs-build.yml │ └── docs-deploy.yml ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── RELEASING.md ├── codecov.yml ├── docs ├── api-lazy.md ├── api-reference.md ├── conf.py ├── contributing.md ├── contributors.md └── index.md ├── lefthook.yml ├── pixi.lock ├── pyproject.toml ├── renovate.json ├── src └── array_api_extra │ ├── __init__.py │ ├── _delegation.py │ ├── _lib │ ├── __init__.py │ ├── _at.py │ ├── _backends.py │ ├── _funcs.py │ ├── _lazy.py │ ├── _testing.py │ └── _utils │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _compat.pyi │ │ ├── _helpers.py │ │ ├── _typing.py │ │ └── _typing.pyi │ ├── py.typed │ └── testing.py ├── tests ├── __init__.py ├── conftest.py ├── test_at.py ├── test_funcs.py ├── test_helpers.py ├── test_lazy.py ├── test_testing.py └── test_version.py ├── typos.toml └── vendor_tests ├── __init__.py ├── _array_api_compat_vendor.py └── test_vendor.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.dprint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.dprint.jsonc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.github/workflows/docs-build.yml -------------------------------------------------------------------------------- /.github/workflows/docs-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.github/workflows/docs-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/RELEASING.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/api-lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/docs/api-lazy.md -------------------------------------------------------------------------------- /docs/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/docs/api-reference.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CONTRIBUTORS.md 2 | ``` 3 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/docs/index.md -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/lefthook.yml -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/pixi.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/renovate.json -------------------------------------------------------------------------------- /src/array_api_extra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/__init__.py -------------------------------------------------------------------------------- /src/array_api_extra/_delegation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_delegation.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/__init__.py: -------------------------------------------------------------------------------- 1 | """Internals of array-api-extra.""" 2 | -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_at.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_backends.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_funcs.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_lazy.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_testing.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_utils/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules housing private utility functions.""" 2 | -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_utils/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_utils/_compat.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_utils/_compat.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_utils/_compat.pyi -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_utils/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_utils/_helpers.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_utils/_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_utils/_typing.py -------------------------------------------------------------------------------- /src/array_api_extra/_lib/_utils/_typing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/_lib/_utils/_typing.pyi -------------------------------------------------------------------------------- /src/array_api_extra/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/array_api_extra/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/src/array_api_extra/testing.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/tests/test_at.py -------------------------------------------------------------------------------- /tests/test_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/tests/test_funcs.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/tests/test_lazy.py -------------------------------------------------------------------------------- /tests/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/tests/test_testing.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/typos.toml -------------------------------------------------------------------------------- /vendor_tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Allow for relative imports in `test_vendor.py`.""" 2 | -------------------------------------------------------------------------------- /vendor_tests/_array_api_compat_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/vendor_tests/_array_api_compat_vendor.py -------------------------------------------------------------------------------- /vendor_tests/test_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-extra/HEAD/vendor_tests/test_vendor.py --------------------------------------------------------------------------------