Skip to content

Commit

Permalink
Merge branch 'branch-24.08' into branch-24.08_all-pairs-similarity
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 authored Jul 30, 2024
2 parents 853824c + ac35be3 commit a6971c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/dask/centrality/katz_centrality.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def katz_centrality(
do_expensive_check = False

initial_hubs_guess_values = None
if nstart:
if nstart is not None:
if input_graph.renumbered:
if len(input_graph.renumber_map.implementation.col_names) > 1:
cols = nstart.columns[:-1].to_list()
Expand Down

0 comments on commit a6971c3

Please sign in to comment.