sclarkson

Results 4 comments of 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(...