diff options
author | J M Dieterich <dieterich@ogolem.org> | 2017-11-15 12:00:41 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-11-16 11:43:15 -0500 |
commit | f5bc78263e15f07fc1fed15d970d7ecf9e84f7cc (patch) | |
tree | cb84e712152de2b62caef9abaf2bd27cd92e8afa /Modules/FindBLAS.cmake | |
parent | e31288582977c10972af9baa3b0e41d758094d21 (diff) | |
download | cmake-f5bc78263e15f07fc1fed15d970d7ecf9e84f7cc.tar.gz |
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.cmake | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake index 2684617fe6..bb8b3083f9 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/) |