#!/bin/bash #SBATCH --nodes=48 # Number of nodes to be used. #SBATCH --cpus-per-task=1 #SBATCH --ntasks=192 # 48 nodes times 4 cores. #SBATCH --partition=qwfall #SBATCH --time= 12:00:00 # max time on qwfall is 24h, on qwfall-long 7d. #SBATCH --job-name=parallel-example #SBATCH --output=parallel-example-%j.stdout.txt # %j expanded into job id. #SBATCH --error=parallel-example-%j.stderr.txt mpirun ./parallel_example