Simplified uniform GPU selection in CMake
[alexxy/gromacs.git] / CMakeLists.txt
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2009,2010,2011,2012,2013 by the GROMACS development team.
5 # Copyright (c) 2014,2015,2016,2017,2018 by the GROMACS development team.
6 # Copyright (c) 2019,2020, by the GROMACS development team, led by
7 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 # and including many others, as listed in the AUTHORS file in the
9 # top-level source directory and at http://www.gromacs.org.
10 #
11 # GROMACS is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU Lesser General Public License
13 # as published by the Free Software Foundation; either version 2.1
14 # of the License, or (at your option) any later version.
15 #
16 # GROMACS is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 # Lesser General Public License for more details.
20 #
21 # You should have received a copy of the GNU Lesser General Public
22 # License along with GROMACS; if not, see
23 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25 #
26 # If you want to redistribute modifications to GROMACS, please
27 # consider that scientific software is very special. Version
28 # control is crucial - bugs must be traceable. We will be happy to
29 # consider code for inclusion in the official distribution, but
30 # derived work must not be called official GROMACS. Details are found
31 # in the README & COPYING files - if they are missing, get the
32 # official version at http://www.gromacs.org.
33 #
34 # To help us fund GROMACS development, we humbly ask that you cite
35 # the research papers on the package. Check out http://www.gromacs.org.
36
37 cmake_minimum_required(VERSION 3.13)
38 cmake_policy(SET CMP0074 NEW) # From CMake 3.12
39 cmake_policy(SET CMP0068 NEW) # From CMake-3.9
40
41 # CMake modules/macros are in a subdirectory to keep this file cleaner
42 # This needs to be set before project() in order to pick up toolchain files
43 list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_CURRENT_SOURCE_DIR}/cmake/Platform)
44
45 if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
46     # Providing a default value >=10.14 helps to find modern C++ compatibility,
47     # such as by defaulting to the Clang libc++ instead of libstdc++.
48     set(CMAKE_OSX_DEPLOYMENT_TARGET 10.14 CACHE STRING
49         "OS X deployment target affects default SDK version and compiler flags."
50         FORCE)
51     # By default, limit the binary architecture to a single 64-bit build.
52     set(CMAKE_OSX_ARCHITECTURES x86_64 CACHE STRING
53         "OS X architecture affects the compatibility of the (potentially fat) binaries produced."
54         FORCE)
55 endif()
56
57 project(Gromacs)
58
59 set(CMAKE_CXX_STANDARD 17)
60 set(CMAKE_CXX_STANDARD_REQUIRED ON)
61 set(CMAKE_CXX_EXTENSIONS OFF)
62
63 include(gmxManageCcache)
64
65 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
66 set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
67 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
68
69 find_package(LibStdCpp)
70
71 # Python is first referenced in gmxVersionInfo, so we perform the search early
72 # to find a suitable installation for all components.
73 include(gmxPythonDiscovery)
74 # Set up common version variables, as well as general information about
75 # the build tree (whether the build is from a source package or from a git
76 # repository).  Also declares a few functions that will be used for generating
77 # version info files later.
78 include(gmxBuildTreeInfo)
79 include(gmxVersionInfo)
80
81 if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT AND UNIX)
82     set(CMAKE_INSTALL_PREFIX "/usr/local/gromacs" CACHE STRING "Installation prefix (installation will need write permissions here)" FORCE)
83 endif()
84 if("${CMAKE_INSTALL_PREFIX}" STREQUAL "${CMAKE_BINARY_DIR}")
85     message(FATAL_ERROR "GROMACS cannot be installed into the build tree, choose a different location for CMAKE_INSTALL_PREFIX")
86 endif()
87
88 include(gmxBuildTypeReference)
89 include(gmxBuildTypeProfile)
90 include(gmxBuildTypeTSAN)
91 include(gmxBuildTypeASAN)
92 include(gmxBuildTypeMSAN)
93 include(gmxBuildTypeUBSAN)
94 include(gmxBuildTypeReleaseWithAssert)
95
96 if(NOT CMAKE_BUILD_TYPE)
97     set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel Reference RelWithAssert Profile TSAN ASAN MSAN UBSAN." FORCE)
98     # Set the possible values of build type for cmake-gui
99     set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
100         "MinSizeRel" "RelWithDebInfo" "Reference" "RelWithAssert" "Profile" "TSAN" "ASAN" "MSAN" "UBSAN")
101 endif()
102 if(CMAKE_CONFIGURATION_TYPES)
103     # Add appropriate GROMACS-specific build types for the Visual
104     # Studio generator (Debug, Release, MinSizeRel and RelWithDebInfo
105     # are already present by default).
106     list(APPEND CMAKE_CONFIGURATION_TYPES "RelWithAssert" "Reference")
107     list(REMOVE_DUPLICATES CMAKE_CONFIGURATION_TYPES)
108     set(CMAKE_CONFIGURATION_TYPES "${CMAKE_CONFIGURATION_TYPES}" CACHE STRING
109         "List of configuration types"
110         FORCE)
111 endif()
112 set(build_types_with_explicit_flags RELEASE DEBUG RELWITHDEBINFO RELWITHASSERT MINSIZEREL PROFILE)
113
114 set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS ON)
115
116 include(gmxCTestUtilities)
117 gmx_ctest_init()
118
119 include(gmxCPackUtilities)
120 gmx_cpack_init()
121
122 # Variables that accumulate stuff influencing the installed headers
123 set(INSTALLED_HEADER_INCLUDE_DIRS "")
124 set(INSTALLED_HEADER_DEFINITIONS "")
125
126 ########################################################################
127 # Global non-cache variables for implementing the build system
128 ########################################################################
129
130 # These variables collect libraries that GROMACS requires for
131 # linking. They should be appended to with list(APPEND ${name}
132 # new-library) calls. They are:
133 #  - Libraries that are required for libgromacs (only)
134 set(GMX_EXTRA_LIBRARIES "")
135 #  - Libraries that are required for all code in the repository
136 set(GMX_COMMON_LIBRARIES "")
137 #  - Libraries that all code linked against libgromacs needs
138 #    (i.e., something that is exposed in installed headers).
139 set(GMX_PUBLIC_LIBRARIES "")
140
141 ########################################################################
142 # Check and warn if cache generated on a different host is being reused
143 ########################################################################
144 if(CMAKE_HOST_UNIX)
145     execute_process(COMMAND hostname
146                     OUTPUT_VARIABLE TMP_HOSTNAME
147                     OUTPUT_STRIP_TRAILING_WHITESPACE)
148     # Only check for host name if not running in a CI environment, as the cache might
149     # be reused there between different machines in different stages
150     if(GMX_BUILD_HOSTNAME AND NOT "${GMX_BUILD_HOSTNAME}" STREQUAL "${TMP_HOSTNAME}"
151             AND NOT DEFINED ENV{CI_JOB_ID})
152         message(WARNING "
153             The CMake cache, probably generated on a different host (${GMX_BUILD_HOSTNAME}),
154             is being reused! This could lead to inconsistencies; therefore, it is
155             recommended to regenerate the cache!")
156     endif()
157     set(GMX_BUILD_HOSTNAME "${TMP_HOSTNAME}" CACHE INTERNAL
158             "Hostname of the machine where the cache was generated.")
159 endif()
160
161 ########################################################################
162 # Detect architecture before setting options so we can alter defaults
163 ########################################################################
164 # Detect the architecture the compiler is targetting, detect
165 # SIMD instructions possibilities on that hardware, suggest SIMD instruction set
166 # to use if none is specified, and populate the cache option for CPU
167 # SIMD.
168 include(gmxDetectTargetArchitecture)
169 gmx_detect_target_architecture()
170
171 ########################################################################
172 # User input options                                                   #
173 ########################################################################
174 include(gmxOptionUtilities)
175
176 set(CMAKE_PREFIX_PATH "" CACHE STRING "Extra locations to search for external libraries and tools (give directory without lib, bin, or include)")
177
178 # Fujitsu only has SIMD in double precision, so this will be faster
179 gmx_set_boolean(GMX_DOUBLE_DEFAULT GMX_TARGET_FUJITSU_SPARC64)
180 option(GMX_DOUBLE "Use double precision (much slower, use only if you really need it)" ${GMX_DOUBLE_DEFAULT})
181 option(GMX_RELAXED_DOUBLE_PRECISION "Accept single precision 1/sqrt(x) when using Fujitsu HPC-ACE SIMD" OFF)
182 mark_as_advanced(GMX_RELAXED_DOUBLE_PRECISION)
183
184 option(GMX_MPI    "Build a parallel (message-passing) version of GROMACS" OFF)
185 option(GMX_THREAD_MPI  "Build a thread-MPI-based multithreaded version of GROMACS (not compatible with MPI)" ON)
186 gmx_dependent_option(
187     GMX_MPI_IN_PLACE
188     "Enable MPI_IN_PLACE for MPIs that have it defined"
189     ON
190     GMX_MPI)
191 mark_as_advanced(GMX_MPI_IN_PLACE)
192
193 option(GMX_MIMIC "Enable MiMiC QM/MM interface (CPMD is required)" OFF)
194
195 option(GMX_FAHCORE "Build a library with mdrun functionality" OFF)
196 mark_as_advanced(GMX_FAHCORE)
197
198 option(GMX_COOL_QUOTES "Enable GROMACS cool quotes" ON)
199 mark_as_advanced(GMX_COOL_QUOTES)
200 gmx_add_cache_dependency(GMX_COOL_QUOTES BOOL "NOT GMX_FAHCORE" OFF)
201
202 option(GMX_INSTALL_LEGACY_API "Install legacy headers" OFF)
203
204 gmx_option_multichoice(
205     GMX_GPU
206     "Framework for GPU acceleration"
207     OFF
208     OFF CUDA OpenCL)
209
210 gmx_option_multichoice(
211     GMX_SIMD
212     "SIMD instruction set for CPU kernels and compiler optimization"
213     "AUTO"
214     AUTO None SSE2 SSE4.1 AVX_128_FMA AVX_256 AVX2_256 AVX2_128 AVX_512 AVX_512_KNL MIC ARM_NEON ARM_NEON_ASIMD IBM_VMX IBM_VSX Sparc64_HPC_ACE Reference)
215
216 if(GMX_TARGET_MIC)
217     set(GMX_FFT_LIBRARY_DEFAULT "mkl")
218 else()
219     set(GMX_FFT_LIBRARY_DEFAULT "fftw3")
220 endif()
221
222 gmx_option_multichoice(
223     GMX_FFT_LIBRARY
224     "FFT library"
225     "${GMX_FFT_LIBRARY_DEFAULT}"
226     fftw3 mkl "fftpack[built-in]")
227 gmx_dependent_option(
228     GMX_BUILD_OWN_FFTW
229     "Download and build FFTW 3 during the GROMACS build process, rather than fall back on the really slow fftpack."
230     OFF
231     "GMX_FFT_LIBRARY STREQUAL FFTW3")
232 gmx_dependent_option(
233     GMX_DISABLE_FFTW_MEASURE
234     "Do not optimize FFTW setups (not needed with SSE)"
235     OFF
236     "GMX_FFT_LIBRARY STREQUAL FFTW3")
237 mark_as_advanced(GMX_BUILD_OWN_FFTW)
238 mark_as_advanced(GMX_DISABLE_FFTW_MEASURE)
239
240 gmx_dependent_cache_variable(GMX_SIMD_REF_FLOAT_WIDTH  "Reference SIMD single precision width" STRING "4" "GMX_SIMD STREQUAL REFERENCE")
241 gmx_dependent_cache_variable(GMX_SIMD_REF_DOUBLE_WIDTH "Reference SIMD double precision width" STRING "2" "GMX_SIMD STREQUAL REFERENCE")
242
243 # This should be moved to a separate NBNXN cmake module when that code is cleaned up and modularized
244
245 option(GMX_BROKEN_CALLOC "Work around broken calloc()" OFF)
246 mark_as_advanced(GMX_BROKEN_CALLOC)
247
248 option(GMX_OPENMP "Enable OpenMP-based multithreading" ON)
249
250 option(GMX_USE_TNG "Use the TNG library for trajectory I/O" ON)
251
252 option(GMX_BUILD_MDRUN_ONLY "Build and install only the mdrun binary" OFF)
253
254 option(GMX_CYCLE_SUBCOUNTERS "Enable cycle subcounters to get a more detailed cycle timings" OFF)
255 mark_as_advanced(GMX_CYCLE_SUBCOUNTERS)
256
257 option(GMX_SKIP_DEFAULT_CFLAGS "Don't automatically add suggested/required Compiler flags." OFF)
258 mark_as_advanced(GMX_SKIP_DEFAULT_CFLAGS)
259
260 option(GMX_BUILD_FOR_COVERAGE
261        "Tune build for better code coverage metrics (e.g., disable asserts)"
262        OFF)
263 mark_as_advanced(GMX_BUILD_FOR_COVERAGE)
264
265 option(GMX_DEVELOPER_BUILD
266     "Enable Developer convenience features: always build unit-tests"
267     OFF)
268 mark_as_advanced(GMX_DEVELOPER_BUILD)
269
270 gmx_set_boolean(GMX_COMPILER_WARNINGS_DEFAULT "NOT SOURCE_IS_SOURCE_DISTRIBUTION")
271 option(GMX_COMPILER_WARNINGS
272     "Enable a default set of compiler warnings"
273     ${GMX_COMPILER_WARNINGS_DEFAULT})
274 mark_as_advanced(GMX_COMPILER_WARNINGS)
275 # Always turn on compiler warnings with a developer build.
276 gmx_add_cache_dependency(GMX_COMPILER_WARNINGS BOOL "NOT GMX_DEVELOPER_BUILD" ON)
277
278 option(GMX_BUILD_SHARED_EXE
279     "Build exectuables as shared binaries. If not set, this disables rpath and dynamic linker flags in an attempt to build a static binary, but this may require setting up the toolchain properly and making appropriate libraries available."
280     ON)
281 mark_as_advanced(GMX_BUILD_SHARED_EXE)
282
283 option(GMX_PHYSICAL_VALIDATION
284        "Include physical validation tests in ctest environment. These can then be called using 'make check-phys' or
285        'make check-all'. Warning: Running the physical validation tests takes significantly more time than other tests!"
286        OFF)
287 mark_as_advanced(GMX_PHYSICAL_VALIDATION)
288
289 ######################################################################
290 # Detect OpenMP support
291 ######################################################################
292 # The OpenMP detection _must_ come before tests for other CFLAGS.
293 include(gmxManageOpenMP)
294
295
296
297 ######################################################################
298 # Compiler tests
299 # These need to be done early (before further tests).
300 #####################################################################
301
302 include(gmxCFlags)
303 gmx_c_flags()
304
305 # These variables should be used for CMake-style lists (ie. separated
306 # by semicolons) of additional compiler flags which are not generated
307 # in gmxCFlags nor are SIMD or MPI related.
308 #
309 # TODO These variables should be consolidated into
310 # EXTRA_COMPILER_FLAGS so that we we don't perpetrate bugs where
311 # things that work in C compilation (e.g. merging from old branches)
312 # might not also work for C++ compilation.
313 set(EXTRA_C_FLAGS "")
314 set(EXTRA_CXX_FLAGS "")
315
316 # Run through a number of tests for buggy compilers and other issues
317 include(gmxTestCompilerProblems)
318 gmx_test_compiler_problems()
319
320 # Implement double-precision option. This is complicated because we
321 # need installed headers to use the precision mode of the build that
322 # produced the library, but cannot use config.h in that case. We also
323 # want such variables to always have a definition, because #if is more
324 # robust than #ifdef. So, we put this value on the compiler command
325 # line in all cases.
326 #
327 # GMX_RELAXED_DOUBLE_PRECISION does not need to be handled here,
328 # because no installed header needs it
329 if(GMX_DOUBLE)
330     set(GMX_DOUBLE_VALUE 1)
331 else()
332     set(GMX_DOUBLE_VALUE 0)
333 endif()
334 add_definitions(-DGMX_DOUBLE=${GMX_DOUBLE_VALUE})
335 list(APPEND INSTALLED_HEADER_DEFINITIONS "-DGMX_DOUBLE=${GMX_DOUBLE_VALUE}")
336
337 option(GMX_IMD "Enable Interactive Molecular Dynamics (IMD) sessions, e.g. with VMD" ON)
338 if(GMX_IMD AND WIN32)
339     list(APPEND GMX_EXTRA_LIBRARIES "wsock32")
340 endif()
341
342
343
344 ########################################################################
345 # Basic system tests (standard libraries, headers, functions, types)   #
346 ########################################################################
347 include(CheckIncludeFiles)
348 include(CheckIncludeFileCXX)
349 check_include_files(unistd.h     HAVE_UNISTD_H)
350 check_include_files(pwd.h        HAVE_PWD_H)
351 check_include_files(dirent.h     HAVE_DIRENT_H)
352 check_include_files(time.h       HAVE_TIME_H)
353 check_include_files(sys/time.h   HAVE_SYS_TIME_H)
354 check_include_files(io.h         HAVE_IO_H)
355 check_include_files(sched.h      HAVE_SCHED_H)
356 check_include_files(xmmintrin.h  HAVE_XMMINTRIN_H)
357
358 include(CheckCXXSymbolExists)
359 check_cxx_symbol_exists(gettimeofday      sys/time.h   HAVE_GETTIMEOFDAY)
360 check_cxx_symbol_exists(sysconf           unistd.h     HAVE_SYSCONF)
361 check_cxx_symbol_exists(nice              unistd.h     HAVE_NICE)
362 check_cxx_symbol_exists(fsync             unistd.h     HAVE_FSYNC)
363 check_cxx_symbol_exists(_fileno           stdio.h      HAVE__FILENO)
364 check_cxx_symbol_exists(fileno            stdio.h      HAVE_FILENO)
365 check_cxx_symbol_exists(_commit           io.h         HAVE__COMMIT)
366 check_cxx_symbol_exists(sigaction         signal.h     HAVE_SIGACTION)
367
368 # We cannot check for the __builtins as symbols, but check if code compiles
369 check_cxx_source_compiles("int main(){ return __builtin_clz(1);}"   HAVE_BUILTIN_CLZ)
370 check_cxx_source_compiles("int main(){ return __builtin_clzll(1);}" HAVE_BUILTIN_CLZLL)
371 if(MSVC)
372     check_cxx_source_compiles("#include <intrin.h>\n int main(){unsigned long r;unsigned long i=1;_BitScanReverse(&r,i);return r;}" HAVE_BITSCANREVERSE)
373     check_cxx_source_compiles("#include <intrin.h>\n int main(){unsigned long r;unsigned __int64 i=1;_BitScanReverse(&r,i);return r;}" HAVE_BITSCANREVERSE64)
374 elseif(CMAKE_CXX_COMPILER_ID MATCHES "XL")
375     check_cxx_source_compiles("int main(){ return __cntlz4(1);}" HAVE_CNTLZ4)
376     check_cxx_source_compiles("int main(){ return __cntlz8(1);}" HAVE_CNTLZ8)
377 endif()
378
379 include(CheckLibraryExists)
380 find_library(HAVE_LIBM m)
381 mark_as_advanced(HAVE_LIBM)
382 check_library_exists(rt clock_gettime "" HAVE_CLOCK_GETTIME)
383 check_library_exists(m feenableexcept "" HAVE_FEENABLEEXCEPT)
384 check_library_exists(m fedisableexcept "" HAVE_FEDISABLEEXCEPT)
385
386 include(TestSchedAffinity)
387 test_sched_affinity(HAVE_SCHED_AFFINITY)
388
389 # Aligned memory allocation. We need to check for both mm_malloc(),
390 # posix_memalign(), memalign(), and on windows also _aligned_malloc()
391 include(gmxTestMMMalloc)
392 gmx_test_mm_malloc(HAVE__MM_MALLOC)
393 check_cxx_symbol_exists(posix_memalign    stdlib.h     HAVE_POSIX_MEMALIGN)
394 check_cxx_symbol_exists(memalign          stdlib.h     HAVE_MEMALIGN)
395 if(MSVC)
396     # No need to waste time on this test on platforms where it will never be true
397     check_cxx_symbol_exists(_aligned_malloc   stdlib.h     HAVE__ALIGNED_MALLOC)
398 endif()
399
400 include(TestBigEndian)
401 test_big_endian(GMX_INTEGER_BIG_ENDIAN)
402
403 gmx_set_boolean(GMX_USE_NICE "HAVE_UNISTD_H AND HAVE_NICE")
404
405 # Management of GROMACS options for specific toolchains should go
406 # here. Because the initial settings for some of the main options have
407 # already happened, but things like library detection and MPI compiler
408 # feature detection have not, the docstrings for any over-rides of
409 # GROMACS defaults or user settings will make sense. Also, any
410 # toolchain-related reasons for choosing whether to detect various
411 # things can be sorted out now, before the detection takes place.
412 if(GMX_TARGET_FUJITSU_SPARC64)
413     include(gmxManageFujitsuSparc64)
414 endif()
415
416 ########################################################################
417 #Process MPI settings
418 ########################################################################
419 include(gmxManageMPI)
420
421 ########################################################################
422 #Process MiMiC settings
423 ########################################################################
424 include(gmxManageMimic)
425
426 ########################################################################
427 #Process shared/static library settings
428 ########################################################################
429 include(gmxManageSharedLibraries)
430
431
432 ########################################################################
433 # Specify install locations
434 ########################################################################
435 # Use GNUInstallDirs to set paths on multiarch systems.
436 include(GNUInstallDirs)
437
438 set(GMX_INSTALL_DATASUBDIR "gromacs" CACHE STRING "Subdirectory for GROMACS data under CMAKE_INSTALL_DATADIR")
439 mark_as_advanced(GMX_INSTALL_DATASUBDIR)
440
441 # Internal convenience so we do not have to join two path segments in the code
442 set(GMX_INSTALL_GMXDATADIR ${CMAKE_INSTALL_DATADIR}/${GMX_INSTALL_DATASUBDIR})
443
444 # If the nesting level wrt. the installation root is changed,
445 # gromacs-config.cmake.cmakein needs to be adapted.
446 set(GMX_INSTALL_CMAKEDIR  ${CMAKE_INSTALL_DATAROOTDIR}/cmake)
447
448 # TODO: Make GMXRC adapt if this is changed
449 set(GMX_INSTALL_PKGCONFIGDIR ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
450
451 list(APPEND INSTALLED_HEADER_INCLUDE_DIRS ${CMAKE_INSTALL_INCLUDEDIR})
452
453 # Binary and library suffix options
454 include(gmxManageSuffixes)
455
456
457 ########################################################################
458 # Find external packages                                               #
459 ########################################################################
460
461 # Unconditionally find the package, as it is also required for unit
462 # tests. This exports LIBXML2_FOUND, which we should not use because
463 # it does not tell us that linking will succeed. Instead, we test that
464 # next.
465 #if(DEFINED LIBXML2_LIBRARIES)
466 #  set(LibXml2_FIND_QUIETLY TRUE)
467 #endif()
468 #find_package(LibXml2)
469 #include(gmxTestLibXml2)
470 #gmx_test_libxml2(HAVE_LIBXML2)
471 #option(GMX_XML "Use libxml2 to parse xml files (currently has no effect)" ${HAVE_LIBXML2})
472 #set(PKG_XML "")
473 #mark_as_advanced(GMX_XML)
474 # Don't actually do anything, since libxml2 is currently not used by libgromacs
475 #if(GMX_XML AND NOT HAVE_LIBXML2)
476 #    message(FATAL_ERROR "libxml2 not found. Set GMX_XML=OFF to compile without XML support")
477 #endif()
478 #if(GMX_XML)
479 #    include_directories(${LIBXML2_INCLUDE_DIR})
480 #    set(PKG_XML libxml-2.0)
481 #    set(XML_LIBRARIES ${LIBXML2_LIBRARIES})
482 #endif()
483
484 option(GMX_HWLOC "Use hwloc portable hardware locality library" OFF)
485
486 if (GMX_HWLOC)
487     # Find quietly the second time.
488     if (HWLOC_FIND_QUIETLY_AFTER_FIRST_RUN)
489         set(HWLOC_FIND_QUIETLY TRUE)
490     endif()
491     find_package(HWLOC 1.5) 
492
493     if (HWLOC_FOUND)
494         if (HWLOC_LIBRARIES MATCHES ".a$")
495             set(_STATIC_HWLOC TRUE)
496         endif()
497
498         gmx_check_if_changed(HWLOC_FOUND_CHANGED HWLOC_FOUND)
499         if (_STATIC_HWLOC AND HWLOC_FOUND_CHANGED AND NOT GMX_HWLOC_FORCE)
500             message(STATUS "Static hwloc library found, will not attempt using it as it could lead to link-time errors. To use the detected library, manually set GMX_HWLOC=ON and you will likely have to pass appropriate linker flags too to satisfy the link-time dependencies of your hwloc library. Try \"pkg-config --libs --static hwloc\" for suggestions on what you will need.")
501             set(GMX_USE_HWLOC OFF)
502         else()
503             set(GMX_USE_HWLOC ON)
504         endif()
505
506         if (GMX_USE_HWLOC)
507             include_directories(SYSTEM ${HWLOC_INCLUDE_DIRS})
508             list(APPEND GMX_EXTRA_LIBRARIES ${HWLOC_LIBRARIES})
509         endif()
510     elseif(GMX_HWLOC_FORCE)
511         message(FATAL_ERROR "HWLOC package support required, but not found.")
512     endif()
513
514     set(HWLOC_FIND_QUIETLY_AFTER_FIRST_RUN TRUE CACHE INTERNAL "Be quiet during future attempts to find HWLOC")
515 endif()
516
517 option(GMX_EXTERNAL_TINYXML2 "Use external TinyXML-2 instead of compiling the version bundled with GROMACS." OFF)
518 mark_as_advanced(GMX_EXTERNAL_TINYXML2)
519 if(GMX_EXTERNAL_TINYXML2)
520     # Find an external TinyXML-2 library.
521     find_package(TinyXML-2 3.0.0)
522     set(HAVE_TINYXML2 ${TinyXML2_FOUND})
523     if(NOT HAVE_TINYXML2)
524         message(FATAL_ERROR "External TinyXML-2 could not be found, please adjust your search paths")
525     endif()
526 endif()
527
528 option(GMX_EXTRAE "Add support for tracing using EXTRAE" OFF)
529 mark_as_advanced(GMX_EXTRAE)
530
531 if (GMX_EXTRAE)
532   find_package(EXTRAE)
533   if(EXTRAE_FOUND)
534     include_directories(SYSTEM ${EXTRAE_INCLUDE_DIR})
535     set(HAVE_EXTRAE 1)
536   else()
537     message(FATAL_ERROR "EXTRAE library was not found. Please add the correct path to CMAKE_PREFIX_PATH")
538   endif()
539 endif()
540
541 option(GMX_X11 "Use X window system" OFF)
542 if (GMX_X11)
543     find_package(X11)
544     # X11 includes/libraries are only set in the ngmx subdirectory!
545     if(NOT X11_FOUND)
546         message(FATAL_ERROR
547                 "X11 include files and/or libraries were not found. "
548                 "Set GMX_X11=OFF to compile without X11 support. "
549                 "gmx view will not be available.")
550     endif()
551     include_directories(SYSTEM ${X11_INCLUDE_DIR})
552 endif()
553
554 include(ThreadMPI)
555 # Enable core threading facilities
556 tmpi_enable_core("${CMAKE_SOURCE_DIR}/src/external/thread_mpi/include")
557 if(GMX_THREAD_MPI)
558     # enable MPI functions
559     tmpi_enable()
560     set(MPI_IN_PLACE_EXISTS 1)
561 endif()
562 # If atomics are manually disabled a define is needed because atomics.h doesn't depend on config.h
563 if (TMPI_ATOMICS_DISABLED)
564    add_definitions(-DTMPI_ATOMICS_DISABLED)
565 endif()
566
567 include(gmxManageTNG)
568
569 include(gmxManageLmfit)
570
571 if(GMX_GPU)
572
573     string(TOUPPER "${GMX_GPU}" _gmx_gpu_uppercase)
574     if(${_gmx_gpu_uppercase} STREQUAL "CUDA")
575         include(gmxManageCuda)
576     elseif(${_gmx_gpu_uppercase} STREQUAL "OPENCL")
577         include(gmxManageOpenCL)
578     endif()
579     if(NOT GMX_OPENMP)
580         message(WARNING "To use GPU acceleration efficiently, mdrun requires OpenMP multi-threading, which is currently not enabled.")
581     endif()
582
583 endif()
584
585 if(CYGWIN)
586     set(GMX_CYGWIN 1)
587 endif()
588
589 if(WIN32)
590     set(GMX_NATIVE_WINDOWS 1)
591     # This makes windows.h not declare min/max as macros that would break
592     # C++ code using std::min/std::max.
593     add_definitions(-DNOMINMAX)
594 endif()
595
596 option(GMX_BUILD_UNITTESTS "Build unit tests with BUILD_TESTING" ON)
597 mark_as_advanced(GMX_BUILD_UNITTESTS)
598 gmx_add_cache_dependency(GMX_BUILD_UNITTESTS BOOL BUILD_TESTING OFF)
599
600 ########################################################################
601 # Our own GROMACS tests
602 ########################################################################
603
604 include_directories(BEFORE ${CMAKE_SOURCE_DIR}/src)
605 include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/src/external)
606 # Required for config.h, maybe should only be set in src/CMakeLists.txt
607 include_directories(BEFORE ${CMAKE_BINARY_DIR}/src)
608
609 include(gmxTestInlineASM)
610 gmx_test_inline_asm_gcc_x86(GMX_X86_GCC_INLINE_ASM)
611
612 include(gmxSetBuildInformation)
613 gmx_set_build_information()
614
615 # Anything but truly ancient x86 hardware should support rdtscp, so we enable it by default.
616 # The inline assembly calling it is only ever compiled on x86, so defaulting to ON is OK.
617 option(GMX_USE_RDTSCP "Use low-latency RDTSCP instruction for x86 CPU-based timers for mdrun execution; might need to be off when compiling for heterogeneous environments" ON)
618 mark_as_advanced(GMX_USE_RDTSCP)
619
620 include(gmxTestLargeFiles)
621 gmx_test_large_files(GMX_LARGEFILES)
622
623 include(gmxTestSignal)
624 gmx_test_sigusr1(HAVE_SIGUSR1)
625
626 include(gmxTestPipes)
627 gmx_test_pipes(HAVE_PIPES)
628
629 include(gmxTestXDR)
630 gmx_test_xdr(GMX_SYSTEM_XDR)
631 # Darwin has system XDR, but it uses a three-argument flavour of
632 # xdrproc_t that it guarantees will still work if you pass the normal
633 # two-argument xdr filters, but gcc 8 warns about the cast necessary
634 # to do that, so it's simpler to just use our own XDR library.
635 #
636 # TODO It would be better to craft a cmake test which fails if such
637 # XDR operations cause warnings, and succeeds otherwise, because it is
638 # generally preferable to use system libraries where possible.
639 if(NOT GMX_SYSTEM_XDR OR CMAKE_SYSTEM_NAME STREQUAL "Darwin")
640     set(GMX_INTERNAL_XDR 1)
641 endif()
642
643
644 ##################################################
645 # Process SIMD instruction settings
646 ##################################################
647 # This checks what flags to add in order to
648 # support the SIMD instructions we need, it sets
649 # correct defines for the SIMD instructions supported,
650 # and adds advanced options to control accuracy
651 # for SIMD math operations.
652 include(gmxManageSimd)
653 gmx_manage_simd()
654
655 ##################################################
656 # Process FFT library settings
657 ##################################################
658 include(gmxManageFFTLibraries)
659
660
661 include(gmxManageLinearAlgebraLibraries)
662
663 include(gmxManagePluginSupport)
664 gmx_manage_plugin_support()
665
666 if(GMX_USE_PLUGINS)
667     if(NOT GMX_VMD_PLUGIN_PATH)
668         find_package(VMD)
669     endif()
670 endif()
671
672 # Link real-time library for POSIX timers. The check for clock_gettime
673 # confirms the linkability of rt.
674 if(HAVE_TIME_H AND HAVE_UNISTD_H AND HAVE_CLOCK_GETTIME)
675     list(APPEND GMX_EXTRA_LIBRARIES rt)
676 endif()
677
678 # Math and thread libraries must often come after all others when linking...
679 if (HAVE_LIBM)
680     list(APPEND GMX_PUBLIC_LIBRARIES m)
681 endif()
682
683 option(GMX_NACL "Configure for Native Client builds" OFF)
684 if (GMX_NACL)
685   list(APPEND GMX_EXTRA_LIBRARIES nosys)
686   set(GMX_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lnosys")
687   # TODO: Is this still necessary with the check for its presence?
688   set(GMX_USE_NICE 0)
689   set(GMX_NO_RENAME 1)
690 endif()
691 mark_as_advanced(GMX_NACL)
692
693 if(GMX_FAHCORE)
694   set(COREWRAP_INCLUDE_DIR "${CMAKE_SOURCE_DIR}/../corewrap" CACHE STRING
695       "Path to swindirect.h")
696   include_directories(${COREWRAP_INCLUDE_DIR})
697 endif()
698
699 option(GMX_BUILD_HELP "Build completions (requires that compiled binaries can be executed on build host) and install man pages if built (requires building the 'man' target manually)" OFF)
700 mark_as_advanced(GMX_BUILD_HELP)
701 if (GMX_BUILD_HELP AND SOURCE_IS_SOURCE_DISTRIBUTION AND BUILD_IS_INSOURCE)
702     message(FATAL_ERROR
703         "Rebuilding shell completions or man pages is not supported for "
704         "in-source builds from a source distribution. "
705         "Set GMX_BUILD_HELP=OFF or do an out-of-source build to proceed.")
706 endif()
707
708 # # # # # # # # # # NO MORE TESTS AFTER THIS LINE! # # # # # # # # # # #
709 # these are set after everything else
710 if (NOT GMX_SKIP_DEFAULT_CFLAGS)
711     set(CMAKE_EXE_LINKER_FLAGS "${FFT_LINKER_FLAGS} ${MPI_LINKER_FLAGS} ${CMAKE_EXE_LINKER_FLAGS}")
712     set(CMAKE_SHARED_LINKER_FLAGS "${FFT_LINKER_FLAGS} ${MPI_LINKER_FLAGS} ${CMAKE_SHARED_LINKER_FLAGS}")
713 else()
714     message("Recommended flags which are not added because GMX_SKIP_DEFAULT_CFLAGS=yes:")
715     message("CMAKE_C_FLAGS: ${SIMD_C_FLAGS};${MPI_COMPILE_FLAGS};${EXTRA_C_FLAGS};${GMXC_CFLAGS}")
716     foreach(build_type ${build_types_with_explicit_flags})
717         message("CMAKE_C_FLAGS_${build_type}: ${GMXC_CFLAGS_${build_type}}")
718     endforeach()
719     message("CMAKE_CXX_FLAGS: ${SIMD_CXX_FLAGS};${MPI_COMPILE_FLAGS};${EXTRA_CXX_FLAGS};${GMXC_CXXFLAGS}")
720     foreach(build_type ${build_types_with_explicit_flags})
721         message("CMAKE_CXX_FLAGS_${build_type}: ${GMXC_CXXFLAGS_${build_type}}")
722     endforeach()
723     message("CMAKE_EXE_LINKER_FLAGS: ${FFT_LINKER_FLAGS} ${MPI_LINKER_FLAGS}")
724     message("CMAKE_SHARED_LINKER_FLAGS: ${FFT_LINKER_FLAGS} ${MPI_LINKER_FLAGS}")
725 endif()
726 # Allow `admin` directory to be easily conveyed to nested CMake commands.
727 set(GMX_ADMIN_DIR ${CMAKE_SOURCE_DIR}/admin)
728
729 ################################################################
730 # Shared library load path settings
731 ################################################################
732 if(NOT GMX_BUILD_SHARED_EXE)
733     # No rpath
734     set(CMAKE_SKIP_RPATH TRUE)
735     set(CMAKE_EXE_LINK_DYNAMIC_C_FLAGS) # remove -Wl,-Bdynamic
736     set(CMAKE_EXE_LINK_DYNAMIC_CXX_FLAGS)
737 else()
738     # The build folder always has bin/ and lib/; if we are also going to
739     # install to lib/, then the installation RPATH works also in the build
740     # tree.  This makes installation slightly faster (no need to rewrite the
741     # RPATHs), and makes the binaries in the build tree relocatable.
742     if(CMAKE_INSTALL_LIBDIR STREQUAL "lib")
743         set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
744         set(CMAKE_BUILD_WITH_INSTALL_NAME_DIR TRUE)
745     endif()
746     # Set the RPATH as relative to the executable location to make the
747     # binaries relocatable.
748     if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") #Assume OS X >=10.5
749         set(CMAKE_INSTALL_RPATH "@loader_path/../${CMAKE_INSTALL_LIBDIR}")
750         set(CMAKE_INSTALL_NAME_DIR ${CMAKE_INSTALL_RPATH})
751     else()
752         set(CMAKE_INSTALL_RPATH "\$ORIGIN/../${CMAKE_INSTALL_LIBDIR}")
753     endif()
754     set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
755     set(CMAKE_MACOSX_RPATH 1)
756 endif()
757
758 #COPYING file: Only necessary for binary distributions.
759 #Simpler to always install.
760 install(FILES COPYING DESTINATION ${GMX_INSTALL_GMXDATADIR} COMPONENT data)
761
762 if (GMX_BUILD_FOR_COVERAGE)
763     # Code heavy with asserts makes conditional coverage close to useless metric,
764     # as by design most of the false branches are impossible to trigger in
765     # correctly functioning code.  And the benefit of testing those that could
766     # be triggered by using an API against its specification isn't usually
767     # worth the effort.
768     add_definitions(-DNDEBUG -DGMX_DISABLE_ASSERTS)
769 endif()
770
771 if (BUILD_TESTING)
772     include(tests/CheckTarget.cmake)
773 endif()
774
775 # TODO: Determine control flow and defaults for package installation and testing use cases.
776 # Ref: https://gitlab.com/gromacs/gromacs/-/issues/2896
777 option(GMX_PYTHON_PACKAGE "Configure gmxapi Python package" OFF)
778 mark_as_advanced(GMX_PYTHON_PACKAGE)
779
780 if (NOT GMX_BUILD_MDRUN_ONLY)
781     find_package(ImageMagick QUIET COMPONENTS convert)
782     include(gmxTestImageMagick)
783     GMX_TEST_IMAGEMAGICK(IMAGE_CONVERT_POSSIBLE)
784     # TODO: Resolve circular dependency between docs, gromacs, and python_packaging
785     add_subdirectory(docs)
786     add_subdirectory(share)
787     add_subdirectory(scripts)
788 endif()
789 add_subdirectory(api)
790 add_subdirectory(src)
791
792 if (BUILD_TESTING)
793     add_subdirectory(tests)
794 endif()
795
796 if(GMX_PYTHON_PACKAGE AND NOT GMX_BUILD_MDRUN_ONLY)
797     add_subdirectory(python_packaging)
798 endif()
799
800 gmx_cpack_write_config()
801
802 #######################
803 ## uninstall target
804 #######################
805 CONFIGURE_FILE(   "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
806                   "${CMAKE_CURRENT_BINARY_DIR}/cmake/cmake_uninstall.cmake"
807                   IMMEDIATE @ONLY)
808 ###########################
809 ADD_CUSTOM_TARGET(uninstall
810                   "${CMAKE_COMMAND}" -P
811                   "${CMAKE_CURRENT_BINARY_DIR}/cmake/cmake_uninstall.cmake")
812 ###########################
813 set_directory_properties(PROPERTIES
814             ADDITIONAL_MAKE_CLEAN_FILES "install_manifest.txt")