From 3b20b62423150ea0eb2a4e2c9d296a527c30e827 Mon Sep 17 00:00:00 2001 From: Hank Anderson Date: Mon, 9 Feb 2015 15:29:28 -0600 Subject: [PATCH] Fixed trti2 name. --- lapack/CMakeLists.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lapack/CMakeLists.txt b/lapack/CMakeLists.txt index 7f37d49b3..346f96e34 100644 --- a/lapack/CMakeLists.txt +++ b/lapack/CMakeLists.txt @@ -1,8 +1,6 @@ include_directories(${CMAKE_SOURCE_DIR}) -# 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 set(LAPACK_SOURCES getf2/getf2_k.c @@ -15,8 +13,6 @@ set(LAPACK_SOURCES lauu2/lauu2_L.c lauum/lauum_U_single.c lauum/lauum_L_single.c - trti2/trti2_U.c - trti2/trti2_L.c ) # sources that need TRANS set @@ -30,6 +26,12 @@ set(UNIT_SOURCES trtri/trtri_L_single.c ) +set(UNIT_SOURCES2 + trti2/trti2_U.c + trti2/trti2_L.c +) + +# TODO: getrs needs to be compiled with up to TRANS=4 in the complex case set(ZLAPACK_SOURCES getf2/zgetf2_k.c getrf/getrf_single.c @@ -95,6 +97,7 @@ endif () GenerateCombinationObjects("${TRANS_SOURCES}" "TRANS" "N" "DOUBLE" "" 4) GenerateCombinationObjects("${UNIT_SOURCES}" "UNIT" "N" "DOUBLE" "" 4) +GenerateCombinationObjects("${UNIT_SOURCES2}" "UNIT" "N" "DOUBLE" "" 0) set(DBLAS_OBJS ${DBLAS_OBJS} PARENT_SCOPE) # list append removes the scope from DBLAS_OBJS