-
Notifications
You must be signed in to change notification settings - Fork 161
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
Attempt to WAR CUB / RDC / MSVC issue #669
Attempt to WAR CUB / RDC / MSVC issue #669
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am amazed that this worked and the other tries not.
@@ -23,7 +23,14 @@ list(FILTER CUB_CUDA_ARCHITECTURES_RDC EXCLUDE REGEX "53|62|72|90") | |||
message(STATUS "CUB_CUDA_ARCHITECTURES: ${CUB_CUDA_ARCHITECTURES}") | |||
message(STATUS "CUB_CUDA_ARCHITECTURES_RDC: ${CUB_CUDA_ARCHITECTURES_RDC}") | |||
|
|||
option(CUB_ENABLE_RDC_TESTS "Enable tests that require separable compilation." ON) | |||
if ("MSVC" STREQUAL "${CMAKE_CXX_COMPILER_ID}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if ("MSVC" STREQUAL "${CMAKE_CXX_COMPILER_ID}") | |
if (MSVC) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't know there was a short version for this check, thank you! Since it's functionally equivalent and there are many usages of the long version, I'll keep the code as is, but will keep this in mind.
* Add icc compiler to CI matrix (#1159) * Attempt to WAR CUB / RDC / MSVC issue (#669) --------- Co-authored-by: Jake Hemstad <[email protected]> Co-authored-by: Georgii Evtushenko <[email protected]>
Description
Attempt to WAR CUB linkage issue in MSVC CI
Checklist