Skip to content

Commit

Permalink
use int64 to store # edges
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarghi-nv committed Jul 24, 2024
1 parent 4d82ee0 commit 2b160bf
Showing 1 changed file with 1 addition and 1 deletion.
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 2b160bf

Please sign in to comment.