Skip to content
Closed
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: 5 additions & 1 deletion cudax/cmake/cudaxHeaderTesting.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ function(cudax_add_header_test label definitions)
cudax/include
# The cudax header template removes the check for the `small` macro.
HEADER_TEMPLATE "${cudax_SOURCE_DIR}/cmake/header_test.in.cu"
GLOBS "cuda/experimental/*.cuh"
GLOBS
"cuda/experimental/*.cuh"
# cuco carries some `.hpp` headers; scope the glob to `__cuco` so we don't pull in the
# untested `__nccl`/`__multi_gpu` `.h` headers.
"cuda/experimental/__cuco/*.hpp"
Comment on lines +23 to +25

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If reviewers think it's appropriate, I can also extend the coverage to all cudax .hpp and .h headers.

EXCLUDES
# The following internal headers are not required to compile independently:
"cuda/experimental/__execution/prologue.cuh"
Expand Down
Loading