From 6ddbfea7004ab3c16e35491c2f8ac066e09ffa7a Mon Sep 17 00:00:00 2001 From: Hank Anderson Date: Mon, 9 Feb 2015 15:15:58 -0600 Subject: [PATCH] Added generic laswp object. --- lapack/CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lapack/CMakeLists.txt b/lapack/CMakeLists.txt index 5070e0c05..7f37d49b3 100644 --- a/lapack/CMakeLists.txt +++ b/lapack/CMakeLists.txt @@ -1,7 +1,6 @@ include_directories(${CMAKE_SOURCE_DIR}) -# TODO: laswp needs arch specific code # TODO: getrs needs to be compiled with and without TRANS (and up to TRANS=4 in the complex case) # TODO: trti2 needs to be compiled with and without UNIT @@ -49,7 +48,11 @@ set(ZLAPACK_SOURCES trtri/trtri_L_single.c ) -GenerateNamedObjects("${LAPACK_SOURCES}" "DOUBLE" "" "" 0) +GenerateNamedObjects("${LAPACK_SOURCES}" "DOUBLE") + +# TODO: laswp needs arch specific code +GenerateNamedObjects("laswp/generic/laswp_k.c" "DOUBLE" "" "laswp_plus") +GenerateNamedObjects("laswp/generic/laswp_k.c" "DOUBLE" "MINUS" "laswp_minus") if (SMP)