Skip to content
Draft
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
4 changes: 3 additions & 1 deletion dpnp/tests/test_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,9 @@ def test_axes(self, axes):

result = dpnp.matvec(ia, ib, axes=axes)
expected = numpy.matvec(a, b, axes=axes)
assert_dtype_allclose(result, expected)

# TODO: check if failing with newer NumPy
assert_dtype_allclose(result, expected, factor=40)

@pytest.mark.parametrize("xp", [numpy, dpnp])
def test_error(self, xp):
Expand Down
Loading