SIM_ISAC / run_phys_queue_gpu1.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
# GPU1 queue: thickness=0.20 → Nh=Nv=192 (bigger aperture)
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 \
--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 "=== [GPU1 #1] thickness=0.20 (8λ) ==="
CUDA_VISIBLE_DEVICES=1 $PY train_joint_dual.py $COMMON \
--Nh 128 --Nv 128 \
--thickness 0.20 \
--layout LLNLNLN --share-mask 1100000 \
--ckpt experiments_v2/checkpoints/phys_thick0p20.pt \
> "$LOG/gpu1_thick0p20.log" 2>&1
echo "=== [GPU1 #2] Nh=Nv=192 (default thickness) ==="
CUDA_VISIBLE_DEVICES=1 $PY train_joint_dual.py $COMMON \
--Nh 192 --Nv 192 --batch-size 48 \
--layout LLNLNLN --share-mask 1100000 \
--ckpt experiments_v2/checkpoints/phys_Nh192.pt \
> "$LOG/gpu1_Nh192.log" 2>&1
echo "=== GPU1 queue done ==="