You can skip this section if you are familar with CMake.
Suppose the current working directory is /home/tinker9 and we want to create a build directory called build-cmake in /home/tinker9. We can do mkdir build-cmake then cd build-cmake. Because the top-level CMakeLists.txt file is in the parent directory, if there was nothing else to configure, command cmake .. would generate the Makefile. The alternative way is to specify the build and source directories to CMake, e.g.,
cmake -B /home/tinker9/build-cmake -S /home/tinker9
Some CMake installations also provide a command line gui ccmake and a simple gui program cmake-gui that can replace cmake in the commands above.
Set CXX=..., CUDACXX=..., and FC=... to specify the non-default C++, CUDA, and Fortran compilers, respectively. These environmental variables are supported by cmake.
This cmake script checks a custom environmental variable ACC=... only for the GPU code. If not set, the building script will take a guess at the OpenACC compiler. It will be set to the default C++ compiler for the CPU code. For instance, command (c)cmake [...] will become ACC=pgc++ (c)cmake [...].
The following options are passed to CMake program with their default values (if there is one). -D is prefixed to the options. CMake provides two standard ways to let users customize the values:
- Change their values interactively in the ccmake command line gui;
- Pass the new value to CMake via command line arguments cmake -DOPTION=NewValue.
In addition to these two canonical methods, default value can also be set by its corresponding environmental variable, documented as (env) here. Note that there is no -D prefix for the environmental variables.
Here are two equivalent examples to have Tinker9 configured as follows
Item | Value |
---|---|
opt | release |
host | 0 |
prec | m |
cuda_dir | /usr/local/cuda |
compute_capability | 75 |
CMakeLists.txt Location | /home/tinker9 |
# use environmental variables
opt=release host=0 prec=m \
cuda_dir=/usr/local/cuda compute_capability=75 \
cmake /home/tinker9
# use cmake -DOPTIONS
cmake /home/tinker9 \
-DCMAKE_BUILD_TYPE=Release -DHOST=0 -DPREC=m \
-DCUDA_DIR=/usr/local/cuda -DCOMPUTE_CAPABILITY=75
-DCMAKE_BUILD_TYPE (opt) = Release
Standard CMAKE_BUILD_TYPE option. Build type is case insensitive and can be Debug, Release, RelWithDebInfo (release with debug info), and MinSizeRel (minimum size release).
-DCMAKE_INSTALL_PREFIX (install) = [NO DEFAULT VALUE]
Install the executables under ${CMAKE_INSTALL_PREFIX}. If this option is not set, make install is configured not to install anything, which is different from the default cmake behavior to install the program under /usr/local.
-DSTD (std) = 11
C++ syntax standard. The source code is c++11-compliant, and should have no problems compiled with c++14. If set to 14 here, users should make sure the compilers are c++14-compliant.
-DPREC (prec) = mixed
Precision of the floating-point numbers. With flag double/d, all of the floating-point numbers are treated as real*8/double values, or real*4/single values if with flag single/s. Mixed precision flag mixed/m will use real*4 or real*8 numbers in different places. Note that this flag will not change the precision of the variables hard-coded as float or double types.
-DDETERMINISTIC_FORCE (deterministic_force) = AUTO
Flag to use deterministic force. This feature will be implicitly enabled by mixed and single precisions, but can be explicitly disabled by setting the flag to OFF (or 0), and can be explicitly enabled by value ON (or 1).
In general, evaluating energy, forces etc. twice, we don't expect to get two identical answers, but we may not care as much because the difference is usually negligible. (See Why is cos(x) != cos(y)?) Whereas in MD, two simulations with the same initial configurations can easily diverge due to the accumulated difference. If, for whatever reason, you are willing to elongate the process of the inevitable divergence at the cost of slightly slower simulation speed, a more "deterministic" force (using fixed-point arithmetic) can help.
-DHOST (host) = OFF
Flag to compile to GPU (with value 0 or OFF) or CPU (with value 1 or ON) version.
-DCOMPUTE_CAPABILITY (compute_capability) = 60,70
GPU code only.
CUDA compute capability (multiplied by 10) of GPU. Valid values (noninclusive) are 35, 50, 60, 70, 75 etc., and can be comma-separated, e.g. 35,60. Multiple compute capabilites will increase the size of executables.
The full list of compute capabilities can be found on the NVIDIA website.
-DCUDA_DIR (cuda_dir) = /usr/local/cuda
GPU code only.
Top-level CUDA installation directory, under which directories include, lib or lib64 can be found. This option will supersede the CUDA installation identified by the official CUDACXX environmental variable.
Sometimes the PGI compiler and the NVCC compiler are not "compatible." For instance, although PGI 19.4 supports CUDA 9.2, 10.0, 10.1, but the default CUDA version configured in PGI 19.4 may be 9.2 and the external NVCC version is 10.1. One solution is to pass CUDA_HOME=${cuda_dir} to the PGI compiler, in which case, cuda_dir should be set to /usr/local/cuda-10.1.
-DFFTW_DIR (fftw_dir) = ${CMAKE_BINARY_DIR}/fftw
CPU code only.
Top-level FFTW3 installation, under which include/fftw3.h and lib/libfftw3 static libraries are expected to be found.
The following Makefile targets will be generated by CMake. Run make -j for the default target(s) and make TARGET(S) -j for others.
tinker9
Compile and link the tinker9 executable.
all.tests
Compile and link the all.tests executable.
default
Make two targets: tinker9 and all.tests executables.
all
Same as the default target.
test
Run unit tests in a random order. Exit on the first error.
man
Generate user manual.
doc
Generate developer guides.