Skip to content

Commit

Permalink
Hint missing compiler flags
Browse files Browse the repository at this point in the history
  • Loading branch information
sleeepyjack committed Nov 22, 2023
1 parent 8b73aee commit b0d2cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cuco/detail/__config
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
#endif

#if !defined(__CUDACC_RELAXED_CONSTEXPR__)
#error "Support for relaxed constexpr is required"
#error "Support for relaxed constexpr is required (nvcc flag --expt-relaxed-constexpr)"
#endif

#if !defined(__CUDACC_EXTENDED_LAMBDA__)
#error "Support for extended device lambdas is required"
#error "Support for extended device lambdas is required (nvcc flag --expt-extended-lambda)"
#endif

// WAR for libcudacxx/296
Expand Down

0 comments on commit b0d2cf7

Please sign in to comment.