Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dgl
Commits
0a2f40f6
You need to sign in or sign up before continuing.
Unverified
Commit
0a2f40f6
authored
Jan 25, 2024
by
Muhammed Fatih BALIN
Committed by
GitHub
Jan 25, 2024
Browse files
[GraphBolt][CUDA] Temporarily disable overlap for the multiGPU example. (#7009)
parent
3a79f021
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
examples/multigpu/graphbolt/node_classification.py
examples/multigpu/graphbolt/node_classification.py
+4
-1
No files found.
examples/multigpu/graphbolt/node_classification.py
View file @
0a2f40f6
...
@@ -141,7 +141,10 @@ def create_dataloader(
...
@@ -141,7 +141,10 @@ def create_dataloader(
if
args
.
storage_device
==
"cpu"
:
if
args
.
storage_device
==
"cpu"
:
datapipe
=
datapipe
.
copy_to
(
device
)
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 the fully-initialized DataLoader object.
return
dataloader
return
dataloader
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment