Prevent AMD OpenCL on OS X prior to 10.10.4
[gromacs.git] / cmake / gmxManageOpenCL.cmake
blob5976b1600485668d6b19ff9c65b12b3ee066586c
2 # This file is part of the GROMACS molecular simulation package.
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.
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 # 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)
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()
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()
60 # Yes Virginia, Darwin kernel version 14.4 corresponds to OS X 10.4.
61 if(APPLE AND ${CMAKE_SYSTEM_VERSION} VERSION_LESS "14.4")
62         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.");
63 endif()
65 add_definitions(${OPENCL_DEFINITIONS})
67 include_directories(${OPENCL_INCLUDE_DIRS})
69 macro(gmx_gpu_setup)
70     # no OpenMP is no good!
71     if(NOT GMX_OPENMP)
72         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.")
73     endif()
74 endmacro()