Replies: 3 comments
-
Hey @zhangqi94 , Can you post a model detail problem you have? |
Beta Was this translation helpful? Give feedback.
-
Thank you! The program runs normally on a single GPU, but an error occurs when using multiple GPUs. I think the issue might be related to the dataloader? Here is the log output during the error: The code was modified based on
|
Beta Was this translation helpful? Give feedback.
-
I don't think A better way is to just split your data in two and run the individual halves on the two GPUs you have. |
Beta Was this translation helpful? Give feedback.
-
In the
eval_configs.py
file, thedata_loader
is encountering an issue where the length ofedge_index
(and other related quantities) varies for each structure in the batch. This causes an issue when attempting to usetorch.nn.DataParallel
for inference. Any suggestions on how to resolve this?Beta Was this translation helpful? Give feedback.
All reactions