Skip to content

Commit 6a16b22

Browse files
committed
Add corrcoef tests
1 parent a7e82a5 commit 6a16b22

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

dpnp/tests/test_usm_type.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -695,12 +695,12 @@ 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-
# ),
703-
# pytest.param("correlate", [1, 2, 3], [0, 1, 0.5]),
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]),
704704
# dpnp.dot has 3 different implementations based on input arrays dtype
705705
# checking all of them
706706
pytest.param("dot", [3.0, 4.0, 5.0], [1.0, 2.0, 3.0]),

0 commit comments

Comments
 (0)