diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-01-29 19:31:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-30 15:16:08 (GMT) |
commit | be7b30f67e7e5c8b0186ba622dc06ce8ffe2df4e (patch) | |
tree | 6f31cb43e346c6c2301643dd9fc6eae00491747b /Modules/FindBLAS.cmake | |
parent | b323407235a3671eb11c7a039ce1c2f134025c73 (diff) | |
download | CMake-be7b30f67e7e5c8b0186ba622dc06ce8ffe2df4e.zip CMake-be7b30f67e7e5c8b0186ba622dc06ce8ffe2df4e.tar.gz CMake-be7b30f67e7e5c8b0186ba622dc06ce8ffe2df4e.tar.bz2 |
Find{BLAS,LAPACK}: Add note and example for using Intel MKL
Diffstat (limited to 'Modules/FindBLAS.cmake')
-rw-r--r-- | Modules/FindBLAS.cmake | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake index 3fc30c4..b246ae5 100644 --- a/Modules/FindBLAS.cmake +++ b/Modules/FindBLAS.cmake @@ -72,6 +72,17 @@ This module defines the following variables: to use BLAS95 interface ``BLAS95_FOUND`` library implementing the BLAS95 interface is found + +.. note:: + + C or CXX must be enabled to use Intel MKL + + For example, to use Intel MKL libraries and/or Intel compiler: + + .. code-block:: cmake + + set(BLA_VENDOR Intel10_64lp) + find_package(BLAS) #]=======================================================================] include(${CMAKE_CURRENT_LIST_DIR}/CheckFunctionExists.cmake) |