sclarkson
sclarkson
@chsigg I also encounter this problem. My CUDA toolkit install at /usr/local/cuda was done with the runfile, not a package manager. ``` $ dpkg -S /usr/local/cuda dpkg-query: no path found...
This change worked for me ``` --- a/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp +++ b/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp @@ -125,7 +125,7 @@ } void wait(const std::vector& keys) override { - store_->wait(keys, Store::kDefaultTimeout); + store_->wait(keys, ::c10d::Store::kDefaultTimeout); } void wait(...
The solution seems to be using clang instead of GCC.
Also encountering this problem on linux ARM64, with the 2.6.0 release