@@ -695,17 +695,17 @@ def test_1in_1out(func, data, usm_type):
695695 # pytest.param("copysign", [0.0, 1.0, 2.0], [-1.0, 0.0, 1.0]),
696696 # pytest.param("cross", [1.0, 2.0, 3.0], [4.0, 5.0, 6.0]),
697697 # pytest.param("digitize", [0.2, 6.4, 3.0], [0.0, 1.0, 2.5, 4.0]),
698- pytest .param (
699- "corrcoef" ,
700- [[0.1 , 0.2 , 0.3 ], [0.4 , 0.5 , 0.6 ]],
701- [[0.7 , 0.8 , 0.9 ], [1.0 , 1.1 , 1.2 ]],
702- ),
698+ # pytest.param(
699+ # "corrcoef",
700+ # [[0.1, 0.2, 0.3], [0.4, 0.5, 0.6]],
701+ # [[0.7, 0.8, 0.9], [1.0, 1.1, 1.2]],
702+ # ),
703703 pytest .param ("correlate" , [1 , 2 , 3 ], [0 , 1 , 0.5 ]),
704704 # dpnp.dot has 3 different implementations based on input arrays dtype
705705 # checking all of them
706- pytest .param ("dot" , [3.0 , 4.0 , 5.0 ], [1.0 , 2.0 , 3.0 ]),
707- pytest .param ("dot" , [3 , 4 , 5 ], [1 , 2 , 3 ]),
708- pytest .param ("dot" , [3 + 2j , 4 + 1j , 5 ], [1 , 2 + 3j , 3 ]),
706+ # pytest.param("dot", [3.0, 4.0, 5.0], [1.0, 2.0, 3.0]),
707+ # pytest.param("dot", [3, 4, 5], [1, 2, 3]),
708+ # pytest.param("dot", [3 + 2j, 4 + 1j, 5], [1, 2 + 3j, 3]),
709709 # pytest.param("extract", [False, True, True, False], [0, 1, 2, 3]),
710710 # pytest.param(
711711 # "float_power",
0 commit comments