-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.inc
More file actions
39 lines (33 loc) · 965 Bytes
/
Copy pathmake.inc
File metadata and controls
39 lines (33 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# ------------------------------------------
# Fortran compiler (choose one of the three)
# ------------------------------------------
# FC = ifort
# FC = gfortran
FC = ftn
# -----
# Flags
# -----
# FC_FLAGS = -O3 -qopenmp
# FC_FLAGS = -O3 -fopenmp
FC_FLAGS = -O3 -qopenmp -target-cpu=sandybridge
# -------------------------------------
# Linking to BLAS/LAPACK or MKL library
# -------------------------------------
# (1) Linking to MKL installed on the local machine
# -------------------------------------------------
# LAPACK_LIB = -L /opt/intel/mkl/lib/intel64 -lmkl_intel_lp64 \
# -lmkl_intel_thread -lmkl_core -liomp5 -lpthread
# (2) Linking to MKL or LibScie installed on NERSC
# ------------------------------------------------
# LAPACK_LIB = -mkl
LAPACK_LIB =
# -----------
# FSI library
# -----------
FSI_LIB = libfsi.a
# ------------------
# Archiver and flags
# ------------------
ARCH = ar
ARFLAG = cr
RANLIB = ranlib