Skip to content

Commit

Permalink
Required core changes for cunumeric#474 (nv-legate#307)
Browse files Browse the repository at this point in the history
* Required core changes for cunumeric#474

* Don't expose Storage
  • Loading branch information
manopapad authored Aug 5, 2022
1 parent e3d4f55 commit f2df5a6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions legate/core/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,6 +988,9 @@ def storage(self) -> Union[RegionField, Future]:
)
return self._storage.data

def same_root(self, rhs: Store) -> bool:
return self._storage.get_root() is rhs._storage.get_root()

@property
def extents(self) -> Shape:
return self._storage.extents
Expand Down

0 comments on commit f2df5a6

Please sign in to comment.