Unverified Commit 0a2f40f6 authored by Muhammed Fatih BALIN's avatar Muhammed Fatih BALIN Committed by GitHub
Browse files

[GraphBolt][CUDA] Temporarily disable overlap for the multiGPU example. (#7009)

parent 3a79f021
......@@ -141,7 +141,10 @@ def create_dataloader(
if args.storage_device == "cpu":
datapipe = datapipe.copy_to(device)
dataloader = gb.DataLoader(datapipe, args.num_workers)
# Until https://github.com/dmlc/dgl/issues/7008, overlap should be False.
dataloader = gb.DataLoader(
datapipe, args.num_workers, overlap_feature_fetch=False
)
# Return the fully-initialized DataLoader object.
return dataloader
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment