Skip to content
Snippets Groups Projects
Commit 8039d9e1 authored by Jbrackenhoff's avatar Jbrackenhoff
Browse files

WS15

parent 472f277a
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
#PBS -N Marchenko
#PBS -j oe
#PBS -l place=scatter,select=1
#PBS -S /bin/bash
#PBS -V
#PBS -q bw44-sm
# PBS -q sk40-sm
#PBS -l walltime=00:10:00
set -x
cd $PBS_O_WORKDIR
ulimit -s unlimited
export KMP_AFFINITY=disabled
export OMP_NUM_THREADS=40
starttime=`date +%s%N`
aprun -n1 -d $OMP_NUM_THREADS ./marchenko_ray.scr
endtime=`date +%s%N`
runtime=$(echo "scale=9; 1.0*10^(-9)*(${endtime}-${starttime})" | bc -l)
echo "Runtime = $runtime seconds"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment