Skip to content

Commit f0eaba9

Browse files
author
jax authors
committed
Merge pull request #21469 from jakevdp:array-api-update
PiperOrigin-RevId: 638328475
2 parents 55de89b + 6fb357d commit f0eaba9

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

.github/workflows/jax-array-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
repository: data-apis/array-api-tests
2727
# TODO(jakevdp) update this to a stable release/tag when available.
28-
ref: 'e38ce3466e596ed2b8fa4638f161f5563ded81a8' # Latest commit as of 2024-04-15
28+
ref: '33f2d2ea2f3dd2b3ceeeb4519d55e08096184149' # Latest commit as of 2024-05-28
2929
submodules: 'true'
3030
path: 'array-api-tests'
3131
- name: Set up Python ${{ matrix.python-version }}

jax/experimental/array_api/skips.txt

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,27 @@ array_api_tests/test_array_object.py::test_setitem
99
array_api_tests/test_special_cases.py::test_binary
1010
array_api_tests/test_special_cases.py::test_unary
1111

12-
# fft test suite is buggy as of 83f0bcdc
13-
array_api_tests/test_fft.py
14-
1512
# Pending implementation update for proper dtype promotion behavior,
1613
# see https://github.com/data-apis/array-api-tests/issues/234
1714
array_api_tests/test_statistical_functions.py::test_sum
1815
array_api_tests/test_statistical_functions.py::test_prod
19-
array_api_tests/test_linalg.py::test_trace
2016

2117
# Pending bugfix, see https://github.com/data-apis/array-api-tests/issues/256
2218
array_api_tests/test_signatures.py::test_func_signature[logical_and]
2319
array_api_tests/test_signatures.py::test_func_signature[logical_or]
24-
array_api_tests/test_signatures.py::test_func_signature[logical_xor]
20+
array_api_tests/test_signatures.py::test_func_signature[logical_xor]
21+
22+
# Returns int32 when int64 is expected
23+
array_api_tests/test_searching_functions.py::test_searchsorted
24+
25+
# Various info functions not yet defined
26+
array_api_tests/test_has_names.py::test_has_names[info-capabilities]
27+
array_api_tests/test_has_names.py::test_has_names[info-default_device]
28+
array_api_tests/test_has_names.py::test_has_names[info-default_dtypes]
29+
array_api_tests/test_has_names.py::test_has_names[info-devices]
30+
array_api_tests/test_has_names.py::test_has_names[info-dtypes]
31+
array_api_tests/test_signatures.py::test_func_signature[capabilities]
32+
array_api_tests/test_signatures.py::test_func_signature[default_device]
33+
array_api_tests/test_signatures.py::test_func_signature[default_dtypes]
34+
array_api_tests/test_signatures.py::test_func_signature[devices]
35+
array_api_tests/test_signatures.py::test_func_signature[dtypes]

0 commit comments

Comments
 (0)