This commit is contained in:
Saeed Maleki 2021-03-31 01:17:19 +00:00
Родитель f7837e5614
Коммит 7af77c04b8
2 изменённых файлов: 4 добавлений и 5 удалений

Просмотреть файл

@ -611,10 +611,9 @@ ncclResult_t scklGetAlgoFromXMLAndSetComm(struct ncclComm* comm) {
char* str = getenv("SCKL_XML_FILE");
if (str){
INFO(NCCL_ENV, "SCKL_XML_FILE set by environment to %s", str);
struct ncclXml xml_alloc;
struct ncclXml* xml = &xml_alloc;
struct ncclXml* xml;
// NCCLCHECK(ncclCalloc(&xml, 1));
NCCLCHECK(ncclCalloc(&xml, 1));
NCCLCHECK(scklGetXmlAlgoFromFile(str, xml));
int rank = comm->rank;

Просмотреть файл

@ -11,8 +11,8 @@
// A few constraints to make the implementation easy
#define MAX_STR_LEN 255
#define MAX_ATTR_COUNT 16
#define MAX_SUBS 32
#define MAX_NODES 1024
#define MAX_SUBS 128
#define MAX_NODES 16384
#define NODE_TYPE_NONE 0
#define NODE_TYPE_OPEN 1