Skip to content

Commit

Permalink
Fix #1065 (#1067)
Browse files Browse the repository at this point in the history
* Fix #1065

* Bump legate.core commit
  • Loading branch information
manopapad authored Nov 3, 2023
1 parent 3fdc856 commit 586a005
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"git_url" : "https://github.com/nv-legate/legate.core.git",
"git_shallow": false,
"always_download": false,
"git_tag" : "8997f997be02936304b3ac23fe785f1de7a3424b"
"git_tag" : "a4b5430ebb2c52e3f8da8f27534bc0db8826b804"
}
}
}
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 586a005

Please sign in to comment.