// // Created by morgan on 26/09/24. // #include #include #include "tgiccl.hpp" int main() { auto backend = huggingface::tgi::tgiccl::TgiCclBackend(0, 4); auto tensor = torch::zeros({128}); auto tensors = std::vector(); tensors.push_back(tensor); backend.allreduce(tensors, c10d::AllreduceOptions()); }