Skip to content

Commit 51af89b

Browse files
committed
add TODO comment
1 parent 3115c6b commit 51af89b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_dot.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,7 @@ def test_tensordot(self, dtype, axes):
383383

384384
result = dpnp.tensordot(ia, ib, axes=axes)
385385
expected = numpy.tensordot(a, b, axes=axes)
386+
# TODO: investigate the effect of factor, see SAT-6700
386387
assert_dtype_allclose(result, expected, factor=24)
387388

388389
@pytest.mark.parametrize("dtype", get_complex_dtypes())
@@ -399,6 +400,7 @@ def test_tensordot_complex(self, dtype, axes):
399400

400401
result = dpnp.tensordot(ia, ib, axes=axes)
401402
expected = numpy.tensordot(a, b, axes=axes)
403+
# TODO: investigate the effect of factor, see SAT-6700
402404
assert_dtype_allclose(result, expected, factor=24)
403405

404406
@pytest.mark.parametrize("dtype", get_all_dtypes(no_bool=True))
@@ -424,6 +426,7 @@ def test_tensordot_axes(self, dtype, axes):
424426

425427
result = dpnp.tensordot(ia, ib, axes=axes)
426428
expected = numpy.tensordot(a, b, axes=axes)
429+
# TODO: investigate the effect of factor, see SAT-6700
427430
assert_dtype_allclose(result, expected, factor=24)
428431

429432
@pytest.mark.parametrize("dtype1", get_all_dtypes())
@@ -440,6 +443,7 @@ def test_tensordot_input_dtype_matrix(self, dtype1, dtype2):
440443

441444
result = dpnp.tensordot(ia, ib)
442445
expected = numpy.tensordot(a, b)
446+
# TODO: investigate the effect of factor, see SAT-6700
443447
assert_dtype_allclose(result, expected, factor=24)
444448

445449
def test_tensordot_strided(self):

0 commit comments

Comments
 (0)