Skip to content

Commit

Permalink
Debug test_argsort_ndarray test
Browse files Browse the repository at this point in the history
  • Loading branch information
antonwolfy committed Mar 25, 2024
1 parent 8c97a8d commit 3555950
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def test_argsort_axis(self, axis):
def test_argsort_ndarray(self, dtype, axis):
a = numpy.random.uniform(-10, 10, 12)
np_array = numpy.array(a, dtype=dtype).reshape(6, 2)
print("\n", np_array)
dp_array = dpnp.array(np_array)

result = dp_array.argsort(axis=axis)
Expand Down

0 comments on commit 3555950

Please sign in to comment.