Skip to content

Commit 383882e

Browse files
committed
Enable muted test since dpctl-2053 is resolved
1 parent c8b9ad0 commit 383882e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dpnp/tests/third_party/cupy/testing/_loops.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -408,9 +408,7 @@ def test_func(*args, **kw):
408408
if cupy_r.shape == ():
409409
skip = (mask == 0).all()
410410
else:
411-
# mask is numpy.ndarray here which is not supported now
412-
# TODO remove asarray() once dpctl-2053 is addressed
413-
cupy_r = cupy_r[cupy.asarray(mask)].asnumpy()
411+
cupy_r = cupy_r[mask].asnumpy()
414412
numpy_r = numpy_r[mask]
415413

416414
if not skip:

0 commit comments

Comments
 (0)