2022-11-26 21:44:47 +07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#SBATCH --nodes=1
|
2022-11-27 13:44:28 +07:00
|
|
|
#SBATCH --node-list=komputasi06
|
2022-11-26 21:44:47 +07:00
|
|
|
#SBATCH --time=00:05:00
|
|
|
|
#SBATCH --job-name=Gabriel
|
|
|
|
|
|
|
|
whoami
|
|
|
|
hostname
|
|
|
|
|
2022-11-27 13:36:20 +07:00
|
|
|
gfortran -fopenmp tugas-parallel.f
|
2022-11-26 21:44:47 +07:00
|
|
|
export OMP_NUM_THREADS=20
|
|
|
|
export OMP_STACKSIZE=32m
|
|
|
|
ulimit -s unlimited
|
|
|
|
./a.out
|