-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'task/rhornung67/devguide-update' of github.com:LLNL/RAJ…
…A into task/rhornung67/devguide-update
- Loading branch information
Showing
6 changed files
with
91 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
############################################################################### | ||
# Copyright (c) 2016-24, Lawrence Livermore National Security, LLC | ||
# and RAJA project contributors. See the RAJA/LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: (BSD-3-Clause) | ||
############################################################################### | ||
|
||
set(RAJA_COMPILER "RAJA_COMPILER_CLANG" CACHE STRING "") | ||
|
||
set(CMAKE_CXX_FLAGS_RELEASE "--gcc-toolchain=/usr/tce/packages/gcc/gcc-10.3.1 -O3 -march=native -funroll-loops -finline-functions -fsanitize=address -fno-omit-frame-pointer" CACHE STRING "") | ||
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "--gcc-toolchain=/usr/tce/packages/gcc/gcc-10.3.1 -O3 -g -march=native -funroll-loops -finline-functions -fsanitize=address -fno-omit-frame-pointer" CACHE STRING "") | ||
set(CMAKE_CXX_FLAGS_DEBUG "--gcc-toolchain=/usr/tce/packages/gcc/gcc-10.3.1 -O0 -g -fsanitize=address -fno-omit-frame-pointer" CACHE STRING "") | ||
|
||
set(RAJA_HOST_CONFIG_LOADED On CACHE BOOL "") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
############################################################################### | ||
# Copyright (c) 2016-24, Lawrence Livermore National Security, LLC | ||
# and RAJA project contributors. See the RAJA/LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: (BSD-3-Clause) | ||
############################################################################### | ||
|
||
set(RAJA_COMPILER "RAJA_COMPILER_CLANG" CACHE STRING "") | ||
|
||
set(CMAKE_CXX_FLAGS_RELEASE "--gcc-toolchain=/usr/tce/packages/gcc/gcc-10.3.1 -O3 -march=native -funroll-loops -finline-functions -fsanitize=undefined -fno-omit-frame-pointer -fsanitize=integer" CACHE STRING "") | ||
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "--gcc-toolchain=/usr/tce/packages/gcc/gcc-10.3.1 -O3 -g -march=native -funroll-loops -finline-functions -fsanitize=undefined -fno-omit-frame-pointer -fsanitize=integer" CACHE STRING "") | ||
set(CMAKE_CXX_FLAGS_DEBUG "--gcc-toolchain=/usr/tce/packages/gcc/gcc-10.3.1 -O0 -g -fsanitize=undefined -fno-omit-frame-pointer -fsanitize=integer" CACHE STRING "") | ||
|
||
set(RAJA_HOST_CONFIG_LOADED On CACHE BOOL "") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#!/usr/bin/env bash | ||
|
||
############################################################################### | ||
# Copyright (c) 2016-24, Lawrence Livermore National Security, LLC | ||
# and RAJA project contributors. See the RAJA/LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: (BSD-3-Clause) | ||
############################################################################### | ||
|
||
if [ "$1" == "" ]; then | ||
echo | ||
echo "You must pass 2 arguments to the script (in this order): " | ||
echo " 1) compiler version number for clang" | ||
echo " 2) sanitizer version (one of 2 options: asan, or ubsan)" | ||
echo | ||
echo "For example: " | ||
echo " toss4_clang.sh 14.0.6-magic asan" | ||
exit | ||
fi | ||
|
||
COMP_VER=$1 | ||
SAN_VER=$2 | ||
shift 2 | ||
|
||
if [[ ( ${SAN_VER} != "asan" ) && ( ${SAN_VER} != "ubsan" ) ]] ; then | ||
echo "Sanitizer version must be \"asan\" or \"ubsan\". Exiting!" ; exit | ||
fi | ||
|
||
BUILD_SUFFIX=lc_toss4-clang-${COMP_VER}-${SAN_VER} | ||
|
||
echo | ||
echo "Creating build directory build_${BUILD_SUFFIX} and generating configuration in it" | ||
echo "Configuration extra arguments:" | ||
echo " $@" | ||
echo | ||
|
||
rm -rf build_${BUILD_SUFFIX} 2>/dev/null | ||
mkdir build_${BUILD_SUFFIX} && cd build_${BUILD_SUFFIX} | ||
|
||
module load cmake/3.23.1 | ||
|
||
cmake \ | ||
-DCMAKE_BUILD_TYPE=Debug \ | ||
-DCMAKE_CXX_COMPILER=/usr/tce/packages/clang/clang-${COMP_VER}/bin/clang++ \ | ||
-DBLT_CXX_STD=c++14 \ | ||
-C ../host-configs/lc-builds/toss4/clang_X_${SAN_VER}.cmake \ | ||
-DENABLE_OPENMP=On \ | ||
-DCMAKE_INSTALL_PREFIX=../install_${BUILD_SUFFIX} \ | ||
"$@" \ | ||
.. | ||
|
||
if [[ ( ${SAN_VER} = "ubsan" ) ]] ; then | ||
echo "To view ubsan output, set the following environment variable: " | ||
echo " UBSAN_OPTIONS=log_path=/path/to/ubsan_log_prefix" | ||
echo | ||
echo "Each test will create a ubsan output file with the prefix \"ubsan_log_prefix\"." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters