|
| 1 | +# - Find clBLAS, AMD's OpenCL BLAS library |
| 2 | + |
| 3 | +# This script defines the standard variables |
| 4 | +# CLBLAS_FOUND - Whether or not clBLAS was located |
| 5 | +# CLBLAS_INCLUDE_DIRS - All include directories for clBLAS headers |
| 6 | +# CLBLAS_LIBRARIES - All libraries for clBLAS |
| 7 | +# |
| 8 | +# This script also creates a few non-standard variables that may be useful |
| 9 | +# in your project: |
| 10 | +# |
| 11 | +# CLBLAS_SOURCE_DIR - The location of the clBLAS src directory, if found. |
| 12 | +# CLBLAS_PACKAGE_DIR - The location of the clBLAS package directory, if found. |
| 13 | +# |
| 14 | +# If your clBLAS installation is not in a standard installation directory, you |
| 15 | +# may provide a hint to where it may be found. Simply set the value CLBLAS_ROOT |
| 16 | +# to the directory containing 'include/clBLAS.h" prior to calling this script. |
| 17 | +# |
| 18 | +#============================================================================= |
| 19 | +# Copyright 2014 Brian Kloppenborg |
| 20 | +# |
| 21 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 22 | +# you may not use this file except in compliance with the License. |
| 23 | +# You may obtain a copy of the License at |
| 24 | +# |
| 25 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 26 | +# |
| 27 | +# Unless required by applicable law or agreed to in writing, software |
| 28 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 29 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 30 | +# See the License for the specific language governing permissions and |
| 31 | +# limitations under the License. |
| 32 | +#============================================================================= |
| 33 | + |
| 34 | +# Find packages on which clBLAS depends |
| 35 | +find_package(OpenCL REQUIRED) |
| 36 | + |
| 37 | +# Set the CLBLAS_ROOT_DIR relative to the current directory. |
| 38 | +IF(NOT DEFINED ${CLBLAS_ROOT_DIR}) |
| 39 | + LIST(APPEND CLBLAS_ROOT_DIR ${CMAKE_SOURCE_DIR}/.. ${CMAKE_SOURCE_DIR}/../..) |
| 40 | +ENDIF() |
| 41 | + |
| 42 | +FIND_PATH(CLBLAS_SOURCE_DIR |
| 43 | + NAMES src/clBlas.h src/clAmdBlas.h |
| 44 | + PATH_SUFFIXES clblas clBLAS clBlas CLBLAS |
| 45 | + DOC "Location of the clBLAS source directory" |
| 46 | + HINTS ${CLBLAS_ROOT_DIR} |
| 47 | + NO_DEFAULT_PATH) |
| 48 | + |
| 49 | +FIND_PATH(CLBLAS_PACKAGE_DIR |
| 50 | + NAMES bin include lib64 |
| 51 | + PATH_SUFFIXES build/package |
| 52 | + DOC "Location of the clBLAS install/package directory." |
| 53 | + HINTS ${CLBLAS_SOURCE_DIR} |
| 54 | + NO_DEFAULT_PATH) |
| 55 | + |
| 56 | +FIND_PATH(_CLBLAS_INCLUDE_DIR |
| 57 | + NAMES clBLAS.h |
| 58 | + DOC "Location of the clBLAS include directory." |
| 59 | + PATH_SUFFIXES include package/include |
| 60 | + HINTS /usr/local |
| 61 | + ${CLBLAS_PACKAGE_DIR}) |
| 62 | + |
| 63 | +FIND_PATH(CLBLAS_LIBRARY_DIR |
| 64 | + NAMES libclBLAS${CMAKE_SHARED_LIBRARY_SUFFIX} |
| 65 | + DOC "Location of the clBLAS library" |
| 66 | + PATH_SUFFIXES lib64 package/lib64 lib64/import package/lib64/import |
| 67 | + HINTS ${CLBLAS_PACKAGE_DIR}) |
| 68 | + |
| 69 | +FIND_LIBRARY(_CLBLAS_LIBRARY |
| 70 | + NAMES clBLAS |
| 71 | + DOC "Library files" |
| 72 | + PATH_SUFFIXES lib lib64 package/lib64 lib64/import package/lib64/import |
| 73 | + HINTS /usr/local |
| 74 | + ${CLBLAS_PACKAGE_DIR}) |
| 75 | + |
| 76 | +# Set up the includes and library directories |
| 77 | +SET(CLBLAS_LIBRARY ${_CLBLAS_LIBRARY}) |
| 78 | +SET(CLBLAS_INCLUDE_DIRS ${_CLBLAS_INCLUDE_DIR} ${OPENCL_CL_INCLUDE_DIRS}) |
| 79 | +SET(CLBLAS_LIBRARIES ${_CLBLAS_LIBRARY} ${OPENCL_LIBRARIES}) |
| 80 | +SET(CLBLAS_SOURCE_DIR ${CLBLAS_SOURCE_DIR} |
| 81 | + CACHE PATH "Path for clBLAS source, if found") |
| 82 | +SET(CLBLAS_PACKAGE_DIR ${CLBLAS_PACKAGE_DIR} |
| 83 | + CACHE PATH "Path for clBLAS's packaging directory, if found") |
| 84 | +SET(CLBLAS_LIBRARY_DIR ${CLBLAS_LIBRARY_DIR} |
| 85 | + CACHE PATH "Path for clBLAS's packaging library directory, if found") |
| 86 | + |
| 87 | +# handle the QUIETLY and REQUIRED arguments and set CLBLAS_FOUND to TRUE if |
| 88 | +# all listed variables are TRUE |
| 89 | +INCLUDE (FindPackageHandleStandardArgs) |
| 90 | +FIND_PACKAGE_HANDLE_STANDARD_ARGS(CLBLAS DEFAULT_MSG CLBLAS_LIBRARY |
| 91 | + CLBLAS_INCLUDE_DIRS CLBLAS_LIBRARIES) |
| 92 | +MARK_AS_ADVANCED(CLBLAS_FOUND CLBLAS_PACKAGE_DIR CLBLAS_INCLUDE_DIRS |
| 93 | + CLBLAS_LIBRARY_DIR CLBLAS_LIBRARIES) |
0 commit comments