Skip to content

Commit 01ff619

Browse files
committed
Reverse order of numeric types passed to test_matmul_simple2
May improve stability on CPU
1 parent 2b84743 commit 01ff619

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpctl/tests/test_usm_ndarray_linalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def test_matrix_transpose_arg_validation():
8282
# assert dpt.all(r == dpt.full((k, k), n, dtype=dtype))
8383

8484

85-
@pytest.mark.parametrize("dtype", _numeric_types)
85+
@pytest.mark.parametrize("dtype", _numeric_types[::-1])
8686
def test_matmul_simple2(dtype):
8787
q = get_queue_or_skip()
8888
skip_if_dtype_not_supported(dtype, q)

0 commit comments

Comments
 (0)