Browse Source

Added generic laswp object.

tags/v0.2.15^2
Hank Anderson 11 years ago
parent
commit
6ddbfea700
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      lapack/CMakeLists.txt

+ 5
- 2
lapack/CMakeLists.txt View File

@@ -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)



Loading…
Cancel
Save