-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (14 loc) · 948 Bytes
/
Makefile
File metadata and controls
19 lines (14 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
#CEDAR
#ifort -O3 -mkl=parallel -qopenmp *.f90
#ifort -O3 -mkl=parallel -qopenmp *.f90
#SCINET
#ifort -O3 -mkl=parallel -openmp *.f90
#ifort -O3 -mkl=parallel -openmp *.f90
#LINUX MINT
export OMP_STACKSIZE=10M
gfortran -fcheck=bounds -O3 -fopenmp -m64 -I${MKLROOT}/include *.f90 -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core -lgomp -lpthread -lm -ldl
gfortran -fcheck=bounds -O3 -fopenmp -m64 -I${MKLROOT}/include *.f90 -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core -lgomp -lpthread -lm -ldl
#gfortran -O3 -fopenmp -m64 -I${MKLROOT}/include *.f90 -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core -lgomp -lpthread -lm -ldl
#gfortran -O3 -fopenmp -m64 -I${MKLROOT}/include *.f90 -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core -lgomp -lpthread -lm -ldl
echo "Make Complete"