Skip to content

Commit b57d80c

Browse files
committed
remove lumi prints in platforms.py
1 parent 714e7e5 commit b57d80c

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

libensemble/resources/platforms.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,12 +289,10 @@ def known_envs():
289289
logger.manager_warning("Perlmutter detected, but no compute partition detected. Are you on login nodes?")
290290
if os.environ.get("SLURM_CLUSTER_NAME") == "lumi":
291291
partition = os.environ.get("SLURM_JOB_PARTITION")
292-
print(f"Lumi partition: {partition}")
293292
if not partition:
294293
logger.manager_warning("LUMI detected, but no compute partition detected. Are you on login nodes?")
295294
if partition and partition.endswith("-g"):
296295
name = "lumi_g"
297-
print(f"Lumi GPU detected: {name}")
298296
else:
299297
name = "lumi"
300298
return name

0 commit comments

Comments
 (0)