mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-04-19 22:39:11 +00:00
update
This commit is contained in:
@@ -116,7 +116,7 @@ class Env {
|
||||
const bool forceDisableGdr;
|
||||
|
||||
/// Env name: `MSCCLPP_IB_GID_INDEX`. The GID index to use for IB transport.
|
||||
/// If unset or set to -1, it defaults to `EndpointConfig::Ib::DefaultGidIndex` (3).
|
||||
/// If unset or set to -1, it defaults to `EndpointConfig::Ib::DefaultGidIndex` (0).
|
||||
const int ibGidIndex;
|
||||
|
||||
private:
|
||||
|
||||
@@ -66,7 +66,7 @@ Env::Env()
|
||||
forceNcclFallbackOperation(readEnv<std::string>("MSCCLPP_FORCE_NCCL_FALLBACK_OPERATION", "")),
|
||||
ncclSymmetricMemory(readEnv<bool>("MSCCLPP_NCCL_SYMMETRIC_MEMORY", false)),
|
||||
forceDisableNvls(readEnv<bool>("MSCCLPP_FORCE_DISABLE_NVLS", false)),
|
||||
forceDisableGdr(readEnv<bool>("MSCCLPP_FORCE_DISABLE_GDR", false)) {}
|
||||
forceDisableGdr(readEnv<bool>("MSCCLPP_FORCE_DISABLE_GDR", false)),
|
||||
ibGidIndex(readEnv<int>("MSCCLPP_IB_GID_INDEX", -1)) {}
|
||||
|
||||
std::shared_ptr<Env> env() {
|
||||
|
||||
Reference in New Issue
Block a user