Hacker News new | ask | show | jobs
by tempw 3194 days ago
Which license is PyTorch?
1 comments

PyTorch itself isnt, But the multi-GPU version requires Gloo which is BSD+PATENTS

https://github.com/facebookincubator/gloo/blob/master/PATENT...

PyTorch uses NVIDIA NCCL for multi-GPU communication (under BSD license). Gloo is only one of the three backends that can be used for distributed communication out of the box.
Thanks!