Files
rocm-systems/src/include/param.h
T

30 lines
981 B
C++
Raw Normal View History

2018-09-24 16:06:59 -07:00
/*************************************************************************
2022-01-07 06:39:55 -08:00
* Copyright (c) 2017-2022, NVIDIA CORPORATION. All rights reserved.
2018-09-24 16:06:59 -07:00
*
* See LICENSE.txt for license information
************************************************************************/
#ifndef NCCL_PARAM_H_
#define NCCL_PARAM_H_
2022-03-30 02:25:49 -07:00
#include <stdint.h>
2018-09-24 16:06:59 -07:00
2022-03-30 02:25:49 -07:00
const char* userHomeDir();
void setEnvFile(const char* fileName);
void initEnv();
2018-09-24 16:06:59 -07:00
2022-03-30 02:25:49 -07:00
void ncclLoadParam(char const* env, int64_t deftVal, int64_t uninitialized, int64_t* cache);
2018-09-24 16:06:59 -07:00
2022-03-30 02:25:49 -07:00
#define NCCL_PARAM(name, env, deftVal) \
int64_t ncclParam##name() { \
constexpr int64_t uninitialized = INT64_MIN; \
static_assert(deftVal != uninitialized, "default value cannot be the uninitialized value."); \
static int64_t cache = uninitialized; \
if (__builtin_expect(__atomic_load_n(&cache, __ATOMIC_RELAXED) == uninitialized, false)) { \
ncclLoadParam("NCCL_" env, deftVal, uninitialized, &cache); \
2018-09-24 16:06:59 -07:00
} \
2022-03-30 02:25:49 -07:00
return cache; \
}
2018-09-24 16:06:59 -07:00
#endif