From 586a005ab6bb1536af456a735071cf320351167b Mon Sep 17 00:00:00 2001 From: Manolis Papadakis Date: Fri, 3 Nov 2023 09:50:19 -0700 Subject: [PATCH] Fix #1065 (#1067) * Fix #1065 * Bump legate.core commit --- cmake/versions.json | 2 +- cunumeric/eager.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/versions.json b/cmake/versions.json index b99da26cb..93a1d8001 100644 --- a/cmake/versions.json +++ b/cmake/versions.json @@ -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" } } } diff --git a/cunumeric/eager.py b/cunumeric/eager.py index 63284eb94..26fc98016 100644 --- a/cunumeric/eager.py +++ b/cunumeric/eager.py @@ -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: