Saliya Ekanayake
Saliya Ekanayake
I've a simple struct similar to the following that I want to send/recv using cppzmq. ```cpp struct SimpleSt{ explicit SimpleSt(int num): var(num){} explicit SimpleSt(std::string str) : var(str){}; std::variant var; };...
Hi, I was trying to do the following, java -server -jar jblas-1.2.4.jar and I get the following error. I've already installed libgfortran.x86_64 using yum. Any thoughts? -- org.jblas INFO jblas...
Fixes #73163 PyTorch's [_new_process_group_helper()](https://github.com/pytorch/pytorch/blob/9f541aa3aca768e7fbfa4a9d648b554f22b261f7/torch/distributed/distributed_c10d.py#L633) does not pass group's participating ranks to the backend. This PR adds the above capability. Also, refactors some variables for better clarity.