Skip to content

Commit

Permalink
setting global_shuffle
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarghi-nv committed Aug 8, 2024
1 parent a4ac687 commit 63065f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/cugraph-pyg/cugraph_pyg/examples/gcn_dist_mnmg.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ def run_train(
directory=train_path,
shuffle=True,
drop_last=True,
global_shuffle=True,
**kwargs,
)

Expand All @@ -217,6 +218,7 @@ def run_train(
shuffle=True,
drop_last=True,
local_seeds_per_call=80000,
global_shuffle=False,
**kwargs,
)

Expand All @@ -229,6 +231,7 @@ def run_train(
directory=valid_path,
shuffle=True,
drop_last=True,
global_shuffle=False,
**kwargs,
)

Expand Down
3 changes: 3 additions & 0 deletions python/cugraph-pyg/cugraph_pyg/examples/gcn_dist_snmg.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ def run_train(
directory=train_path,
shuffle=True,
drop_last=True,
global_shuffle=True,
**kwargs,
)

Expand All @@ -140,6 +141,7 @@ def run_train(
shuffle=True,
drop_last=True,
local_seeds_per_call=80000,
global_shuffle=False,
**kwargs,
)

Expand All @@ -152,6 +154,7 @@ def run_train(
directory=valid_path,
shuffle=True,
drop_last=True,
global_shuffle=False,
**kwargs,
)

Expand Down

0 comments on commit 63065f5

Please sign in to comment.