Skip to content
Snippets Groups Projects
Commit c54553f8 authored by seth's avatar seth
Browse files

adds file batch_small.slurm for running small case of code Smilei on Irene-amd

parent 586fc9b4
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#MSUB -r tst_small # job name
#MSUB -N 50 # number of nodes to use
#MSUB -n 200 # number of tasks
#MSUB -c 16 # number of threads per task to use
#MSUB -T 10800 # max walltime in seconds. default=7200
#MSUB -m scratch # file system
#MSUB -e error_%I.e # error output
#MSUB -o output_%I.o
#MSUB -A tgcc0090 # project
#MSUB -q rome #partition of machine
## Set the working dir to the dir in which the submission was called.
source env_amd
export OMP_NUM_THREADS=$SLURM_CPUS_PER_TASK
export KMP_AFFINITY=granularity=fine,compact,1,0,verbose
mkdir -p small_output
cd small_output
#ccc_mprun --mpi=pmi2 -K1 -m block:block -c $SLURM_CPUS_PER_TASK --resv-ports -n $SLURM_NTASKS $EXE ../test.py
ccc_mprun $EXE ../test.py
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment