Skip to content

Commit

Permalink
Fix unused variable warning for __can_use_complete_tx (#1547) (#1550)
Browse files Browse the repository at this point in the history
  • Loading branch information
wmaxey committed Mar 19, 2024
1 parent ad88810 commit 1c009d2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,7 @@ __completion_mechanism __dispatch_memcpy_async_global_to_shared(_Group const & _
#if __cccl_ptx_isa >= 800
NV_IF_TARGET(NV_PROVIDES_SM_90, (
const bool __can_use_complete_tx = __allowed_completions & uint32_t(__completion_mechanism::__mbarrier_complete_tx);
_LIBCUDACXX_UNUSED_VAR(__can_use_complete_tx);
_LIBCUDACXX_DEBUG_ASSERT(__can_use_complete_tx == (nullptr != __bar_handle), "Pass non-null bar_handle if and only if can_use_complete_tx.");
if _LIBCUDACXX_CONSTEXPR_AFTER_CXX14 (_Align >= 16) {
if (__can_use_complete_tx && __isShared(__bar_handle)) {
Expand Down

0 comments on commit 1c009d2

Please sign in to comment.