nguyentanthong

Results 1 comments of nguyentanthong

The error is triggered by DDP buffer broadcasting mechanism. We need to set `broadcast_buffers=False` to avoid it. ```python model = torch.nn.parallel.DistributedDataParallel(model, broadcast_buffers=False, ...) ```