-
Notifications
You must be signed in to change notification settings - Fork 41
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
DeadlineExceeded failures in test_eye/test_linspace #214
Comments
This is the change I applied locally: diff --git a/array_api_tests/test_creation_functions.py b/array_api_tests/test_creation_functions.py
index 94b6b0e..af86542 100644
--- a/array_api_tests/test_creation_functions.py
+++ b/array_api_tests/test_creation_functions.py
@@ -354,14 +354,25 @@ def test_eye(n_rows, n_cols, kw):
ph.assert_kw_dtype("eye", kw_dtype=kw["dtype"], out_dtype=out.dtype)
_n_cols = n_rows if n_cols is None else n_cols
ph.assert_shape("eye", out_shape=out.shape, expected=(n_rows, _n_cols), kw=dict(n_rows=n_rows, n_cols=n_cols))
- f_func = f"[eye({n_rows=}, {n_cols=})]"
+ expected_seq = []
for i in range(n_rows):
+ row = []
for j in range(_n_cols):
- f_indexed_out = f"out[{i}, {j}]={out[i, j]}"
- if j - i == kw.get("k", 0):
- assert out[i, j] == 1, f"{f_indexed_out}, should be 1 {f_func}"
- else:
- assert out[i, j] == 0, f"{f_indexed_out}, should be 0 {f_func}"
+ value = 1 if j - i == kw.get("k", 0) else 0
+ row.append(value)
+ expected_seq.append(row)
+ expected_array = xp.asarray(expected_seq, dtype=out.dtype)
+ test = expected_array != out
+ if xp.any(test):
+ i_nz, j_nz, = xp.nonzero(test)
+ f_func = f"[eye({n_rows=}, {n_cols=})]"
+ for i in i_nz:
+ for j in j_nz:
+ f_indexed_out = f"out[{i}, {j}]={out[i, j]}"
+ if j - i == kw.get("k", 0):
+ assert out[i, j] == 1, f"{f_indexed_out}, should be 1 {f_func}"
+ else:
+ assert out[i, j] == 0, f"{f_indexed_out}, should be 0 {f_func}" and it has helped with the timeout. I think a similar change needs to be applied to If this looks OK, I will open a PR |
Just to say, what we (i.e. me) intend to do after resolving #221 is to review the test suites method of array comparison, because yes it's awfully slow right now. Historical reasons (signed zero/NaN comparisons, masking being optional, and a mistrust of adopter's implementations of comparison functions) meant we've just iterated over arrays and casted elements one-by-one. But we probably can use vectorization everywhere at this point, with some clever use of Related discussions: |
@oleksandr-pavlyk I wonder if this is fixed already? #236 and #246 might of solved this already. I had trouble getting |
Running array-api-tests suite on
dpctl.tensor
(https://github.com/IntelPython/dpctl):ONEAPI_DEVICE_SELECTOR=*:cpu ARRAY_API_TESTS_MODULE=dpctl.tensor python -m pytest array_api_tests/test_creation_functions.py
two test new failures consistently occur (after updating from f82c7bc to recent tip of main, i.e. 9d7777b), e.g.:
Here is my understanding of what happens.
Hypothesis would generate a sufficiently large array, i.e.
eye(47, 100)
but testing of the output correctness is is done one element at the time (suboptimal usage for offloading libraries as it triggers 4700 submissions of small kernels) and this testing would take much longer than the creation of the array itself:The remedy would be to restrict the maximal dimension size.
The text was updated successfully, but these errors were encountered: