forked from parflow/parflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
595 lines (493 loc) · 22.1 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
cmake_minimum_required (VERSION 3.14)
project (PARFLOW LANGUAGES C Fortran CXX)
set (CMAKE_CXX_STANDARD 11)
set (CMAKE_C_STANDARD 11)
set (CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules/")
#-----------------------------------------------------------------------------
# Set accelerator backend
#-----------------------------------------------------------------------------
set(PARFLOW_ACCELERATOR_BACKEND "none" CACHE STRING "Set accelerator backend")
set_property(CACHE PARFLOW_ACCELERATOR_BACKEND PROPERTY STRINGS none cuda omp)
if(PARFLOW_ACCELERATOR_BACKEND STREQUAL "none")
set(PARFLOW_ACC_BACKEND 0)
elseif(PARFLOW_ACCELERATOR_BACKEND STREQUAL "cuda")
# Initialize CUDA
include(CheckLanguage)
check_language(CUDA)
if(CMAKE_CUDA_COMPILER)
enable_language(CUDA)
set(CMAKE_CUDA_STANDARD 14)
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -gencode=arch=compute_60,code=sm_60 -gencode=arch=compute_70,code=sm_70 --expt-extended-lambda")
if(CMAKE_CUDA_COMPILER_VERSION VERSION_GREATER 11)
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -gencode=arch=compute_80,code=sm_80")
endif(CMAKE_CUDA_COMPILER_VERSION VERSION_GREATER 11)
set(CMAKE_CUDA_FLAGS_DEBUG "${CMAKE_CUDA_FLAGS_DEBUG} -G --ptxas-options=-v")
set(CMAKE_CUDA_FLAGS_RELEASE "-Xptxas ${CMAKE_CUDA_FLAGS_RELEASE}")
set(CMAKE_CUDA_HOST_COMPILER mpicxx)
message(STATUS "Found CUDA ${CMAKE_CUDA_COMPILER_VERSION} at ${CMAKE_CUDA_COMPILER}")
set(PARFLOW_HAVE_CUDA "yes")
set(PARFLOW_ACC_BACKEND 1)
else(CMAKE_CUDA_COMPILER)
message(FATAL_ERROR "ERROR: CUDA installation not found")
endif(CMAKE_CUDA_COMPILER)
# Include RapidsAI Memory Manager (RMM) for pool allocation
# @MCB 04/16/2020: This should probably be moved outside of the CUDA block at some point
# so other accelerators have the option to use it as well.
if(DEFINED RMM_ROOT)
find_path(RMM_INCLUDE "rmm" HINTS "${RMM_ROOT}/include")
find_library(RMM_LIBRARY "rmm" HINTS "${RMM_ROOT}/lib")
if(RMM_INCLUDE AND RMM_LIBRARY)
message(STATUS "RMM: RMM_LIBRARY set to ${RMM_LIBRARY}")
message(STATUS "RMM: RMM_INCLUDE set to ${RMM_INCLUDE}")
add_library(rmm SHARED IMPORTED ${RMM_LIBRARY})
set_target_properties(rmm PROPERTIES IMPORTED_LOCATION ${RMM_LIBRARY})
# PARFLOW_HAVE_RMM is not defined in parflow_config.h because because it is
# only set for the compilation of parflow_exe, parflow_lib, and kinsol sources.
# RMM must be initialized before it is used, so, for example,
# the amps tests would fail if used across all compiles.
set(PARFLOW_HAVE_RMM "yes")
else(RMM_INCLUDE AND RMM_LIBRARY)
message(FATAL_ERROR "ERROR: RMM installation not found")
endif(RMM_INCLUDE AND RMM_LIBRARY)
message(STATUS "ACCELERATOR: Compiling with CUDA and RMM")
else(DEFINED RMM_ROOT)
message(STATUS "ACCELERATOR: Compiling with CUDA (RMM not used)")
endif(DEFINED RMM_ROOT)
elseif(PARFLOW_ACCELERATOR_BACKEND STREQUAL "omp")
message(STATUS "ACCELERATOR: Compiling ParFlow with backend accelerator OpenMP")
# Enable C and CXX -fopenmp flag, enable ParFlow defines.
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp")
set(PARFLOW_HAVE_OMP "yes")
set(PARFLOW_ACC_BACKEND 2)
else()
message(FATAL_ERROR "ERROR: Unknown backend type! PARFLOW_ACCELERATOR_BACKEND=${PARFLOW_ACCELERATOR_BACKEND} does not exist!")
endif()
#-----------------------------------------------------------------------------
# Version number
#-----------------------------------------------------------------------------
include (Version)
#
# Make a version file containing the current version from git.
#
include(GetGitRevisionDescription)
git_describe(PARFLOW_VERSION --tags)
# If not building with git then get version from file
if (NOT PARFLOW_VERSION)
file (STRINGS "VERSION" PARFLOW_VERSION)
endif ()
message("Configuring version : ${PARFLOW_VERSION}")
version_create_variables (PARFLOW)
#-----------------------------------------------------------------------------
# General project wide configuration
#-----------------------------------------------------------------------------
# TODO should get rid of non-prefix versions of flags; preprocessor flags should be in PARFLOW namespace
# TODO replace CASC macro names with PARFLOW when completed.
# Use RPATH in install, many mpicc scripts use RPATH so default
# behavior of CMAKE to remove RPATH from installed executables is not
# so good.
#SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
# use, i.e. don't skip the full RPATH for the build tree
set(CMAKE_SKIP_BUILD_RPATH FALSE)
# when building, don't use the install RPATH already
# (but later on when installing)
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
# add the automatically determined parts of the RPATH
# which point to directories outside the build tree to the install RPATH
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
# the RPATH to be used when installing, but only if it's not a system directory
list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" isSystemDir)
if("${isSystemDir}" STREQUAL "-1")
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
endif("${isSystemDir}" STREQUAL "-1")
# Set AMPS communication layer
set(PARFLOW_AMPS_LAYER "seq" CACHE STRING "Set the Communications layer to use")
set_property(CACHE PARFLOW_AMPS_LAYER PROPERTY STRINGS seq mpi1 cuda smpi oas3 win32)
set(AMPS ${PARFLOW_AMPS_LAYER})
if((NOT PARFLOW_HAVE_CUDA) AND (${PARFLOW_AMPS_LAYER} STREQUAL "cuda"))
message(FATAL_ERROR "ERROR: Using PARFLOW_AMPS_LAYER=cuda requires building with GPU acceleration!")
endif((NOT PARFLOW_HAVE_CUDA) AND (${PARFLOW_AMPS_LAYER} STREQUAL "cuda"))
option(PARFLOW_AMPS_SEQUENTIAL_IO "Use AMPS single file I/O model for output of PFB files" "TRUE")
if (PARFLOW_AMPS_SEQUENTIAL_IO)
message("Using single file AMPS I/O for PFB output")
else ()
message("Using multiple file AMPS I/O for PFB output")
set(AMPS_SPLIT_FILE "yes")
endif ()
# OAS3
option(PARFLOW_HAVE_OAS3 "Build with OAS3" "no")
if (PARFLOW_HAVE_OAS3)
set (PARFLOW_HAVE_OAS3 "yes")
set (HAVE_OAS3 ${PARFLOW_HAVE_OAS3})
endif ()
set (PARFLOW_AMPS_LAYER_REQUIRE_MPI cuda mpi1 smpi oas3)
set (PARFLOW_TEST_PARALLEL cuda mpi1 smpi)
option(PARFLOW_TEST_FORCE_MPIEXEC "Always use MPIEXEC runner for MPI applications in tests" "OFF")
# Check for MPI only if AMPS requires it
if ( ${PARFLOW_AMPS_LAYER} IN_LIST PARFLOW_AMPS_LAYER_REQUIRE_MPI )
find_package(MPI)
if (${MPI_C_FOUND})
set(PARFLOW_HAVE_MPI "yes")
set(HAVE_MPI ${PARFLOW_HAVE_MPI})
endif (${MPI_C_FOUND})
endif ( ${PARFLOW_AMPS_LAYER} IN_LIST PARFLOW_AMPS_LAYER_REQUIRE_MPI )
find_package(TCL QUIET)
if (${TCL_FOUND})
set(PARFLOW_HAVE_TCL "yes")
set(HAVE_TCL ${PARFLOW_HAVE_TCL})
else (${TCL_FOUND})
if (${PARFLOW_ENABLE_TOOLS})
message(FATAL_ERROR "TCL is required for building pftools")
endif (${PARFLOW_ENABLE_TOOLS})
endif (${TCL_FOUND})
#-----------------------------------------------------------------------------
# SILO
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_SILO "Build with Silo" "OFF")
if (${PARFLOW_ENABLE_SILO} OR DEFINED SILO_ROOT)
find_package(Silo)
if (${SILO_FOUND})
set(PARFLOW_HAVE_SILO "yes")
set(HAVE_SILO ${PARFLOW_HAVE_SILO})
endif (${SILO_FOUND})
endif (${PARFLOW_ENABLE_SILO} OR DEFINED SILO_ROOT)
#-----------------------------------------------------------------------------
# NetCDF
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_NETCDF "Build with NetCDF" "OFF")
if (${PARFLOW_ENABLE_NETCDF} OR DEFINED NETCDF_DIR OR DEFINED NETCDF_INCLUDE_DIR OR DEFINED NETCDF_LIBRARY)
find_package (NetCDF)
if (${NETCDF_FOUND})
set(PARFLOW_HAVE_NETCDF "yes")
set(HAVE_NETCDF ${PARFLOW_HAVE_NETCDF})
find_package(CURL)
endif (${NETCDF_FOUND})
endif (${PARFLOW_ENABLE_NETCDF} OR DEFINED NETCDF_DIR OR DEFINED NETCDF_INCLUDE_DIR OR DEFINED NETCDF_LIBRARY)
#-----------------------------------------------------------------------------
# HDF5
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_HDF5 "Build with HDF5" "OFF")
if (${PARFLOW_ENABLE_HDF5} OR DEFINED HDF5_ROOT)
set(HDF5_PREFER_PARALLEL True)
if (${PARFLOW_HAVE_NETCDF})
set(PARFLOW_HDF5_COMPONENTS C HL)
else()
set(PARFLOW_HDF5_COMPONENTS C)
endif()
find_package(HDF5 COMPONENTS ${PARFLOW_HDF5_COMPONENTS})
if (${HDF5_FOUND})
set(PARFLOW_HAVE_HDF5 "yes")
set(HAVE_HDF5 ${PARFLOW_HAVE_HDF5})
endif (${HDF5_FOUND})
endif (${PARFLOW_ENABLE_HDF5} OR DEFINED HDF5_ROOT)
#-----------------------------------------------------------------------------
# Hypre
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_HYPRE "Build with Hypre" "OFF")
if (${PARFLOW_ENABLE_HYPRE} OR DEFINED HYPRE_ROOT)
find_package(Hypre)
if (${HYPRE_FOUND})
set(PARFLOW_HAVE_HYPRE "yes")
set(HAVE_HYPRE ${PARFLOW_HAVE_HYPRE})
file(STRINGS ${HYPRE_INCLUDE_DIR}/HYPRE_config.h hypreConfig REGEX HYPRE_RELEASE_VERSION)
separate_arguments(hypreConfig)
list(GET hypreConfig 2 PARFLOW_HYPRE_VERSION)
version_create_variables (PARFLOW_HYPRE)
endif (${HYPRE_FOUND})
endif (${PARFLOW_ENABLE_HYPRE} OR DEFINED HYPRE_ROOT)
#-----------------------------------------------------------------------------
# ZLIB
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_ZLIB "Build with Zlib compression library" "OFF")
if (${PARFLOW_ENABLE_ZLIB} OR DEFINED ZLIB_ROOT)
find_package(ZLIB)
if (${ZLIB_FOUND})
set(PARFLOW_HAVE_ZLIB "yes")
endif (${ZLIB_FOUND})
endif (${PARFLOW_ENABLE_ZLIB} OR DEFINED ZLIB_ROOT)
#-----------------------------------------------------------------------------
# SZLIB
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_SZLIB "Build with SZlib compression library" "OFF")
if (${PARFLOW_ENABLE_SZLIB} OR DEFINED SZLIB_ROOT)
find_package(SZLIB)
if (${SZLIB_FOUND})
set(PARFLOW_HAVE_SZLIB "yes")
endif (${SZLIB_FOUND})
endif (${PARFLOW_ENABLE_SZLIB} OR DEFINED SZLIB_ROOT)
#-----------------------------------------------------------------------------
# Sundials
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_SUNDIALS "Build with SUNDIALS" "OFF")
if (${PARFLOW_ENABLE_SUNDIALS} OR DEFINED SUNDIALS_ROOT)
find_package(SUNDIALS COMPONENTS sundials_cvode sundials_kinsol)
if (${SUNDIALS_FOUND})
set(PARFLOW_HAVE_SUNDIALS "yes")
set(HAVE_SUNDIALS ${PARFLOW_HAVE_SUNDIALS})
endif (${SUNDIALS_FOUND})
endif (${PARFLOW_ENABLE_SUNDIALS} OR DEFINED SUNDIALS_ROOT)
#-----------------------------------------------------------------------------
# SLURM
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_SLURM "Build with SLURM support" "OFF")
if (${PARFLOW_ENABLE_SLURM} OR DEFINED SLURM_ROOT)
find_package(SLURM)
if (${SLURM_FOUND})
set(PARFLOW_HAVE_SLURM "yes")
set(HAVE_SLURM ${PARFLOW_HAVE_SLURM})
endif (${SLURM_FOUND})
endif (${PARFLOW_ENABLE_SLURM} OR DEFINED SLURM_ROOT)
#-----------------------------------------------------------------------------
# libm
#-----------------------------------------------------------------------------
if (NOT DEFINED PARFLOW_LIBM)
find_library(PARFLOW_LIBM m)
endif (NOT DEFINED PARFLOW_LIBM)
#-----------------------------------------------------------------------------
# Valgrind
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_VALGRIND "Build with Valgrind support" "OFF")
if (${PARFLOW_ENABLE_VALGRIND} )
find_program( PARFLOW_MEMORYCHECK_COMMAND valgrind)
set(PARFLOW_HAVE_MEMORYCHECK "yes")
set(PARFLOW_MEMORYCHECK_SUPPRESSIONS_FILE "${PROJECT_SOURCE_DIR}/bin/valgrind.sup")
set(PARFLOW_MEMORYCHECK_COMMAND_OPTIONS "--gen-suppressions=all --leak-check=full --suppressions=${PARFLOW_MEMORYCHECK_SUPPRESSIONS_FILE}")
endif (${PARFLOW_ENABLE_VALGRIND})
#-----------------------------------------------------------------------------
# Ptrace
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_ETRACE "Build with etrace" "OFF")
if (${PARFLOW_ENABLE_ETRACE})
set(PARFLOW_HAVE_ETRACE "yes")
set(PARFLOW_ETRACE_COMPILE_FLAGS "-finstrument-functions")
set(PARFLOW_ETRACE_LIBRARY "etrace")
else (${PARFLOW_ENABLE_ETRACE})
set(PARFLOW_ETRACE_COMPILE_FLAGS "")
set(PARFLOW_ETRACE_LIBRARY "")
endif (${PARFLOW_ENABLE_ETRACE})
#-----------------------------------------------------------------------------
# Fortran checks
#-----------------------------------------------------------------------------
include(CheckFortranSourceCompiles)
# Check if simple fortran 77 compile works
CHECK_Fortran_SOURCE_COMPILES(" program main
implicit none
write ( *, '(a)' ) ' Hello, world!'
stop
end" FORTRAN_77_WORKS)
# Check if Fortran 90 compile works with free format
set(SAVE_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${CMAKE_Fortran_FORMAT_FREE_FLAG}")
CHECK_Fortran_SOURCE_COMPILES("program main
implicit none
write ( *, '(a)' ) ' Hello, world!'
stop
end" FORTRAN_F90_WORKS)
#
# Determine syntax for writing binary file under Fortran
#
# Check whether the Fortran compiler supports the access="stream" open syntax
CHECK_Fortran_SOURCE_COMPILES("program freeform
open(10, file='test.bin', access='stream', form='unformatted', status='replace')
write(10) \"first\"
write(10) \"second\"
close(UNIT=10)
end program freeform" HAVE_FC_ACCESS_STREAM)
# Check whether the Fortran compiler supports the access="sequential" open syntax
CHECK_Fortran_SOURCE_COMPILES("program freeform
open(10, file='test.bin', access='sequential', form='binary', status='replace')
write(10) \"first\"
write(10) \"second\"
close(UNIT=10)
end program freeform" HAVE_FC_ACCESS_SEQUENTIAL)
#
# Set implicit none flag on Fortran compiles
#
include(CheckFortranCompilerFlag)
set(none_test 0)
foreach(flag "-implicitnone" "-fimplicit-none" "-u" "-Wimplicit none")
message(STATUS "Checking Fortran implicit none flag : ${flag}")
check_fortran_compiler_flag("${flag}" PARFLOW_FORTRAN_IMPLICIT_NONE_${none_test})
if(${PARFLOW_FORTRAN_IMPLICIT_NONE_${none_test}})
set(PARFLOW_FORTRAN_IMPLICIT_NONE TRUE)
set(PARFLOW_FORTRAN_IMPLICIT_NONE_FLAG "${flag}")
break()
endif(${PARFLOW_FORTRAN_IMPLICIT_NONE_${none_test}})
math(EXPR none_test "${none_test} + 1")
endforeach(flag)
if(${PARFLOW_FORTRAN_IMPLICIT_NONE})
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} ${PARFLOW_FORTRAN_IMPLICIT_NONE_FLAG}")
endif(${PARFLOW_FORTRAN_IMPLICIT_NONE})
set(CMAKE_REQUIRED_FLAGS ${SAVE_CMAKE_REQUIRED_FLAGS})
include(CheckCSourceCompiles)
CHECK_C_SOURCE_COMPILES("int main(int argc, char **argv) {return 0;}"
C_WORKS)
if (${HAVE_FC_ACCESS_STREAM})
set (PARFLOW_FC_ACCESS "stream")
set (PARFLOW_FC_FORM "unformatted")
elseif (${HAVE_FC_ACCESS_SEQUENTIAL})
set (PARFLOW_FC_ACCESS, "sequential")
set (PARFLOW_FC_FORM "binary")
else (${HAVE_FC_ACCESS_STREAM})
message( FATAL_ERROR "Unable to determine syntax to use for Fortran binary files")
endif (${HAVE_FC_ACCESS_STREAM})
#
# Check for platform specific features
#
include (TestBigEndian)
include(CheckSymbolExists)
include(CheckIncludeFiles)
test_big_endian(PARFLOW_HAVE_BIG_ENDIAN)
set(CASC_HAVE_BIGENDIAN ${PARFLOW_HAVE_BIG_ENDIAN})
# Check for gettimeofday
check_symbol_exists(gettimeofday sys/time.h PARFLOW_HAVE_GETTIMEOFDAY)
if ( ${PARFLOW_HAVE_GETTIMEOFDAY} )
set(CASC_HAVE_GETTIMEOFDAY ${PARFLOW_HAVE_GETTIMEOFDAY})
endif ( ${PARFLOW_HAVE_GETTIMEOFDAY} )
check_include_files (malloc.h PARFLOW_HAVE_MALLOC_H)
if ( ${PARFLOW_HAVE_MALLOC_H} )
set(HAVE_MALLOC_H ${PARFLOW_HAVE_MALLOC_H})
endif ( ${PARFLOW_HAVE_MALLOC_H} )
# Check for mallinfo
check_symbol_exists(mallinfo malloc.h PARFLOW_HAVE_MALLINFO)
if ( ${PARFLOW_HAVE_MALLINFO} )
set(HAVE_MALLINFO ${PARFLOW_HAVE_MALLINFO})
endif ( ${PARFLOW_HAVE_MALLINFO} )
option(PARFLOW_HAVE_CLM "Compile with CLM" "OFF")
if ( ${PARFLOW_HAVE_CLM} )
# Make true value match autoconf value; for some backwards compatiblity
set(PARFLOW_HAVE_CLM "yes")
set(HAVE_CLM ${PARFLOW_HAVE_CLM})
endif ( ${PARFLOW_HAVE_CLM} )
#
# Parflow specific configuration options
#
# Control timing of Parflow functions.
option(PARFLOW_ENABLE_TIMING "Enable timing of key Parflow functions; may slow down performance" "False")
if(PARFLOW_ENABLE_TIMING)
set (PF_TIMING ${PARFLOW_ENABLE_TIMING})
endif(PARFLOW_ENABLE_TIMING)
# Profiling
option(PARFLOW_ENABLE_PROFILING "Enable profiling; will slow down performance" "False")
if(PARFLOW_ENABLE_PROFILING)
set(PARFLOW_PROFILE_OPTS "-pg")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${PARFLOW_PROFILE_OPTS}" )
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${PARFLOW_PROFILE_OPTS}" )
else(PARFLOW_ENABLE_PROFILING)
set (PARFLOW_PROFILE_OPTS "")
endif(PARFLOW_ENABLE_PROFILING)
include_directories ("${CMAKE_SOURCE_DIR}/pfsimulator/parflow_lib")
include_directories ("${PROJECT_SOURCE_DIR}/pfsimulator/amps/${PARFLOW_AMPS_LAYER}")
include_directories ("${PROJECT_SOURCE_DIR}/pfsimulator/amps/common")
include_directories ("${PROJECT_BINARY_DIR}/include")
#-----------------------------------------------------------------------------
# Setup configure.h file for accessing configure options
# -----------------------------------------------------------------------------
configure_file (cmake/parflow_config.h.in include/parflow_config.h)
configure_file (cmake/pfversion.h.in include/pfversion.h)
configure_file (cmake/Makefile.config.in config/Makefile.config)
configure_file (cmake/pf-cmake-env.sh.in config/pf-cmake-env.sh)
if ( ${PARFLOW_HAVE_CLM} )
configure_file (pfsimulator/clm/parflow_config.F90.in ${PROJECT_BINARY_DIR}/pfsimulator/clm/parflow_config.F90)
endif ( ${PARFLOW_HAVE_CLM} )
#-----------------------------------------------------------------------------
# CMAKE Subdirectories
#-----------------------------------------------------------------------------
# Need to turn on testing so tests in subdirctories are included in test target.
enable_testing ()
# Optionally build the simulator and/or tools.
# This is used on architectures where the login node is a different architecture
# than the compute nodes. The simulator is built for the compute nodes; tools
# is built for the login node.
option(PARFLOW_ENABLE_SIMULATOR "Enable building of the Parflow simulator" "True")
if ( ${PARFLOW_ENABLE_SIMULATOR} )
add_subdirectory (pfsimulator)
add_subdirectory (test)
add_subdirectory (examples)
endif ()
option(PARFLOW_ENABLE_TOOLS "Enable building of the Parflow tools" "True")
if ( ${PARFLOW_ENABLE_TOOLS} )
add_subdirectory (pftools)
endif ()
#-----------------------------------------------------------------------------
# Setup CTEST environment
#-----------------------------------------------------------------------------
include (CTest)
option(PARFLOW_ENABLE_LATEX "Enable LaTEX and building of documentation" "OFF")
if (PARFLOW_ENABLE_LATEX)
add_subdirectory(docs/manuals)
endif()
install (DIRECTORY ${CMAKE_BINARY_DIR}/config/ DESTINATION config)
# Test script for docker builds
install(PROGRAMS bin/parflow-docker-test DESTINATION bin)
#-----------------------------------------------------------------------------
# Doxygen
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_DOXYGEN "Enable Doxygen and building of code documentation" "OFF")
if ( ${PARFLOW_ENABLE_DOXYGEN} )
find_package(Doxygen)
if (DOXYGEN_FOUND)
set(DOXYGEN_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/docs/doxygen)
set(DOXYGEN_IMAGE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/docs/doxygen/images)
message("Doxygen build started")
doxygen_add_docs(doxygen
COMMENT "Generating API documentation with Doxygen"
${PROJECT_SOURCE_DIR})
else (DOXYGEN_FOUND)
message("Doxygen need to be installed to generate the doxygen documentation")
endif (DOXYGEN_FOUND)
endif()
#-----------------------------------------------------------------------------
# Building Python key library and documentation if required
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_PYTHON "Build python module for running ParFlow" "FALSE")
if (PARFLOW_ENABLE_PYTHON)
find_package(Python3 3.3 QUIET REQUIRED COMPONENTS Interpreter)
set(PARFLOW_PYTHON ${Python3_EXECUTABLE})
set(PARFLOW_PYTHON_DEPENDS)
option(PARFLOW_PYTHON_VIRTUAL_ENV "Use local Python virtual environment" "FALSE")
if (PARFLOW_PYTHON_VIRTUAL_ENV)
set(PARFLOW_PYTHON "${CMAKE_CURRENT_BINARY_DIR}/py-env/bin/python3")
add_custom_command(
WORKING_DIRECTORY
"${CMAKE_CURRENT_BINARY_DIR}"
OUTPUT
"${PARFLOW_PYTHON}"
COMMAND
${Python3_EXECUTABLE} -m venv py-env
COMMAND
"${CMAKE_CURRENT_BINARY_DIR}/py-env/bin/pip3" install --upgrade pip wheel setuptools
COMMAND
"${CMAKE_CURRENT_BINARY_DIR}/py-env/bin/pip3" install -r "${CMAKE_CURRENT_SOURCE_DIR}/pftools/python/requirements_all.txt"
COMMAND
"${CMAKE_CURRENT_BINARY_DIR}/py-env/bin/pip3" install -r "${CMAKE_CURRENT_SOURCE_DIR}/docs/pf-keys/requirements.txt"
COMMAND
"${CMAKE_CURRENT_BINARY_DIR}/py-env/bin/pip3" install -r "${CMAKE_CURRENT_SOURCE_DIR}/pftools/python/requirements_dev.txt"
COMMENT
"Generate virtual environment for building Python components"
VERBATIM
)
add_custom_target(
BuildVirtualEnv
DEPENDS
"${PARFLOW_PYTHON}"
)
set(PARFLOW_PYTHON_DEPENDS BuildVirtualEnv)
endif()
add_subdirectory(pf-keys)
add_subdirectory(pftools/python)
add_subdirectory(test/python)
# Only enable Key Documentation if we enable Python
option(PARFLOW_ENABLE_KEYS_DOC "Build key documentation for ParFlow" "FALSE")
if (PARFLOW_ENABLE_KEYS_DOC)
add_subdirectory(docs/pf-keys)
endif()
endif()
#-----------------------------------------------------------------------------
# Building Docker
#-----------------------------------------------------------------------------
option(PARFLOW_ENABLE_DOCKER "Build Docker for running ParFlow" "FALSE")
if (PARFLOW_ENABLE_DOCKER)
add_subdirectory(docker)
endif()