-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update kokkos to 4.2.01 - Update kokkos-kernels to 4.2.01 - Update pybind11 to 2.9.2 - Fixed typo in a print statement
- Loading branch information
Showing
3,297 changed files
with
276,968 additions
and
206,720 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,85 @@ | ||
name: github-DOCS | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
|
||
permissions: | ||
contents: none | ||
|
||
jobs: | ||
docs-check: | ||
runs-on: [macos-latest] | ||
steps: | ||
- name: Install Dependencies | ||
run: | | ||
brew install doxygen | ||
python3 -m pip install sphinx -v "sphinx==6.2.1" | ||
python3 -m pip install breathe | ||
python3 -m pip install sphinx-rtd-theme | ||
sphinx-build --version | ||
doxygen --version | ||
- name: checkout_kokkos_kernels | ||
uses: actions/checkout@v3 | ||
with: | ||
path: kokkos-kernels | ||
|
||
- name: checkout_kokkos | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: kokkos/kokkos | ||
ref: develop | ||
path: kokkos | ||
|
||
- name: configure_kokkos | ||
run: | | ||
mkdir -p kokkos/{build,install} | ||
cd kokkos/build | ||
cmake \ | ||
-DCMAKE_CXX_FLAGS="-Werror" \ | ||
-DCMAKE_CXX_STANDARD=17 \ | ||
-DCMAKE_INSTALL_PREFIX=$PWD/../install \ | ||
-DKokkos_ENABLE_COMPILER_WARNINGS=ON \ | ||
-DKokkos_ENABLE_DEPRECATED_CODE_3=OFF \ | ||
-DKokkos_ENABLE_TESTS=OFF \ | ||
-DKokkos_ENABLE_DEPRECATED_CODE_4=OFF \ | ||
.. | ||
- name: build_and_install_kokkos | ||
working-directory: kokkos/build | ||
run: make -j2 install | ||
|
||
- name: configure_kokkos_kernels | ||
run: | | ||
mkdir -p kokkos-kernels/{build,install} | ||
cd kokkos-kernels/build | ||
cmake \ | ||
-DKokkos_DIR=$PWD/../../kokkos/install/lib/cmake/Kokkos \ | ||
-DCMAKE_INSTALL_PREFIX=$PWD/../install \ | ||
-DKokkosKernels_ENABLE_DOCS=ON \ | ||
.. | ||
- name: build_kokkos_kernels_doxygen | ||
working-directory: kokkos-kernels/build | ||
run: | | ||
echo "Redirecting full output to doxygen.out..." | ||
make Doxygen > doxygen.out 2>&1 || true | ||
error_ret=$(grep 'Error' doxygen.out | head -c 1) || true | ||
if [ ! -z $error_ret ]; then | ||
echo "---- BEGIN: Summary of errors ---- " | ||
cat doxygen.out | grep -i 'error:' || true | ||
echo "---- END: Summary of errors ---- " | ||
echo | ||
echo | ||
echo "---- BEGIN: Summary of warnings ---- " | ||
cat doxygen.out | grep -i 'warning:' || true | ||
echo "---- END: Summary of warnings ---- " | ||
exit 1 | ||
fi | ||
- name: build_kokkos_kernels_sphinx | ||
working-directory: kokkos-kernels/build | ||
run: make Sphinx |
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 |
---|---|---|
|
@@ -8,3 +8,8 @@ | |
.project | ||
*.o | ||
TAGS | ||
|
||
#Clangd indexing | ||
compile_commands.json | ||
.cache/ | ||
.vscode/ |
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
Oops, something went wrong.