Use team_size_max to fix "Team size too large" error in reducer test … #1
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
name: github-windows | |
on: | |
push: | |
pull_request: | |
concurrency: | |
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{github.event_name == 'pull_request'}} | |
permissions: | |
contents: read | |
jobs: | |
windows-cuda: | |
# Cuda build on Windows | |
name: Windows Cuda | |
runs-on: windows-2022 | |
steps: | |
- uses: Jimver/[email protected] | |
id: cuda-toolkit | |
with: | |
cuda: '12.1.0' | |
- uses: actions/checkout@v4 | |
- name: configure | |
shell: bash | |
run: | | |
mkdir build | |
mkdir c:/project | |
cd build | |
cmake -DKokkos_ENABLE_CUDA=ON -DKokkos_ARCH_VOLTA70=ON -DKokkos_ENABLE_TESTS=ON -DKokkos_ENABLE_COMPILE_AS_CMAKE_LANGUAGE=ON .. | |
- name: build library | |
shell: bash | |
run: | | |
cmake --build build --parallel 2 --config Release |