Skip to content

Commit

Permalink
Toolchain: Enable OpenMP for coverage and valgrind runs
Browse files Browse the repository at this point in the history
  • Loading branch information
oschuett committed Apr 15, 2020
1 parent 8e60251 commit a67c735
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/toolchain/scripts/generate_arch_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -219,16 +219,16 @@ if [ "$ENABLE_CUDA" = __TRUE__ ] ; then
fi
# valgrind enabled arch files
if [ "$ENABLE_VALGRIND" = __TRUE__ ] ; then
gen_arch_file "local_valgrind.sopt" VALGRIND
gen_arch_file "local_valgrind.sopt" VALGRIND OMP
[ "$MPI_MODE" != no ] && \
gen_arch_file "local_valgrind.popt" VALGRIND MPI
gen_arch_file "local_valgrind.popt" VALGRIND OMP MPI
fi
# coverage enabled arch files
gen_arch_file "local_coverage.sdbg" COVERAGE
gen_arch_file "local_coverage.sdbg" COVERAGE OMP
[ "$MPI_MODE" != no ] && \
gen_arch_file "local_coverage.pdbg" COVERAGE MPI
gen_arch_file "local_coverage.pdbg" COVERAGE OMP MPI
[ "$ENABLE_CUDA" = __TRUE__ ] && \
gen_arch_file "local_coverage_cuda.pdbg" COVERAGE MPI CUDA
gen_arch_file "local_coverage_cuda.pdbg" COVERAGE OMP MPI CUDA

cd "${ROOTDIR}"

Expand Down

0 comments on commit a67c735

Please sign in to comment.