SIM_ISAC / run_phys_queue_gpu0.sh
lmb12306's picture
Add files using upload-large-folder tool
1b70a0a verified
Raw
History Blame Contribute Delete
1.02 kB
#!/usr/bin/env bash
# GPU0 queue: thickness=0.075 → layout LLLLNLNLNLN (6L + 5N)
set -e
cd /home/mengbing/SIM_ISAC
PY="/home/mengbing/miniconda3/envs/sim/bin/python -u"
COMMON="--sensing-only --readout port --S 64 --Q 10 --Nh 128 --Nv 128 \
--range-grid inverse --Pt-UE-dBm 10 --snr-db 20 --epochs 60 --batch-size 96 \
--lr 3e-4 --weight-decay 1e-3 --sigma-s 1.5 --sigma-q 1.0 --device cuda:0"
LOG=/home/mengbing/SIM_ISAC/queue_logs
mkdir -p "$LOG"
echo "=== [GPU0 #1] thickness=0.10 (~9.3λ) — user's question ==="
CUDA_VISIBLE_DEVICES=0 $PY train_joint_dual.py $COMMON \
--thickness 0.10 \
--layout LLNLNLN --share-mask 1100000 \
--ckpt experiments_v2/checkpoints/phys_thick0p10.pt \
> "$LOG/gpu0_thick0p10.log" 2>&1
echo "=== [GPU0 #2] layout=LLLLNLNLNLN (6L+5N) ==="
CUDA_VISIBLE_DEVICES=0 $PY train_joint_dual.py $COMMON \
--layout LLLLNLNLNLN --share-mask 11000000000 \
--ckpt experiments_v2/checkpoints/phys_layout6L5N.pt \
> "$LOG/gpu0_layout6L5N.log" 2>&1
echo "=== GPU0 queue done ==="