Mentions légales du service

Skip to content
Snippets Groups Projects
Commit e85e996a authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Add empty core_ztile to measure overhead

parent bbf54900
No related branches found
No related tags found
1 merge request!284Add an empty core_ztile to measure overhead
......@@ -27,6 +27,8 @@
#
###
option( CHAMELEON_NO_KERNELS "Do not call the numerical kernels" OFF)
# Generate the chameleon sources for all possible precisions
# ------------------------------------------------------
......@@ -105,13 +107,22 @@ set(ZSRC
core_zttqrt.c
core_zunmlq.c
core_zunmqr.c
core_ztile.c
)
if( CHAMELEON_USE_HMAT )
list( APPEND ZSRC
hmat_z.c )
endif()
if ( CHAMELEON_NO_KERNELS )
list( APPEND ZSRC
core_ztile_empty.c
)
else()
list( APPEND ZSRC
core_ztile.c
)
endif()
precisions_rules_py(COREBLAS_SRCS_GENERATED "${ZSRC}"
PRECISIONS "${CHAMELEON_PRECISION}")
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment