Prefer linking to system clFFT rather than bundled one
[gromacs.git] / cmake / gmxManageOpenCL.cmake
blob67f08a05911c0126fe9af434ed2115c033561352
2 # This file is part of the GROMACS molecular simulation package.
4 # Copyright (c) 2012,2013,2014,2015,2018, 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.
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.
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.
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.
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.
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.
35 if(GMX_DOUBLE)
36     message(FATAL_ERROR "OpenCL not available in double precision - Yet!")
37 endif()
39 # for some reason FindOpenCL checks CUDA_PATH but not CUDA_HOME
40 set(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH};$ENV{CUDA_HOME})
41 find_package(OpenCL)
43 if (OpenCL_FOUND)
44     if (OpenCL_VERSION_STRING VERSION_LESS REQUIRED_OPENCL_MIN_VERSION)
45         message(FATAL_ERROR "OpenCL " "${OpenCL_VERSION_STRING}" " is not supported. OpenCL version " "${REQUIRED_OPENCL_MIN_VERSION}" " or newer is required.")
46         return ()
47     endif()
48 else ()
49     message(FATAL_ERROR "OpenCL not found.")
50     return()
51 endif()
53 # Tell compiler to hide warnings for comments caused by cl_gl_ext.h on Linux
54 if (UNIX)
55     set(OpenCL_DEFINITIONS ${OpenCL_DEFINITIONS} " -Wno-comment")
56 endif()
58 # Yes Virginia, Darwin kernel version 14.4 corresponds to OS X 10.4.
59 if(APPLE AND ${CMAKE_SYSTEM_VERSION} VERSION_LESS "14.4")
60         message(WARNING "OS X prior to version 10.10.4 produces incorrect AMD OpenCL code at runtime. You will not be able to use AMD GPUs on this host unless you upgrade your operating system.")
61 endif()
63 add_definitions(${OpenCL_DEFINITIONS})
65 include_directories(SYSTEM ${OpenCL_INCLUDE_DIRS})
67 set(GMX_OCL_NB_CLUSTER_SIZE 8 CACHE STRING "Cluster size used by nonbonded OpenCL kernel. Set to 4 for Intel GPUs.")
68 mark_as_advanced(GMX_OCL_NB_CLUSTER_SIZE)
70 macro(gmx_gpu_setup)
71     # no OpenMP is no good!
72     if(NOT GMX_OPENMP)
73         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.")
74     endif()
75 endmacro()