Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
manopapad committed Nov 3, 2023
1 parent 3fdc856 commit 3dfe8b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cunumeric/eager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1615,7 +1615,7 @@ def where(self, rhs1: Any, rhs2: Any, rhs3: Any) -> None:
if self.deferred is not None:
self.deferred.where(rhs1, rhs2, rhs3)
else:
self.array[:] = np.where(rhs1.array, rhs2.array, rhs3.array)
self.array[...] = np.where(rhs1.array, rhs2.array, rhs3.array)

def argwhere(self) -> NumPyThunk:
if self.deferred is not None:
Expand Down

0 comments on commit 3dfe8b9

Please sign in to comment.