B111ue commited on
Commit
65a4995
·
verified ·
1 Parent(s): 676ee40

Upload strict640x480-v2/code/collect_strict_lpd_rebuild_finish.sh with huggingface_hub

Browse files
strict640x480-v2/code/collect_strict_lpd_rebuild_finish.sh ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # Final 30 clean LPD demonstrations, started only after the 52-demo
3
+ # acceleration tranche has released GPUs 1--3.
4
+ set -euo pipefail
5
+ ROOT="/workspace/RoboFactory/runs/strict640x480_v2_lpd_rebuild"
6
+ COLLECT="/workspace/act_liftbarrier/run_strict_task_collection.sh"
7
+ for d in "$ROOT/gpu1" "$ROOT/gpu2" "$ROOT/gpu3"; do test ! -e "$d"; done
8
+ "$COLLECT" long_pipeline_delivery 1 10 "$ROOT/gpu1" 2100000 10 & p1=$!
9
+ "$COLLECT" long_pipeline_delivery 2 10 "$ROOT/gpu2" 2200000 10 & p2=$!
10
+ "$COLLECT" long_pipeline_delivery 3 10 "$ROOT/gpu3" 2300000 10 & p3=$!
11
+ wait "$p1" "$p2" "$p3"
12
+ echo "LPD_REBUILD_FINAL_30_COMPLETE"