@@ -383,6 +383,7 @@ def test_tensordot(self, dtype, axes):
383
383
384
384
result = dpnp .tensordot (ia , ib , axes = axes )
385
385
expected = numpy .tensordot (a , b , axes = axes )
386
+ # TODO: investigate the effect of factor, see SAT-6700
386
387
assert_dtype_allclose (result , expected , factor = 24 )
387
388
388
389
@pytest .mark .parametrize ("dtype" , get_complex_dtypes ())
@@ -399,6 +400,7 @@ def test_tensordot_complex(self, dtype, axes):
399
400
400
401
result = dpnp .tensordot (ia , ib , axes = axes )
401
402
expected = numpy .tensordot (a , b , axes = axes )
403
+ # TODO: investigate the effect of factor, see SAT-6700
402
404
assert_dtype_allclose (result , expected , factor = 24 )
403
405
404
406
@pytest .mark .parametrize ("dtype" , get_all_dtypes (no_bool = True ))
@@ -424,6 +426,7 @@ def test_tensordot_axes(self, dtype, axes):
424
426
425
427
result = dpnp .tensordot (ia , ib , axes = axes )
426
428
expected = numpy .tensordot (a , b , axes = axes )
429
+ # TODO: investigate the effect of factor, see SAT-6700
427
430
assert_dtype_allclose (result , expected , factor = 24 )
428
431
429
432
@pytest .mark .parametrize ("dtype1" , get_all_dtypes ())
@@ -440,6 +443,7 @@ def test_tensordot_input_dtype_matrix(self, dtype1, dtype2):
440
443
441
444
result = dpnp .tensordot (ia , ib )
442
445
expected = numpy .tensordot (a , b )
446
+ # TODO: investigate the effect of factor, see SAT-6700
443
447
assert_dtype_allclose (result , expected , factor = 24 )
444
448
445
449
def test_tensordot_strided (self ):
0 commit comments