Merge pull request #259 from NVIDIA/fix-ncclstringtotype

Future-proof ncclstringtotype
Этот коммит содержится в:
Sylvain Jeaugey
2024-10-24 10:28:02 -07:00
коммит произвёл GitHub
родитель 9d26b8422b 34d6d53910
Коммит 8dfeab9eb9
+1 -1
Просмотреть файл
@@ -254,7 +254,7 @@ extern ncclRedOp_t test_ops[];
extern const char *test_opnames[];
static int ncclstringtotype(char *str) {
for (int t=0; t<ncclNumTypes; t++) {
for (int t=0; t<test_typenum; t++) {
if (strcmp(str, test_typenames[t]) == 0) {
return t;
}