Skip to content

Commit

Permalink
CUDA/C++14
Browse files Browse the repository at this point in the history
C++17 builds with NVCC are currently (up to CUDA 11.2)
failing with an internal compiler transformation bug
in extended lambda support.
  • Loading branch information
ax3l committed Dec 19, 2020
1 parent f3fe5aa commit 5f570f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# Build libamrex and all tutorials with CUDA
tutorials-cuda:
name: MSVC C++17 w/ CUDA@11.1.1 w/o Fortran w/o MPI
name: MSVC C++14 w/ CUDA@11.1.1 w/o Fortran w/o MPI
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
Expand All @@ -67,8 +67,8 @@ jobs:
-DAMReX_FORTRAN=OFF `
-DAMReX_MPI=OFF `
-DAMReX_GPU_BACKEND=CUDA `
-DCMAKE_CXX_STANDARD=17 `
-DCMAKE_CUDA_STANDARD=17 `
-DCMAKE_CXX_STANDARD=14 `
-DCMAKE_CUDA_STANDARD=14 `
-DAMReX_CUDA_ARCH=6.0 `
-DCMAKE_CUDA_COMPILER="C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.1/bin/nvcc.exe"
cmake --build build -j 2
Expand Down

0 comments on commit 5f570f2

Please sign in to comment.