From 4e923188f7dd96db44dfa7b73e9e94ab059f7bbf Mon Sep 17 00:00:00 2001 From: fzyzcjy <5236035+fzyzcjy@users.noreply.github.com> Date: Mon, 16 Jun 2025 11:03:58 +0800 Subject: [PATCH] Update intranode.cu (#210) --- csrc/kernels/intranode.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csrc/kernels/intranode.cu b/csrc/kernels/intranode.cu index 3e4fb89..52ba9e3 100644 --- a/csrc/kernels/intranode.cu +++ b/csrc/kernels/intranode.cu @@ -379,7 +379,7 @@ dispatch(int4* recv_x, float* recv_x_scales, int* recv_src_idx, int64_t* recv_to while (num_tokens_to_recv > 0) { // NOTES: unlike the sender, the receiver must ensure that the tail indices hold by different warps are the same while (recv_thread_id_in_rank == 0) { - cached_channel_tail_idx = ld_acquire_sys_global(channel_tail_idx.buffer());; + cached_channel_tail_idx = ld_acquire_sys_global(channel_tail_idx.buffer()); // Ready to copy if (cached_channel_head_idx != cached_channel_tail_idx) {