├── .flake8 ├── .git-blame-ignore-revs ├── .gitattributes ├── .github └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── array-api-strict-skips.txt ├── array_api_tests ├── __init__.py ├── _array_module.py ├── _version.py ├── algos.py ├── array_helpers.py ├── dtype_helpers.py ├── hypothesis_helpers.py ├── pytest_helpers.py ├── shape_helpers.py ├── stubs.py ├── test_array_object.py ├── test_constants.py ├── test_creation_functions.py ├── test_data_type_functions.py ├── test_fft.py ├── test_has_names.py ├── test_indexing_functions.py ├── test_inspection_functions.py ├── test_linalg.py ├── test_manipulation_functions.py ├── test_operators_and_elementwise_functions.py ├── test_searching_functions.py ├── test_set_functions.py ├── test_signatures.py ├── test_sorting_functions.py ├── test_special_cases.py ├── test_statistical_functions.py ├── test_utility_functions.py └── typing.py ├── conftest.py ├── meta_tests ├── README.md ├── __init__.py ├── test_array_helpers.py ├── test_broadcasting.py ├── test_equality_mapping.py ├── test_hypothesis_helpers.py ├── test_linalg.py ├── test_partial_adopters.py ├── test_pytest_helpers.py ├── test_signatures.py ├── test_special_cases.py └── test_utils.py ├── pytest.ini ├── reporting.py ├── requirements.txt └── setup.cfg /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | select = F 3 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | array_api_tests/_version.py} export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/_config.yml -------------------------------------------------------------------------------- /array-api-strict-skips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array-api-strict-skips.txt -------------------------------------------------------------------------------- /array_api_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/__init__.py -------------------------------------------------------------------------------- /array_api_tests/_array_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/_array_module.py -------------------------------------------------------------------------------- /array_api_tests/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/_version.py -------------------------------------------------------------------------------- /array_api_tests/algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/algos.py -------------------------------------------------------------------------------- /array_api_tests/array_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/array_helpers.py -------------------------------------------------------------------------------- /array_api_tests/dtype_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/dtype_helpers.py -------------------------------------------------------------------------------- /array_api_tests/hypothesis_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/hypothesis_helpers.py -------------------------------------------------------------------------------- /array_api_tests/pytest_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/pytest_helpers.py -------------------------------------------------------------------------------- /array_api_tests/shape_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/shape_helpers.py -------------------------------------------------------------------------------- /array_api_tests/stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/stubs.py -------------------------------------------------------------------------------- /array_api_tests/test_array_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_array_object.py -------------------------------------------------------------------------------- /array_api_tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_constants.py -------------------------------------------------------------------------------- /array_api_tests/test_creation_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_creation_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_data_type_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_data_type_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_fft.py -------------------------------------------------------------------------------- /array_api_tests/test_has_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_has_names.py -------------------------------------------------------------------------------- /array_api_tests/test_indexing_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_indexing_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_inspection_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_inspection_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_linalg.py -------------------------------------------------------------------------------- /array_api_tests/test_manipulation_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_manipulation_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_operators_and_elementwise_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_operators_and_elementwise_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_searching_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_searching_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_set_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_set_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_signatures.py -------------------------------------------------------------------------------- /array_api_tests/test_sorting_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_sorting_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_special_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_special_cases.py -------------------------------------------------------------------------------- /array_api_tests/test_statistical_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_statistical_functions.py -------------------------------------------------------------------------------- /array_api_tests/test_utility_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/test_utility_functions.py -------------------------------------------------------------------------------- /array_api_tests/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/array_api_tests/typing.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/conftest.py -------------------------------------------------------------------------------- /meta_tests/README.md: -------------------------------------------------------------------------------- 1 | Testing the utilities used in `array_api_tests/` -------------------------------------------------------------------------------- /meta_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta_tests/test_array_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_array_helpers.py -------------------------------------------------------------------------------- /meta_tests/test_broadcasting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_broadcasting.py -------------------------------------------------------------------------------- /meta_tests/test_equality_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_equality_mapping.py -------------------------------------------------------------------------------- /meta_tests/test_hypothesis_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_hypothesis_helpers.py -------------------------------------------------------------------------------- /meta_tests/test_linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_linalg.py -------------------------------------------------------------------------------- /meta_tests/test_partial_adopters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_partial_adopters.py -------------------------------------------------------------------------------- /meta_tests/test_pytest_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_pytest_helpers.py -------------------------------------------------------------------------------- /meta_tests/test_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_signatures.py -------------------------------------------------------------------------------- /meta_tests/test_special_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_special_cases.py -------------------------------------------------------------------------------- /meta_tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/meta_tests/test_utils.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/pytest.ini -------------------------------------------------------------------------------- /reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/reporting.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/data-apis/array-api-tests/HEAD/setup.cfg --------------------------------------------------------------------------------