Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable alpaka PIC example for recent MSVC #793

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions examples/alpaka/pic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
cmake_minimum_required (VERSION 3.18.3)
project(llama-alpaka-pic)

if (MSVC AND MSVC_VERSION VERSION_GREATER_EQUAL 19.37)
# a failing MSVC version is 19.37.32825.0. A working version was 19.35.32217.1.
message(WARNING "MSVC 19.37 or higher fails with an internal error on the alpaka pic example, so it is disabled.")
return()
endif()

if (NOT TARGET llama::llama)
find_package(llama REQUIRED)
endif()
Expand Down
Loading