File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
libcudacxx/include/cuda/__memcpy_async Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,18 +41,18 @@ _CCCL_BEGIN_NAMESPACE_CUDA
4141
4242// ! Trait to detect whether a group represents a CUDA thread block, for example: ``cooperative_groups::thread_block``.
4343template <typename _Group>
44- _CCCL_GLOBAL_CONSTANT bool is_thread_block_group_v = false ;
44+ inline constexpr bool is_thread_block_group_v = false ;
4545
4646template <>
47- _CCCL_GLOBAL_CONSTANT bool is_thread_block_group_v<cooperative_groups::thread_block> = true ;
47+ inline constexpr bool is_thread_block_group_v<cooperative_groups::thread_block> = true ;
4848
4949// ! Trait to detect whether a group represents a CUDA warp, for example:
5050// ! ``cooperative_groups::thread_block_tile<32, ...>``.
5151template <typename _Group>
52- _CCCL_GLOBAL_CONSTANT bool is_warp_group_v = false ;
52+ inline constexpr bool is_warp_group_v = false ;
5353
5454template <typename _Parent>
55- _CCCL_GLOBAL_CONSTANT bool is_warp_group_v<cooperative_groups::thread_block_tile<32 , _Parent>> = true ;
55+ inline constexpr bool is_warp_group_v<cooperative_groups::thread_block_tile<32 , _Parent>> = true ;
5656
5757_CCCL_END_NAMESPACE_CUDA
5858
You can’t perform that action at this time.
0 commit comments