We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7e82a5 commit 6a16b22Copy full SHA for 6a16b22
dpnp/tests/test_usm_type.py
@@ -695,12 +695,12 @@ def test_1in_1out(func, data, usm_type):
695
# pytest.param("copysign", [0.0, 1.0, 2.0], [-1.0, 0.0, 1.0]),
696
# pytest.param("cross", [1.0, 2.0, 3.0], [4.0, 5.0, 6.0]),
697
# 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
- # ),
703
- # pytest.param("correlate", [1, 2, 3], [0, 1, 0.5]),
+ pytest.param(
+ "corrcoef",
+ [[0.1, 0.2, 0.3], [0.4, 0.5, 0.6]],
+ [[0.7, 0.8, 0.9], [1.0, 1.1, 1.2]],
+ ),
+ pytest.param("correlate", [1, 2, 3], [0, 1, 0.5]),
704
# dpnp.dot has 3 different implementations based on input arrays dtype
705
# checking all of them
706
pytest.param("dot", [3.0, 4.0, 5.0], [1.0, 2.0, 3.0]),
0 commit comments