We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 714e7e5 commit b57d80cCopy full SHA for b57d80c
1 file changed
libensemble/resources/platforms.py
@@ -289,12 +289,10 @@ def known_envs():
289
logger.manager_warning("Perlmutter detected, but no compute partition detected. Are you on login nodes?")
290
if os.environ.get("SLURM_CLUSTER_NAME") == "lumi":
291
partition = os.environ.get("SLURM_JOB_PARTITION")
292
- print(f"Lumi partition: {partition}")
293
if not partition:
294
logger.manager_warning("LUMI detected, but no compute partition detected. Are you on login nodes?")
295
if partition and partition.endswith("-g"):
296
name = "lumi_g"
297
- print(f"Lumi GPU detected: {name}")
298
else:
299
name = "lumi"
300
return name
0 commit comments