diff --git a/dpctl/tensor/_usmarray.pyx b/dpctl/tensor/_usmarray.pyx index 6fd97ebbd8..b1ce20a1b2 100644 --- a/dpctl/tensor/_usmarray.pyx +++ b/dpctl/tensor/_usmarray.pyx @@ -857,7 +857,7 @@ cdef class usm_ndarray: return NotImplemented def __pos__(self): - return _dispatch_unary_elementwise(self, "positive") + return self # _dispatch_unary_elementwise(self, "positive") def __pow__(first, other, mod): "See comment in __add__"