Skip to content

Commit 75ba561

Browse files
Fix
1 parent 7fea8c9 commit 75ba561

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libcudacxx/include/cuda/__memcpy_async/cp_async_bulk_shared_global.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
# include <cuda/__memcpy_async/elect_one.h>
2929
# include <cuda/__ptx/instructions/cp_async_bulk.h>
30-
# include <cuda/__ptx/instructions/elect_sync.h>
3130
# include <cuda/__ptx/instructions/mbarrier_expect_tx.h>
3231
# include <cuda/__ptx/ptx_dot_variants.h>
3332
# include <cuda/__ptx/ptx_helper_functions.h>
@@ -48,7 +47,7 @@ inline _CCCL_DEVICE void __cp_async_bulk_shared_global_and_expect_tx(
4847
// https://docs.nvidia.com/cuda/parallel-thread-execution/index.html#data-movement-and-conversion-instructions-cp-async-bulk
4948
NV_IF_ELSE_TARGET(
5049
NV_PROVIDES_SM_90,
51-
(if (__group_elect_one(__g)) {
50+
(if (::cuda::device::__group_elect_one(__g)) {
5251
::cuda::ptx::cp_async_bulk(
5352
::cuda::std::conditional_t<__cccl_ptx_isa >= 860, ::cuda::ptx::space_shared_t, ::cuda::ptx::space_cluster_t>{},
5453
::cuda::ptx::space_global,

0 commit comments

Comments
 (0)