From 5f6b4f690a3348c43f4f26bcc07c2418c3f2ab2f Mon Sep 17 00:00:00 2001 From: J M Dieterich Date: Fri, 18 Mar 2016 10:55:16 -0400 Subject: Find{BLAS,LAPACK}: Add support for OpenBLAS (#16024) OpenBLAS (www.openblas.net) is the successor to GotoBLAS. --- Modules/FindLAPACK.cmake | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'Modules/FindLAPACK.cmake') diff --git a/Modules/FindLAPACK.cmake b/Modules/FindLAPACK.cmake index b11edc3341..2708de0b27 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") -- cgit v1.2.1