https://gitlab.pks.mpg.de/mesoscopic-physics-of-life/frap_theory
Raw File
Tip revision: 2c4a972a380df7f9e86ddbbf0ae921443ce0800f authored by Lars Hubatsch on 26 October 2021, 13:21:39 UTC
Introduce second reaction rate parameter.
Tip revision: 2c4a972
job_mpi_fenics.sh
#!/bin/bash
#
# Number of nodes
#SBATCH -N 1
#SBATCH --ntasks=1
#
# Use nodes exclusive
##SBATCH --exclusive
#
#SBATCH --time=00:10:00
#
#SBATCH --cpus-per-task=5
#SBATCH --mem-per-cpu=10G
#SBATCH --error %j.out


# Load the module environment suitable for the job
source activate fepy37

export OMP_NUM_THREADS=$SLURM_CPUS_PER_TASK
start=`date +%s`
srun --mpi=pmi2 python /home/hubatsch/fenics_mpi/frap_theory/fenics_mpi_example.py
end=`date +%s`
runtime=$((end-start))
echo $runtime
back to top