Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarghi-nv committed Feb 14, 2025
1 parent ed4b469 commit 188d997
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/cugraph/cugraph/gnn/data_loading/dist_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,6 @@ def __sample_from_edges_func(
]
).cumsum(-1)

print(f"{torch.distributed.get_rank()}, {current_seeds}")

current_seeds, leftover_seeds = (
current_seeds[:, : (batch_size * num_whole_batches)],
current_seeds[:, (batch_size * num_whole_batches) :],
Expand Down Expand Up @@ -573,7 +571,7 @@ def sample_from_edges(
actual_seed_edges_per_call,
assume_equal_input_size=input_size_is_equal,
label=input_label,
empty_fill=torch.empty([], size=(2, 0), dtype=torch.int64),
empty_fill=torch.empty((2, 0), dtype=torch.int64),
)
if len(groups) == 2:
edges_call_groups, index_call_groups = groups
Expand Down

0 comments on commit 188d997

Please sign in to comment.