Skip to content

Commit

Permalink
Use the right version macro CCCL_MAJOR_VERSION (#18073)
Browse files Browse the repository at this point in the history
I accidentally used `CCCL_VERSION_MAJOR`, which is used in our cmake scripts

Authors:
  - Michael Schellenberger Costa (https://github.com/miscco)

Approvers:
  - David Wendt (https://github.com/davidwendt)
  - Bradley Dice (https://github.com/bdice)
  - Yunsong Wang (https://github.com/PointKernel)

URL: #18073
  • Loading branch information
miscco authored Feb 24, 2025
1 parent d4c62ef commit 3c698d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/io/fst/dispatch_dfa.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ struct DispatchFSM : DeviceFSMPolicy {
// Alias the temporary allocations from the single storage blob (or compute the necessary size
// of the blob)
// TODO (@miscco): remove this once rapids moves to CCCL 2.8
#if CCCL_VERSION_MAJOR >= 3
#if CCCL_MAJOR_VERSION >= 3
error = cub::detail::AliasTemporaries(
#else // ^^^ CCCL 3.x ^^^ / vvv CCCL 2.x vvv
error = cub::AliasTemporaries(
Expand Down

0 comments on commit 3c698d0

Please sign in to comment.