Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ struct level_dimensions
using level_type = Level;

// Needs alignas to work around an issue with tuple
alignas(16) const Dimensions dims; // Unit for dimensions is implicit
alignas(16) Dimensions dims; // Unit for dimensions is implicit

_CCCL_HOST_DEVICE constexpr level_dimensions(const Dimensions& d)
: dims(d)
Expand Down
6 changes: 6 additions & 0 deletions cudax/test/green_context/green_ctx_smoke.cu
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,10 @@ TEST_CASE("Green context", "[green_context]")
}
}
}
#else
// For some reason CI fails with empty test, add a dummy test case
TEST_CASE("Dummy test case")
{
CUDAX_REQUIRE(1 == 1);
}
#endif // CUDART_VERSION >= 12050