Mentions légales du service

Skip to content
Snippets Groups Projects

Add OpenMP runtime for codelets

Merged Philippe Virouleau requested to merge viroulea/chameleon:feature-openmp into master
Compare and
83 files
+ 4221
96
Compare changes
  • Side-by-side
  • Inline
Files
83
+ 3
1
@@ -29,7 +29,7 @@ if ( CHAMELEON_USE_CUDA )
set( CHAMELEON_COPY_DIAG ON )
else()
option(CHAMELEON_COPY_DIAG
"This options enables the duplication of the diagonal tiles in some algorithm to avoid anti-dependencies on lower/upper triangular parts (Might be useful to StarPU)" ON)
"This options enables the duplication of the diagonal tiles in some algorithm to avoid anti-dependencies on lower/upper triangular parts (Might be useful to StarPU and OpenMP)" ON)
endif()
if ( CHAMELEON_SCHED_QUARK )
@@ -296,6 +296,8 @@ elseif(CHAMELEON_SCHED_PARSEC)
target_link_libraries(chameleon chameleon_parsec)
elseif(CHAMELEON_SCHED_QUARK)
target_link_libraries(chameleon chameleon_quark)
elseif(CHAMELEON_SCHED_OPENMP)
target_link_libraries(chameleon chameleon_openmp)
endif()
if (NOT CHAMELEON_SIMULATION)
# Depends on coreblas only for set_coreblas_gemm3m_enabled() (Maybe we should change that)
Loading