Converted gmxpreprocess to compile as C++
[alexxy/gromacs.git] / cmake / gmxManageOpenCL.cmake
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2012,2013,2014,2015, by the GROMACS development team, led by
5 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 # and including many others, as listed in the AUTHORS file in the
7 # top-level source directory and at http://www.gromacs.org.
8 #
9 # GROMACS is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public License
11 # as published by the Free Software Foundation; either version 2.1
12 # of the License, or (at your option) any later version.
13 #
14 # GROMACS is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # Lesser General Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with GROMACS; if not, see
21 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23 #
24 # If you want to redistribute modifications to GROMACS, please
25 # consider that scientific software is very special. Version
26 # control is crucial - bugs must be traceable. We will be happy to
27 # consider code for inclusion in the official distribution, but
28 # derived work must not be called official GROMACS. Details are found
29 # in the README & COPYING files - if they are missing, get the
30 # official version at http://www.gromacs.org.
31 #
32 # To help us fund GROMACS development, we humbly ask that you cite
33 # the research papers on the package. Check out http://www.gromacs.org.
34
35 if(GMX_DOUBLE)
36     message(FATAL_ERROR "OpenCL not available in double precision - Yet!")
37 endif()
38
39 # Look for OpenCL
40 # TODO: FindOpenCL module is available in cmake starting with version 3.1.0.
41 # A modified version of that module is used here.
42 # Remove FindOpenCL.cmake file when GROMACS switches to cmake 3.1.0 or higher.
43 find_package(OpenCL)
44
45 if (OPENCL_FOUND)
46     if (OPENCL_VERSION_STRING VERSION_LESS REQUIRED_OPENCL_MIN_VERSION)
47         message(FATAL_ERROR "OpenCL " "${OPENCL_VERSION_STRING}" " is not supported. OpenCL version " "${REQUIRED_OPENCL_MIN_VERSION}" " or newer is required.")
48         return ()
49     endif()
50 else ()
51     message(FATAL_ERROR "OpenCL not found.")
52     return()
53 endif()
54
55 # Tell compiler to hide warnings for comments caused by cl_gl_ext.h on Linux
56 if (UNIX)
57     set(OPENCL_DEFINITIONS ${OPENCL_DEFINITIONS} " -Wno-comment")
58 endif()
59
60 add_definitions(${OPENCL_DEFINITIONS})
61
62 include_directories(${OPENCL_INCLUDE_DIRS})
63
64 macro(gmx_gpu_setup)
65     # no OpenMP is no good!
66     if(NOT GMX_OPENMP)
67         message(WARNING "To use GPU acceleration efficiently, mdrun requires OpenMP multi-threading. Without OpenMP a single CPU core can be used with a GPU which is not optimal. Note that with MPI multiple processes can be forced to use a single GPU, but this is typically inefficient. You need to set both C and C++ compilers that support OpenMP (CC and CXX environment variables, respectively) when using GPUs.")
68     endif()
69 endmacro()