Skip to content

Commit

Permalink
Fix return order of all_parents and all_children
Browse files Browse the repository at this point in the history
  • Loading branch information
VibhuJawa committed May 19, 2022
1 parent 7c921fc commit c79b2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/gnn/graph_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def sample_neighbors(self,
by="dst",
n_samples=fanout)

return filtered_list['src'].values, filtered_list['dst'].values
return filtered_list['dst'].values, filtered_list['src'].values

def node_subgraph(self,
nodes=None,
Expand Down

0 comments on commit c79b2b2

Please sign in to comment.