You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
This is more promising, but I end up with the following error message:
RuntimeError: Expected tensor for argument #1 'input' to have the same device as tensor for argument #2 'weight'; but device 1 does not equal 0 (while checking arguments for cudnn_batch_norm)
The text was updated successfully, but these errors were encountered:
I am trying to figure out how to use multiple GPUs to speed up training for my segmentation model.
I looked at PyTorch's documentation (
nn.DataParallel
) and this link. However, I have not had success so far.My first attempt was something like this:
This does not have the intended effect. I only see 1 GPU being used.
I also saw the documentation here but from what I can tell
unet_learner
does not have theparallel_ctx
context manager.The other thing I tried doing was:
This is more promising, but I end up with the following error message:
The text was updated successfully, but these errors were encountered: