diff options
author | J M Dieterich <dieterich@ogolem.org> | 2016-03-18 14:55:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-03-18 15:23:36 (GMT) |
commit | 5f6b4f690a3348c43f4f26bcc07c2418c3f2ab2f (patch) | |
tree | fe39e8c9c7a21bd7e10e874bf05b1e658d0ab6b8 /Modules/FindLAPACK.cmake | |
parent | 9cdb37e9175b2e3c6367bc4863fda0404cb1c3a2 (diff) | |
download | CMake-5f6b4f690a3348c43f4f26bcc07c2418c3f2ab2f.zip CMake-5f6b4f690a3348c43f4f26bcc07c2418c3f2ab2f.tar.gz CMake-5f6b4f690a3348c43f4f26bcc07c2418c3f2ab2f.tar.bz2 |
Find{BLAS,LAPACK}: Add support for OpenBLAS (#16024)
OpenBLAS (www.openblas.net) is the successor to GotoBLAS.
Diffstat (limited to 'Modules/FindLAPACK.cmake')
-rw-r--r-- | Modules/FindLAPACK.cmake | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Modules/FindLAPACK.cmake b/Modules/FindLAPACK.cmake index b11edc3..2708de0 100644 --- a/Modules/FindLAPACK.cmake +++ b/Modules/FindLAPACK.cmake @@ -31,7 +31,7 @@ # BLA_F95 if set on tries to find the f95 interfaces for BLAS/LAPACK # # ## List of vendors (BLA_VENDOR) valid in this module # Intel(mkl), -# ACML,Apple, NAS, Generic +# OpenBLAS, ACML,Apple, NAS, Generic #============================================================================= # Copyright 2007-2009 Kitware, Inc. @@ -181,6 +181,19 @@ if (BLA_VENDOR STREQUAL "Goto" OR BLA_VENDOR STREQUAL "All") endif() endif () +if (BLA_VENDOR STREQUAL "OpenBLAS" OR BLA_VENDOR STREQUAL "All") + if(NOT LAPACK_LIBRARIES) + check_lapack_libraries( + LAPACK_LIBRARIES + LAPACK + cheev + "" + "openblas" + "${BLAS_LIBRARIES}" + "" + ) + endif() +endif () #acml lapack if (BLA_VENDOR MATCHES "ACML" OR BLA_VENDOR STREQUAL "All") |