You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.h 291 B

1234567891011
  1. #pragma once
  2. #include "./helper.h"
  3. void init_common(pybind11::module m);
  4. void set_default_device(const std::string& device);
  5. std::string get_default_device();
  6. extern pybind11::handle py_comp_node_type;
  7. void init_nccl_env(const std::string& ip, int port, int nranks, int rank, int root);