@@ -195,7 +195,8 @@ run_experiments full_8gpu --jobs rf3,protenix
195195Standalone presets are available for each model/model family: ` boltz ` ,
196196` boltz1 ` , ` boltz2 ` , ` boltz2_xrd ` , ` boltz2_md ` , ` rf3 ` , and ` protenix ` .
197197Additional comparison presets include ` protenix_dual ` , ` rf3_protenix ` , and RF3
198- variants.
198+ variants. Single-job presets default to ` gpu_count = 8 ` , so on an 8-GPU pod
199+ they use the whole machine.
199200
200201Presets live in ` experiments/*.toml ` in your local checkout and on the pod at
201202` /home/dev/workspace/experiments/*.toml ` . To modify an experiment, edit or copy
@@ -210,10 +211,15 @@ run_experiments --preset my_rf3
210211For one-off changes, use ` --set ` instead of editing TOML:
211212
212213``` bash
213- run_experiments rf3 --set jobs.rf3.gpus=0,1
214+ run_experiments rf3 --set jobs.rf3.gpu_count=4
214215run_experiments rf3 --set jobs.rf3.args.gradient-weights=" 0.0 0.01 0.02"
215216```
216217
218+ Presets usually declare ` gpu_count = N ` , not fixed GPU IDs. The runner assigns
219+ visible GPUs automatically in job order, so the same preset works on different
220+ pod sizes. Use explicit ` gpus = "0,1" ` only when you need to pin a job to
221+ specific devices.
222+
217223Defaults: inputs come from ` /mnt/diffuse-shared/raw/sampleworks/... ` , checkpoints
218224from ` /mnt/diffuse-shared/raw/checkpoints ` , results go to
219225` /mnt/diffuse-shared/results/sampleworks/<pod>/<target>/ ` , and MSA caches go to
0 commit comments