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
meaning that the operation isnt called from the self.module_list which holds the modules parameters but from the self.node_list itself, thus the weights are kept on the original device and are not transferred to the new device as intended
Does anyone has any possible direction at solving this problem?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hello,
I wish to train a GraphINN model on multiple gpus using pytorchs nn.DataParallel
I keep getting an error saying that the weights and the inputs are not on the same device
I think that the error stems from the lines:
`
`
meaning that the operation isnt called from the
self.module_list
which holds the modules parameters but from theself.node_list
itself, thus the weights are kept on the original device and are not transferred to the new device as intendedDoes anyone has any possible direction at solving this problem?
Thanks in advance!
The text was updated successfully, but these errors were encountered: