Skip to content

Commit

Permalink
Change env param log level to NCCL_ENV
Browse files Browse the repository at this point in the history
  • Loading branch information
bureddy committed May 31, 2024
1 parent 7e482ec commit e375f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/param.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void ncclLoadParam(char const* env, int64_t deftVal, int64_t uninitialized, int6
value = deftVal;
INFO(NCCL_ALL,"Invalid value %s for %s, using default %lld.", str, env, (long long)deftVal);
} else {
INFO(NCCL_ALL,"%s set by environment to %lld.", env, (long long)value);
INFO(NCCL_ENV,"%s set by environment to %lld.", env, (long long)value);
}
}
__atomic_store_n(cache, value, __ATOMIC_RELAXED);
Expand Down

0 comments on commit e375f37

Please sign in to comment.