Correct naming of getrf_parallel object

fixes #1984
This commit is contained in:
Martin Kroeker 2019-01-26 00:45:45 +01:00 committed by GitHub
parent 256eb588bb
commit e882b239aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

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