Skip to content

Commit

Permalink
Merge pull request #20 from alexbarghi-nv/correct-wg-comm
Browse files Browse the repository at this point in the history
[BUG] Use the Correct WG Communicator (rapidsai/cugraph#4548)
  • Loading branch information
BradReesWork authored Aug 1, 2024
2 parents fca4b79 + 90db89a commit 961fd04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/cugraph-pyg/cugraph_pyg/data/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def __init__(self, memory_type="distributed", location="cpu"):

self.__features = {}

self.__wg_comm = wgth.get_local_node_communicator()
self.__wg_comm = wgth.get_global_communicator()
self.__wg_type = memory_type
self.__wg_location = location

Expand Down
2 changes: 1 addition & 1 deletion python/cugraph-pyg/cugraph_pyg/data/graph_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def __get_edgelist(self):
torch.tensor(
[self.__edge_indices[et].shape[1] for et in sorted_keys],
device="cuda",
dtype=torch.int32,
dtype=torch.int64,
)
)

Expand Down

0 comments on commit 961fd04

Please sign in to comment.