Design
No hypothesis. Plumbing check: sleep 30s on a Jean Zay H100 node (gpu_p6, -C
h100, qos_gpu_h100-t3), write {"dummy": 1}, and verify submit → fetch →
report works on this cluster.
Results
20260726-202904-dummy_jz-2fa7134
commit: 2fa7134
| metric | value |
|---|---|
| dummy | 1 |
Interpretation
The pipeline works on Jean Zay H100. Getting there needed three attempts and
surfaced cluster-specific setup facts worth keeping for real runs:
- H100 is selected by constraint
-C h100+--partition=gpu_p6+
--qos=qos_gpu_h100-t3, not by partition alone. (xp gainedconstraint:
andqos:config fields for this.) - Non-login batch shells have no
modulefunction; the init path I tried
(/etc/profile.d/z_modules.sh) does not exist. For anything needing modules
we must find the correct init or use a login shell. This dummy is pure
stdlib, so basepython3sufficed and no module load was needed. $WORK/$HOMEare not expanded by rsync; workdir must be an absolute path.- Default Slurm account was accepted (no
--accountneeded).
Nothing here bears on the research question.