Skip to content

Commit fd02a8c

Browse files
committed
Add new LC systems
1 parent cae84af commit fd02a8c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

python/lbann/contrib/lc/launcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def prepend_environment_path(key, prefix):
9494
set_environment('MV2_USE_THREAD_WARNING', 0)
9595

9696
# Optimizations for Tioga
97-
if system in ('tioga', 'rzvernal'):
97+
if system in ('tioga', 'rzvernal', 'tuolumne', 'rzadams'):
9898
#set_environment('NCCL_SOCKET_IFNAME', 'hsi')
9999
set_environment('NCCL_NET_GDR_LEVEL', '3') # From HPE to avoid hangs
100100
set_environment('MIOPEN_DEBUG_DISABLE_FIND_DB', '0')

python/lbann/contrib/lc/systems.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ def __init__(self, cores_per_node, gpus_per_node, scheduler):
2424
'rzvernal': SystemParams(64, 8, 'flux'),
2525
'sierra': SystemParams(44, 4, 'lsf'),
2626
'tioga': SystemParams(64, 8, 'flux'),
27+
'tuolumne': SystemParams(96, 4, 'flux'),
28+
'rzadams': SystemParams(96, 4, 'flux'),
2729
}
2830

2931
# Detect system

0 commit comments

Comments
 (0)