Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions tests/third_party/cupy/sorting_tests/test_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def test_argmax_zero_size_axis1(self, xp, dtype):
return a.argmax(axis=1)

@testing.slow
@pytest.mark.skip("slow mark is not implemented")
def test_argmax_int32_overflow(self):
a = testing.shaped_arange((2**32 + 1,), cupy, numpy.float64)
assert a.argmax().item() == 2**32
Expand Down Expand Up @@ -162,7 +161,6 @@ def test_argmin_zero_size_axis1(self, xp, dtype):
return a.argmin(axis=1)

@testing.slow
@pytest.mark.skip("slow mark is not implemented")
def test_argmin_int32_overflow(self):
a = testing.shaped_arange((2**32 + 1,), cupy, numpy.float64)
cupy.negative(a, out=a)
Expand Down
Loading