We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22a680 commit d8fd8e2Copy full SHA for d8fd8e2
1 file changed
tests/integration/defs/perf/disagg/utils/common.py
@@ -61,13 +61,13 @@ def get_slurm_account() -> str:
61
@staticmethod
62
def get_slurm_job_name() -> str:
63
"""Get SLURM job name: {SLURM_ACCOUNT}-{base}.
64
-
+
65
Example: myaccount-unified.benchmark
66
Customize base via SLURM_JOB_BASE_NAME env var (default: unified.benchmark)
67
"""
68
account = EnvManager.get_slurm_account()
69
base = os.getenv("SLURM_JOB_BASE_NAME", "unified.benchmark")
70
71
# Only use account as prefix if it's set and not a placeholder
72
if account and not account.startswith("<"):
73
return f"{account}-{base}"
0 commit comments