Skip to content

Commit

Permalink
change to pass.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfbalin committed Jul 20, 2024
1 parent b5d9299 commit b5992a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/dgl/graphbolt/impl/cpu_cached_feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ def read_async(self, ids: torch.Tensor):
>>> result = future.wait() # result contains the read values.
"""
if ids.is_cuda and self._is_pinned:
raise NotImplementedError
pass
elif ids.is_cuda:
raise NotImplementedError
pass
else:
raise NotImplementedError
pass

def read_async_num_stages(self, ids_device: torch.device):
"""The number of stages of the read_async operation. See read_async
Expand Down

0 comments on commit b5992a2

Please sign in to comment.