diff --git a/basic_mpi.sh b/basic_mpi.sh new file mode 100644 index 0000000000000000000000000000000000000000..4f0e4229c049caa8273ce0e9e8f763aca0db72a4 --- /dev/null +++ b/basic_mpi.sh @@ -0,0 +1,11 @@ +#!/usr/bin/zsh + +### Job Parameters +#SBATCH --ntasks=8 # Ask for 8 MPI tasks +#SBATCH --time=00:15:00 # Run time of 15 minutes +#SBATCH --job-name=example_job # Sets the job name +#SBATCH --output=stdout.txt # redirects stdout and stderr to stdout.txt +#SBATCH --account=<project-id> # Insertg your project-id or delete this line + +### Program Code +srun hostname \ No newline at end of file