-
Notifications
You must be signed in to change notification settings - Fork 68
/
CMakeLists.txt
278 lines (244 loc) · 10.4 KB
/
CMakeLists.txt
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
cmake_minimum_required(VERSION 2.8.9)
################################################################################
# User Inputs
################################################################################
# Specify Compiler
# Options: Intel and GNU
set(CMAKE_Fortran_COMPILER_ID "GNU")
# Set the name of the computer you are compiling on.
# Supported computers: rockfish, panoramix, njord, marcc, darwin-brew, cheyenne, stampede
# Otherwise, default settings are used
set(hostname "rockfish")
# Read and write binary files as big_endian or little_endian
# Options: DEFAULT, LITTLE, or BIG
set(WRITE_ENDIAN "DEFAULT")
set(READ_ENDIAN "DEFAULT")
# Options to enable various features in the code
option(USE_MPI "Enable parallelization support." ON)
option(USE_CPS "Enable concurrent precursor simulations." ON)
option(USE_HIT "Enable homogeneous isotropic turbulence input." OFF)
option(USE_LVLSET "Enable level set." OFF)
option(USE_TURBINES "Enable actuator disk model without rotation." ON)
option(USE_ATM "Enable actuator line/section model" OFF)
option(USE_DYN_TN "Dynamically update T, the timescale for Lagrangian averaging, using Taylor timescale." OFF)
option(USE_SAFETYMODE "Set extra safety measures." ON)
option(USE_CGNS "Enable CGNS data output." OFF)
option(USE_SCALARS "Enable scalar transport module." ON)
# Enable verbose mode
set(CMAKE_VERBOSE_MAKEFILE ON)
################################################################################
# Set up build (do not change)
################################################################################
# Set compiler versions for Cmake
# Intel
if (CMAKE_Fortran_COMPILER_ID STREQUAL "Intel")
set(compiler_name "ifort")
# GNU
elseif (CMAKE_Fortran_COMPILER_ID STREQUAL "GNU")
set(compiler_name "gfortran")
endif ()
find_program(WHICH NAMES which)
exec_program(${WHICH} ARGS ${compiler_name} OUTPUT_VARIABLE compiler_path)
set(CMAKE_Fortran_COMPILER ${compiler_path})
set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR})
# Project details
enable_language (Fortran)
project(lesgo)
set(exec_name "lesgo")
# Library links
if (${hostname} STREQUAL "marcc")
if (${CMAKE_Fortran_COMPILER_ID} STREQUAL "Intel")
set(CMAKE_Fortran_FLAGS ${CMAKE_Fortran_FLAGS} -mkl)
else()
link_libraries(fftw3)
endif()
else()
link_libraries(fftw3)
endif()
if (${hostname} STREQUAL "rockfish")
if (${CMAKE_Fortran_COMPILER_ID} STREQUAL "Intel")
set(CMAKE_Fortran_COMPILER ${compiler_path})
set(CMAKE_C_COMPILER gcc)
set(CMAKE_CXX_COMPILER g++)
else()
link_libraries(fftw3)
endif()
endif()
# Common include and link directories
include_directories(/usr/local/include)
link_directories(/usr/local/lib)
if ( NOT(${hostname} STREQUAL "darwin-brew") )
# include_directories($ENV{HOME}/include /usr/include)
include_directories(/usr/include)
link_directories($ENV{HOME}/lib /usr/lib64)
endif ()
# Include host-specific paths
# panoramix
if (${hostname} STREQUAL "panoramix")
if (USE_CGNS)
include_directories(/opt/cgns-3.2.1-hdf5-mpi/include
/opt/hdf5-1.8.12-mpi/include /usr/local/hdf5/include /usr/local/cgns/include
/act/fftw3/mpich/gcc-4.7.2/include /act/hdf5-1.8.15/mpich/gcc-4.7.2/include
/act/cgns-3.3.0/mpich/gcc-4.7.2/include)
link_directories(/opt/hdf5-1.8.12-mpi/lib /opt/cgns-3.2.1-hdf5-mpi/lib
/usr/local/hdf5/lib /usr/local/cgns/lib /act/fftw3/mpich/gcc-4.7.2/lib
/act/hdf5-1.8.15/mpich/gcc-4.7.2/lib /act/cgns-3.3.0/mpich/gcc-4.7.2/lib)
else (USE_CGNS)
include_directories(/act/fftw3/mpich/gcc-8.3.0/include)
link_directories(/act/fftw3/mpich/gcc-4.7.2/lib)
endif ()
# marcc
elseif (${hostname} STREQUAL "marcc")
# Intel
if (${CMAKE_Fortran_COMPILER_ID} STREQUAL "Intel")
include_directories(/software/apps/compilers/intel/mkl/include/fftw/)
link_directories(/software/apps/compilers/intel/mkl/lib/intel64/)
# GNU -- These have to be installed locally for now.
elseif (${CMAKE_Fortran_COMPILER_ID} STREQUAL "GNU")
include_directories(/software/apps/fftw3/3.3.8/gcc/5.5.0/include/)
link_directories(/software/apps/fftw3/3.3.8/gcc/5.5.0/lib/)
if (USE_CGNS)
include_directories($ENV{HOME}/cgns/include/)
link_directories($ENV{HOME}/hdf5/lib/ $ENV{HOME}/cgns/lib/)
endif ()
endif ()
# rockfish
elseif (${hostname} STREQUAL "rockfish")
# Intel
if (${CMAKE_Fortran_COMPILER_ID} STREQUAL "Intel")
include_directories(/data/apps/linux-centos8-cascadelake/intel-19.1.2.254/fftw-3.3.8-wxxony3sfn4vctui2jomkwlzs6jfnvqr/include/)
link_directories(/data/apps/linux-centos8-cascadelake/intel-19.1.2.254/fftw-3.3.8-wxxony3sfn4vctui2jomkwlzs6jfnvqr/lib/)
# GNU -- These have to be installed locally for now.
elseif (${CMAKE_Fortran_COMPILER_ID} STREQUAL "GNU")
include_directories(/data/apps/linux-centos8-cascadelake/gcc-9.3.0/fftw-3.3.8-uxkh4w5nrgeviv2ooaorhcuolbtbosyi/include/)
link_directories(/data/apps/linux-centos8-cascadelake/gcc-9.3.0/fftw-3.3.8-uxkh4w5nrgeviv2ooaorhcuolbtbosyi/lib/)
if (USE_CGNS)
include_directories($ENV{HOME}/cgns/include/)
link_directories($ENV{HOME}/hdf5/lib/ $ENV{HOME}/cgns/lib/)
endif ()
endif ()
# Cheyenne
elseif (${hostname} STREQUAL "cheyenne")
# Intel
if (${CMAKE_Fortran_COMPILER_ID} STREQUAL "Intel")
include_directories(/glade/u/apps/ch/opt/fftw3-mpi/3.3.6-pl2/mpt/2.15f/intel/18.0.1/include/)
link_directories(/glade/u/apps/ch/opt/fftw3-mpi/3.3.6-pl2/mpt/2.15f/intel/18.0.1/lib/)
# GNU -- These have to be installed locally for now.
elseif (${CMAKE_Fortran_COMPILER_ID} STREQUAL "GNU")
include_directories(/software/apps/fftw3/3.3.8/gcc/5.5.0/include/)
link_directories(/software/apps/fftw3/3.3.8/gcc/5.5.0/lib/)
if (USE_CGNS)
include_directories($ENV{HOME}/cgns/include/)
link_directories($ENV{HOME}/hdf5/lib/ $ENV{HOME}/cgns/lib/)
endif ()
endif ()
# stampede
elseif (${hostname} STREQUAL "stampede")
# Intel
include_directories(/opt/apps/intel18/impi18_0/fftw3/3.3.8/include /opt/intel/mkl/include/intel64/lp64)
link_directories(/opt/apps/intel18/impi18_0/fftw3/3.3.8/lib /opt/intel/mkl/lib/intel64_lin)
# njord
elseif (${hostname} STREQUAL "njord")
# nothing yet, but can add if needed
# all other systems
elseif (${hostname} STREQUAL "default")
# include_directories($ENV{HOME}/codes/fftw3/include)
# link_directories($ENV{HOME}/codes/fftw3/lib)
# nothing yet, but can add if needed
if (USE_CGNS)
include_directories($ENV{HOME}/cgns/include/)
link_directories($ENV{HOME}/hdf5/lib/ $ENV{HOME}/cgns/lib/)
endif ()
endif ()
# List common sources
set (Sources cfl_util.f90 clocks.f90 convec.f90 coriolis.f90 derivatives.f90 divstress_uv.f90
divstress_w.f90 emul_complex.f90 fft.f90 finalize.f90
forcing.f90 fringe.f90 functions.f90 grid.f90 inflow.f90
initial.f90 initialize.f90 input_util.f90 interpolag_Sdep.f90
interpolag_Ssim.f90 io.f90 lagrange_Sdep.f90 lagrange_Ssim.f90 main.f90
messages.f90 param.f90 param_output.f90 pid.f90
press_stag_array.f90 rmsdiv.f90 scaledep_dynamic.f90 shifted_inflow.f90
sgs_param.f90 sgs_stag_util.f90 sim_param.f90 sponge.f90 stat_defs.f90
std_dynamic.f90 string_util.f90 test_filtermodule.f90 tridag_array.f90
time_average.f90 types.f90 wallstress.f90 init_random_seed.f90
iwmles.f90)
if (USE_MPI)
add_definitions(-DPPMPI)
set (CMAKE_Fortran_COMPILER mpif90)
set(Sources ${Sources} mpi_transpose_mod.f90 mpi_defs.f90)
set(exec_name "${exec_name}-mpi")
endif (USE_MPI)
if (USE_CPS)
add_definitions(-DPPCPS)
set(Sources ${Sources} concurrent_precursor.f90)
set(exec_name "${exec_name}-cps")
endif (USE_CPS)
if (USE_HIT)
add_definitions(-DPPHIT)
set(Sources ${Sources} hit_inflow.f90)
set(exec_name "${exec_name}-HIT")
endif (USE_HIT)
if (USE_LVLSET)
add_definitions(-DPPLVLSET)
set(Sources ${Sources} level_set_base.f90 level_set.f90 linear_simple.f90
trees_pre_ls.f90 trees_base_ls.f90 trees_setup_ls.f90 trees_io_ls.f90
trees_global_fmask_ls.f90)
set(exec_name "${exec_name}-ls")
endif (USE_LVLSET)
if (USE_TURBINES)
add_definitions(-DPPTURBINES)
set(Sources ${Sources} turbines.f90 turbine_indicator.f90)
set(exec_name "${exec_name}-turbines")
endif (USE_TURBINES)
if (USE_ATM)
add_definitions(-DPPATM)
set(Sources ${Sources} atm_base.f90 atm_input_util.f90
actuator_turbine_model.f90 atm_lesgo_interface.f90)
set(exec_name "${exec_name}-ATM")
endif (USE_ATM)
if (OUTPUT_EXTRA)
add_definitions(-DPPOUTPUT_EXTRA)
set(exec_name "${exec_name}-exout")
endif (OUTPUT_EXTRA)
if (USE_DYN_TN)
add_definitions(-DPPDYN_TN)
set(exec_name "${exec_name}-dyntn")
endif (USE_DYN_TN)
if (USE_SAFETYMODE)
add_definitions(-DPPSAFETYMODE)
else (USE_SAFETYMODE)
set(exec_name "${exec_name}-safety_off")
endif (USE_SAFETYMODE)
if (USE_CGNS)
add_definitions(-DPPCGNS)
link_libraries(cgns hdf5)
set(exec_name "${exec_name}-cgns")
endif (USE_CGNS)
if (USE_SCALARS)
add_definitions(-DPPSCALARS)
set(exec_name "${exec_name}-scalars")
set(Sources ${Sources} scalars.f90 stability.f90)
endif (USE_SCALARS)
if (WRITE_ENDIAN STREQUAL "LITTLE")
add_definitions(-DPPWRITE_LITTLE_ENDIAN)
endif (WRITE_ENDIAN STREQUAL "LITTLE")
if (WRITE_ENDIAN STREQUAL "BIG")
add_definitions(-DPPWRITE_BIG_ENDIAN)
endif (WRITE_ENDIAN STREQUAL "BIG")
if (READ_ENDIAN STREQUAL "LITTLE")
add_definitions(-DPPREAD_LITTLE_ENDIAN)
endif (READ_ENDIAN STREQUAL "LITTLE")
if (READ_ENDIAN STREQUAL "BIG")
add_definitions(-DPPREAD_BIG_ENDIAN)
endif (READ_ENDIAN STREQUAL "BIG")
# Intel
if (CMAKE_Fortran_COMPILER_ID STREQUAL "Intel")
set (CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -cpp -O2 -funroll-loops -no-wrap-margin -assume byterecl")
#set (CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -cpp -O0 -g -traceback -no-wrap-margin -assume byterecl")
# GNU
else (CMAKE_Fortran_COMPILER_ID STREQUAL "Intel")
set (CMAKE_Fortran_FLAGS "-cpp -O2 -ffast-math -funroll-loops -fall-intrinsics -Wall -fcheck=all")
#set (CMAKE_Fortran_FLAGS "-cpp -O0 -g -fbacktrace -fall-intrinsics -Wall -fcheck=all")
endif (CMAKE_Fortran_COMPILER_ID STREQUAL "Intel")
# main lesgo executable
add_executable(${exec_name} ${Sources})