[Backport branch/3.3.x] Fix version guard for cudaDevAttrHostNumaMemoryPoolsSupported#7842
Merged
wmaxey merged 1 commit intobranch/3.3.xfrom Mar 2, 2026
Merged
Conversation
cudaDevAttrHostNumaMemoryPoolsSupported was introduced in CUDA 12.9, not 12.6. The incorrect _CCCL_CTK_AT_LEAST(12, 6) guard causes compilation failures on CUDA 12.6-12.8 where the enum does not exist in driver_types.h. Fixes build error: error C2039: 'cudaDevAttrHostNumaMemoryPoolsSupported': is not a member of 'global namespace' Introduced in #7339 (983b0c6). (cherry picked from commit a0a6bfd)
Contributor
Contributor
|
/ok to test 0d705bb |
davebayer
approved these changes
Mar 2, 2026
bernhardmgruber
approved these changes
Mar 2, 2026
Contributor
Author
🥳 CI Workflow Results🟩 Finished in 1h 28m: Pass: 100%/95 | Total: 1d 08h | Max: 1h 26m | Hits: 96%/249665See results here. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Backport of #7838 to
branch/3.3.x.