Add linear algebra file

This commit is contained in:
2017-08-11 11:39:49 -04:00
parent 362b412771
commit 58bc588c19
6 changed files with 224 additions and 25 deletions

11
cmake/FindLAPACKE.cmake Normal file
View File

@@ -0,0 +1,11 @@
find_library(LAPACKE_LIBRARIES
NAMES lapacke)
find_path(LAPACKE_INCLUDE_DIR NAMES lapacke.h)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(LAPACKE
DEFAULT_MSG
LAPACKE_LIBRARIES
LAPACKE_INCLUDE_DIR)
mark_as_advanced(LAPACKE_LIBRARIES LAPACKE_INCLUDE_DIR)