forked from smsharma/mining-for-substructure-lens
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimulate_test.sh
More file actions
22 lines (18 loc) · 1.39 KB
/
Copy pathsimulate_test.sh
File metadata and controls
22 lines (18 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
#SBATCH --job-name=sim-eval
#SBATCH --output=log_simulate_eval_%a.log
#SBATCH --nodes=1
#SBATCH --cpus-per-task=1
#SBATCH --mem=32GB
#SBATCH --time=7-00:00:00
# #SBATCH --gres=gpu:1
source activate lensing
cd /scratch/jb6504/StrongLensing-Inference/
python -u simulate.py --fixz --fixm --fixalign -n 10000 --name test_fix_${SLURM_ARRAY_TASK_ID} --test --point --dir /scratch/jb6504/StrongLensing-Inference
python -u simulate.py --fixz --fixalign -n 10000 --name test_mass_${SLURM_ARRAY_TASK_ID} --test --point --dir /scratch/jb6504/StrongLensing-Inference
python -u simulate.py --fixz --fixm -n 10000 --name test_align_${SLURM_ARRAY_TASK_ID} --test --point --dir /scratch/jb6504/StrongLensing-Inference
python -u simulate.py -n 10000 --name test_full_${SLURM_ARRAY_TASK_ID} --test --point --dir /scratch/jb6504/StrongLensing-Inference
python -u simulate.py --fixz --fixm --fixalign -n 10000 --name test_fix_prior_${SLURM_ARRAY_TASK_ID} --test --dir /scratch/jb6504/StrongLensing-Inference
python -u simulate.py --fixz --fixalign -n 10000 --name test_mass_prior_${SLURM_ARRAY_TASK_ID} --test --dir /scratch/jb6504/StrongLensing-Inference
python -u simulate.py --fixz --fixm -n 10000 --name test_align_prior_${SLURM_ARRAY_TASK_ID} --test --dir /scratch/jb6504/StrongLensing-Inference
python -u simulate.py -n 10000 --name test_full_prior_${SLURM_ARRAY_TASK_ID} --test --dir /scratch/jb6504/StrongLensing-Inference