willychan21's picture
Upload folder using huggingface_hub
c2f8cf1 verified
import torch
import torch.distributed as dist
@torch.no_grad()
def solution(tensor: torch.Tensor, src: int = 0) -> torch.Tensor:
out = tensor.clone()
dist.broadcast(out, src=src)
return out