fixed: search of acml libraries
This commit is contained in:
parent
975ef3ef1a
commit
66a4bd0cfb
|
@ -57,7 +57,7 @@ else()
|
||||||
endif(BLAS_FIND_REQUIRED)
|
endif(BLAS_FIND_REQUIRED)
|
||||||
endif( )
|
endif( )
|
||||||
|
|
||||||
macro(Check_Fortran_Libraries LIBRARIES _prefix _name _flags _list _threads)
|
macro(Check_Fortran_Libraries LIBRARIES _prefix _name _flags _list _optional)
|
||||||
# This macro checks for the existence of the combination of fortran libraries
|
# This macro checks for the existence of the combination of fortran libraries
|
||||||
# given by _list. If the combination is found, this macro checks (using the
|
# given by _list. If the combination is found, this macro checks (using the
|
||||||
# Check_Fortran_Function_Exists macro) whether can link against that library
|
# Check_Fortran_Function_Exists macro) whether can link against that library
|
||||||
|
@ -69,41 +69,39 @@ macro(Check_Fortran_Libraries LIBRARIES _prefix _name _flags _list _threads)
|
||||||
# N.B. _prefix is the prefix applied to the names of all cached variables that
|
# N.B. _prefix is the prefix applied to the names of all cached variables that
|
||||||
# are generated internally and marked advanced by this macro.
|
# are generated internally and marked advanced by this macro.
|
||||||
|
|
||||||
|
list(GET _optional 0 _thread)
|
||||||
|
list(GET _optional 1 _libdir)
|
||||||
|
|
||||||
set(_libraries_work TRUE)
|
set(_libraries_work TRUE)
|
||||||
set(${LIBRARIES})
|
set(${LIBRARIES})
|
||||||
set(_combined_name)
|
set(_combined_name)
|
||||||
|
if (NOT _libdir)
|
||||||
|
if (WIN32)
|
||||||
|
set(_libdir ENV LIB)
|
||||||
|
elseif (APPLE)
|
||||||
|
set(_libdir /usr/local/lib /usr/lib /usr/local/lib64 /usr/lib64 ENV DYLD_LIBRARY_PATH)
|
||||||
|
else ()
|
||||||
|
set(_libdir /usr/local/lib /usr/lib /usr/local/lib64 /usr/lib64 ENV LD_LIBRARY_PATH)
|
||||||
|
endif ()
|
||||||
|
endif ()
|
||||||
foreach(_library ${_list})
|
foreach(_library ${_list})
|
||||||
set(_combined_name ${_combined_name}_${_library})
|
set(_combined_name ${_combined_name}_${_library})
|
||||||
|
|
||||||
if(_libraries_work)
|
if(_libraries_work)
|
||||||
|
if (BLA_STATIC)
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
if(BLA_STATIC)
|
|
||||||
set(CMAKE_FIND_LIBRARY_SUFFIXES ".lib;.dll")
|
set(CMAKE_FIND_LIBRARY_SUFFIXES ".lib;.dll")
|
||||||
endif(BLA_STATIC)
|
|
||||||
find_library(${_prefix}_${_library}_LIBRARY
|
|
||||||
NAMES ${_library}
|
|
||||||
PATHS ENV LIB
|
|
||||||
)
|
|
||||||
endif ( WIN32 )
|
endif ( WIN32 )
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
if(BLA_STATIC)
|
|
||||||
set(CMAKE_FIND_LIBRARY_SUFFIXES ".lib;.dll")
|
set(CMAKE_FIND_LIBRARY_SUFFIXES ".lib;.dll")
|
||||||
endif(BLA_STATIC)
|
|
||||||
find_library(${_prefix}_${_library}_LIBRARY
|
|
||||||
NAMES ${_library}
|
|
||||||
PATHS /usr/local/lib /usr/lib /usr/local/lib64 /usr/lib64 ENV DYLD_LIBRARY_PATH
|
|
||||||
)
|
|
||||||
|
|
||||||
else (APPLE)
|
else (APPLE)
|
||||||
if(BLA_STATIC)
|
|
||||||
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a;.so")
|
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a;.so")
|
||||||
|
endif (APPLE)
|
||||||
endif (BLA_STATIC)
|
endif (BLA_STATIC)
|
||||||
find_library(${_prefix}_${_library}_LIBRARY
|
find_library(${_prefix}_${_library}_LIBRARY
|
||||||
NAMES ${_library}
|
NAMES ${_library}
|
||||||
PATHS /usr/local/lib /usr/lib /usr/local/lib64 /usr/lib64 ENV LD_LIBRARY_PATH
|
PATHS ${_libdir}
|
||||||
)
|
)
|
||||||
endif( APPLE )
|
|
||||||
mark_as_advanced(${_prefix}_${_library}_LIBRARY)
|
mark_as_advanced(${_prefix}_${_library}_LIBRARY)
|
||||||
set(${LIBRARIES} ${${LIBRARIES}} ${${_prefix}_${_library}_LIBRARY})
|
set(${LIBRARIES} ${${LIBRARIES}} ${${_prefix}_${_library}_LIBRARY})
|
||||||
set(_libraries_work ${${_prefix}_${_library}_LIBRARY})
|
set(_libraries_work ${${_prefix}_${_library}_LIBRARY})
|
||||||
|
@ -311,15 +309,25 @@ if (BLA_VENDOR STREQUAL "ACML" OR BLA_VENDOR STREQUAL "ACML_MP" OR BLA_VENDOR ST
|
||||||
|
|
||||||
if( _BLAS_VENDOR STREQUAL "ACML_MP" )
|
if( _BLAS_VENDOR STREQUAL "ACML_MP" )
|
||||||
foreach( BLAS_ACML_MP_LIB_DIRS ${_ACML_MP_LIB_DIRS} )
|
foreach( BLAS_ACML_MP_LIB_DIRS ${_ACML_MP_LIB_DIRS} )
|
||||||
_BLAS_LOCATE_AND_TEST( ${_BLAS_VENDOR} "acml_mp;acml_mv" "" )
|
check_fortran_libraries (
|
||||||
if( BLAS_${_BLAS_VENDOR}_FOUND )
|
BLAS_LIBRARIES
|
||||||
|
BLAS
|
||||||
|
sgemm
|
||||||
|
"" "acml_mp;acml_mv" "" ${BLAS_ACML_MP_LIB_DIRS}
|
||||||
|
)
|
||||||
|
if( BLAS_LIBRARIES )
|
||||||
break()
|
break()
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
else() #if( _BLAS_VENDOR STREQUAL "ACML" )
|
else() #if( _BLAS_VENDOR STREQUAL "ACML" )
|
||||||
foreach( BLAS_ACML_LIB_DIRS ${_ACML_LIB_DIRS} )
|
foreach( BLAS_ACML_LIB_DIRS ${_ACML_LIB_DIRS} )
|
||||||
_BLAS_LOCATE_AND_TEST( ${_BLAS_VENDOR} "acml;acml_mv" "" )
|
check_fortran_libraries (
|
||||||
if( BLAS_${_BLAS_VENDOR}_FOUND )
|
BLAS_LIBRARIES
|
||||||
|
BLAS
|
||||||
|
sgemm
|
||||||
|
"" "acml_mp;acml_mv" "" ${BLAS_ACML_LIB_DIRS}
|
||||||
|
)
|
||||||
|
if( BLAS_LIBRARIES )
|
||||||
break()
|
break()
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
|
@ -148,31 +148,13 @@ if(BLAS_FOUND)
|
||||||
set(BLA_VENDOR "All")
|
set(BLA_VENDOR "All")
|
||||||
endif(NOT BLA_VENDOR)
|
endif(NOT BLA_VENDOR)
|
||||||
endif ($ENV{BLA_VENDOR} MATCHES ".+")
|
endif ($ENV{BLA_VENDOR} MATCHES ".+")
|
||||||
|
|
||||||
#acml lapack
|
#acml lapack
|
||||||
if (BLA_VENDOR STREQUAL "ACML" OR BLA_VENDOR STREQUAL "All")
|
if (BLA_VENDOR STREQUAL "ACML" OR BLA_VENDOR STREQUAL "ACML_MP" OR BLA_VENDOR STREQUAL "All")
|
||||||
if(NOT LAPACK_LIBRARIES)
|
if (BLAS_LIBRARIES MATCHES ".+acml.+")
|
||||||
check_lapack_libraries(
|
set (LAPACK_LIBRARIES ${BLAS_LIBRARIES})
|
||||||
LAPACK_LIBRARIES
|
endif ()
|
||||||
LAPACK
|
endif (BLA_VENDOR STREQUAL "ACML" OR BLA_VENDOR STREQUAL "ACML_MP" OR BLA_VENDOR STREQUAL "All")
|
||||||
cheev
|
|
||||||
""
|
|
||||||
"acml;acml_mv"
|
|
||||||
""
|
|
||||||
""
|
|
||||||
)
|
|
||||||
endif(NOT LAPACK_LIBRARIES)
|
|
||||||
if(NOT LAPACK_LIBRARIES)
|
|
||||||
check_lapack_libraries(
|
|
||||||
LAPACK_LIBRARIES
|
|
||||||
LAPACK
|
|
||||||
cheev
|
|
||||||
""
|
|
||||||
"acml_mp;acml_mv"
|
|
||||||
""
|
|
||||||
""
|
|
||||||
)
|
|
||||||
endif(NOT LAPACK_LIBRARIES)
|
|
||||||
endif (BLA_VENDOR STREQUAL "ACML" OR BLA_VENDOR STREQUAL "All")
|
|
||||||
|
|
||||||
# Apple LAPACK library?
|
# Apple LAPACK library?
|
||||||
if (BLA_VENDOR STREQUAL "Apple" OR BLA_VENDOR STREQUAL "All")
|
if (BLA_VENDOR STREQUAL "Apple" OR BLA_VENDOR STREQUAL "All")
|
||||||
|
|
Loading…
Reference in New Issue