-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3621 from anagainaru/sycl-backend
Adding SYCL support to the Kokkos backend
- Loading branch information
Showing
5 changed files
with
90 additions
and
57 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
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
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,65 @@ | ||
#!/bin/bash | ||
# shellcheck disable=SC2191 | ||
|
||
module load oneapi | ||
module load cmake/3.23.2 | ||
module refresh | ||
|
||
######## User Configurations ######## | ||
Kokkos_HOME=$HOME/kokkos/kokkos | ||
ADIOS2_HOME=$(pwd) | ||
BUILD_DIR=${ADIOS2_HOME}/build-kokkos-polaris | ||
INSTALL_DIR=${ADIOS2_HOME}/install-kokkos-polaris | ||
|
||
num_build_procs=4 | ||
|
||
######## Kokkos ######## | ||
mkdir -p "${BUILD_DIR}/kokkos" | ||
rm -f "${BUILD_DIR}/kokkos/CMakeCache.txt" | ||
rm -rf "${BUILD_DIR}/kokkos/CMakeFiles" | ||
|
||
ARGS=( | ||
-D CMAKE_BUILD_TYPE=RelWithDebInfo | ||
-D CMAKE_INSTALL_PREFIX="${INSTALL_DIR}" | ||
-D CMAKE_CXX_COMPILER=clang++ | ||
|
||
-D Kokkos_ENABLE_SERIAL=ON | ||
-D Kokkos_ARCH_ZEN3=ON | ||
-D Kokkos_ENABLE_SYCL=ON | ||
-D Kokkos_ARCH_AMPERE80=ON | ||
-D Kokkos_ENABLE_UNSUPPORTED_ARCHS=ON | ||
|
||
-D CMAKE_CXX_STANDARD=17 | ||
-D CMAKE_CXX_EXTENSIONS=OFF | ||
-D CMAKE_POSITION_INDEPENDENT_CODE=TRUE | ||
-D BUILD_SHARED_LIBS=ON | ||
) | ||
cmake "${ARGS[@]}" -S "${Kokkos_HOME}" -B "${BUILD_DIR}/kokkos" | ||
cmake --build "${BUILD_DIR}/kokkos" -j${num_build_procs} | ||
cmake --install "${BUILD_DIR}/kokkos" | ||
|
||
######## ADIOS2 ######## | ||
mkdir -p "${BUILD_DIR}/adios2" | ||
rm -f "${BUILD_DIR}/adios2/CMakeCache.txt" | ||
rm -rf "${BUILD_DIR}/adios2/CMakeFiles" | ||
|
||
ARGS_ADIOS=( | ||
-D CMAKE_INSTALL_PREFIX="${INSTALL_DIR}" | ||
-D BUILD_TESTING=OFF | ||
#-D ADIOS2_BUILD_EXAMPLES=OFF | ||
-D CMAKE_CXX_COMPILER=g++ | ||
-D CMAKE_C_COMPILER=gcc | ||
|
||
-D ADIOS2_USE_SST=OFF | ||
-D ADIOS2_USE_Kokkos=ON | ||
-D Kokkos_ROOT="${INSTALL_DIR}" | ||
|
||
-D CMAKE_CXX_STANDARD=17 | ||
-D CMAKE_CXX_EXTENSIONS=OFF | ||
-D CMAKE_POSITION_INDEPENDENT_CODE=TRUE | ||
-D BUILD_SHARED_LIBS=ON | ||
-D ADIOS2_USE_Fortran=OFF | ||
) | ||
cmake "${ARGS_ADIOS[@]}" -S "${ADIOS2_HOME}" -B "${BUILD_DIR}"/adios2 | ||
cmake --build "${BUILD_DIR}/adios2" -j${num_build_procs} | ||
cmake --install "${BUILD_DIR}/adios2" |
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