numeric-linalg
Educational material on the SciPy implementation of numerical linear algebra algorithms
Name | Size | Mode | |
.. | |||
lapack/CBLAS/cmake/cblas-config-build.cmake.in | 452B | -rw-r--r-- |
01 02 03 04 05 06 07 08 09 10 11 12 13 14
# Load the LAPACK package with which we were built. set(LAPACK_DIR "@LAPACK_BINARY_DIR@") find_package(LAPACK NO_MODULE) # Load lapack targets from the build tree, including lapacke targets. if(NOT TARGET lapacke) include("@LAPACK_BINARY_DIR@/@LAPACKLIB@-targets.cmake") endif() # Report cblas header search locations from build tree. set(CBLAS_INCLUDE_DIRS "@LAPACK_BINARY_DIR@/include") # Report cblas libraries. set(CBLAS_LIBRARIES @CBLASLIB@)