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
When utilizing multi-gpu training with DDP, e.g. with a SemiSupervisedDataLoader and subsequently ConcatDataLoader, an error is raised because distributed_sampler keyword argument required for AnnDataLoader is not explicit in the class definition of ConcatDataLoader. Passing this keyword argument in using the wildcard allows AnnDataLoader to be initialized properly, but throws an error for initializing the parent class torch.util.DataLoader using the same distributed_sampler keyword argument.
Hi, multi-GPU support is still experimental. We need to include tests using multiple GPUs and need to test it more. Timeline is Q1 2025 and it's planned to be released with 1.3.
When utilizing multi-gpu training with DDP, e.g. with a
SemiSupervisedDataLoader
and subsequentlyConcatDataLoader
, an error is raised becausedistributed_sampler
keyword argument required forAnnDataLoader
is not explicit in the class definition ofConcatDataLoader
. Passing this keyword argument in using the wildcard allowsAnnDataLoader
to be initialized properly, but throws an error for initializing the parent classtorch.util.DataLoader
using the samedistributed_sampler
keyword argument.Versions:
The text was updated successfully, but these errors were encountered: