Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions dpnp/tests/test_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,8 +843,7 @@ def test_dtype_matrix(self, dt_in1, dt_in2, dt_out, shape1, shape2):
assert_raises(TypeError, dpnp.matmul, ia, ib, out=iout)
assert_raises(TypeError, numpy.matmul, a, b, out=out)

# TODO: include numpy-2.3 when numpy-issue-29164 is resolved
@testing.with_requires("numpy<2.3")
@testing.with_requires("numpy!=2.3.0")
@pytest.mark.parametrize("dtype", _selected_dtypes)
@pytest.mark.parametrize("order1", ["C", "F", "A"])
@pytest.mark.parametrize("order2", ["C", "F", "A"])
Expand Down Expand Up @@ -882,8 +881,7 @@ def test_order(self, dtype, order1, order2, order, shape1, shape2):
assert result.flags.f_contiguous == expected.flags.f_contiguous
assert_dtype_allclose(result, expected)

# TODO: include numpy-2.3 when numpy-issue-29164 is resolved
@testing.with_requires("numpy<2.3")
@testing.with_requires("numpy!=2.3.0")
@pytest.mark.parametrize("dtype", _selected_dtypes)
@pytest.mark.parametrize(
"stride",
Expand Down
3 changes: 1 addition & 2 deletions dpnp/tests/third_party/cupy/math_tests/test_matmul.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ def test_cupy_matmul(self, xp, dtype1, dtype2):
)
class TestMatmulOut(unittest.TestCase):

# TODO: include numpy-2.3 when numpy-issue-29164 is resolved
@testing.with_requires("numpy<2.3")
@testing.with_requires("numpy!=2.3.0")
# no_int8=True is added to avoid overflow
@testing.for_all_dtypes(name="dtype1", no_int8=True)
@testing.for_all_dtypes(name="dtype2", no_int8=True)
Expand Down
Loading