Page MenuHomec4science

hello.run
No OneTemporary

File Metadata

Created
Wed, Oct 16, 12:54

hello.run

#!/bin/bash
#SBATCH --ntasks 4
## cpus-per-task > 1 needed for multithreaded applications
#SBATCH --cpus-per-task 1
## maximum memory needed in MB
#SBATCH --mem 4096
## maximum walltime needed
#SBATCH --time 00:05:00
module purge
module load intel intelmpi
# compiled with mpiicc hello_mpi.c -o hello_mpi
srun ./hello_mpi

Event Timeline