Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/lbann/contrib/lc/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def prepend_environment_path(key, prefix):
set_environment('MV2_USE_THREAD_WARNING', 0)

# Optimizations for Tioga
if system in ('tioga', 'rzvernal'):
if system in ('tioga', 'rzvernal', 'tuolumne', 'rzadams'):
#set_environment('NCCL_SOCKET_IFNAME', 'hsi')
set_environment('NCCL_NET_GDR_LEVEL', '3') # From HPE to avoid hangs
set_environment('MIOPEN_DEBUG_DISABLE_FIND_DB', '0')
Expand Down
2 changes: 2 additions & 0 deletions python/lbann/contrib/lc/systems.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ def __init__(self, cores_per_node, gpus_per_node, scheduler):
'rzvernal': SystemParams(64, 8, 'flux'),
'sierra': SystemParams(44, 4, 'lsf'),
'tioga': SystemParams(64, 8, 'flux'),
'tuolumne': SystemParams(96, 4, 'flux'),
'rzadams': SystemParams(96, 4, 'flux'),
}

# Detect system
Expand Down
Loading