add some files needed for running simulations on slurm
This commit is contained in:
parent
f8f58301e0
commit
56dfdacc2e
21
simulations/run_simulation.sbatch
Normal file
21
simulations/run_simulation.sbatch
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#SBATCH --job-name="simulate measurement error models"
|
||||||
|
## Allocation Definition
|
||||||
|
#SBATCH --account=comdata
|
||||||
|
#SBATCH --partition=compute-bigmem
|
||||||
|
## Resources
|
||||||
|
#SBATCH --nodes=1
|
||||||
|
## Walltime (12 hours)
|
||||||
|
#SBATCH --time=24:00:00
|
||||||
|
## Memory per node
|
||||||
|
#SBATCH --mem=8G
|
||||||
|
#SBATCH --cpus-per-task=1
|
||||||
|
#SBATCH --ntasks-per-node=1
|
||||||
|
#SBATCH --chdir /gscratch/comdata/users/nathante/ml_measurement_error/mi_simulations
|
||||||
|
#SBATCH --output=simulation_jobs/%A_%a.out
|
||||||
|
#SBATCH --error=simulation_jobs/%A_%a.out
|
||||||
|
|
||||||
|
TASK_NUM=$(($SLURM_ARRAY_TASK_ID + $1))
|
||||||
|
TASK_CALL=$(sed -n ${TASK_NUM}p $2)
|
||||||
|
${TASK_CALL}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user