summaryrefslogtreecommitdiffstats
path: root/Modules/FindBLAS.cmake
diff options
context:
space:
mode:
authorJ M Dieterich <dieterich@ogolem.org>2017-11-15 17:00:41 (GMT)
committerBrad King <brad.king@kitware.com>2017-11-16 16:43:15 (GMT)
commitf5bc78263e15f07fc1fed15d970d7ecf9e84f7cc (patch)
treecb84e712152de2b62caef9abaf2bd27cd92e8afa /Modules/FindBLAS.cmake
parente31288582977c10972af9baa3b0e41d758094d21 (diff)
downloadCMake-f5bc78263e15f07fc1fed15d970d7ecf9e84f7cc.zip
CMake-f5bc78263e15f07fc1fed15d970d7ecf9e84f7cc.tar.gz
CMake-f5bc78263e15f07fc1fed15d970d7ecf9e84f7cc.tar.bz2
Find{BLAS,LAPACK}: Add support for FLAME blis and libflame
FLAME (github.com/flame) provides a variety of numerical libraries. `blis` and `libflame` can be setup to expose BLAS/LAPACK interfaces. Fixes: #17470
Diffstat (limited to 'Modules/FindBLAS.cmake')
-rw-r--r--Modules/FindBLAS.cmake15
1 files changed, 15 insertions, 0 deletions
diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake
index 2684617..bb8b308 100644
--- a/Modules/FindBLAS.cmake
+++ b/Modules/FindBLAS.cmake
@@ -36,6 +36,7 @@
#
# * Goto
# * OpenBLAS
+# * FLAME
# * ATLAS PhiPACK
# * CXML
# * DXML
@@ -190,6 +191,20 @@ if (BLA_VENDOR STREQUAL "OpenBLAS" OR BLA_VENDOR STREQUAL "All")
endif()
endif ()
+if (BLA_VENDOR STREQUAL "FLAME" OR BLA_VENDOR STREQUAL "All")
+ if(NOT BLAS_LIBRARIES)
+ # FLAME's blis library (https://github.com/flame/blis)
+ check_fortran_libraries(
+ BLAS_LIBRARIES
+ BLAS
+ sgemm
+ ""
+ "blis"
+ ""
+ )
+ endif()
+endif ()
+
if (BLA_VENDOR STREQUAL "ATLAS" OR BLA_VENDOR STREQUAL "All")
if(NOT BLAS_LIBRARIES)
# BLAS in ATLAS library? (http://math-atlas.sourceforge.net/)