Browse Source

Correct naming of getrf_parallel object

fixes #1984
tags/v0.3.6^2
Martin Kroeker GitHub 7 years ago
parent
commit
e882b239aa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      lapack/CMakeLists.txt

+ 4
- 1
lapack/CMakeLists.txt View File

@@ -63,7 +63,6 @@ if (USE_THREAD)

# these do not have 'z' versions
set(PARALLEL_SOURCES
${GETRF_SRC}
lauum/lauum_U_parallel.c
lauum/lauum_L_parallel.c
potrf/potrf_U_parallel.c
@@ -81,6 +80,10 @@ if (USE_THREAD)
trtri/trtri_L_parallel.c
)

foreach (float_type ${FLOAT_TYPES})
GenerateNamedObjects("${GETRF_SRC}" "" "getrf_parallel" false "" "" false ${float_type})
endforeach()

GenerateNamedObjects("${PARALLEL_SOURCES}")
endif ()



Loading…
Cancel
Save