Skip to content

Commit

Permalink
Fix CI issues (#3443)
Browse files Browse the repository at this point in the history
  • Loading branch information
pciolkosz authored Jan 19, 2025
1 parent cac3738 commit 2fe4537
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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

0 comments on commit 2fe4537

Please sign in to comment.