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
In the references/detection in torchvision, we have a primitive called all_gather that allows to distribute arbitrary picklable objects among different processes, see
Since pytorch/pytorch#42189, PyTorch now natively supports this primitive, so we should replace its usage in the references with PyTorch's equivalent, verifying that we obtain the same results as before.
One can find the implementation of PyTorch's all_gather_object in here, which will be useful to validate if both functions are indeed implementing the same thing
The text was updated successfully, but these errors were encountered:
🚀 Feature
In the
references/detection
in torchvision, we have a primitive calledall_gather
that allows to distribute arbitrary picklable objects among different processes, seevision/references/detection/utils.py
Lines 75 to 115 in d6fee5a
Since pytorch/pytorch#42189, PyTorch now natively supports this primitive, so we should replace its usage in the references with PyTorch's equivalent, verifying that we obtain the same results as before.
One can find the implementation of PyTorch's
all_gather_object
in here, which will be useful to validate if both functions are indeed implementing the same thingThe text was updated successfully, but these errors were encountered: