Remove unused var in moe_align_kernel (#2751)

This commit is contained in:
Ke Bao
2025-01-06 22:13:28 +08:00
committed by GitHub
parent 439f65809f
commit 06dd2eab84

View File

@@ -51,7 +51,6 @@ __global__ void moe_align_block_size_kernel(scalar_t* __restrict__ topk_ids, int
__shared__ int32_t local_offsets[256];
const int warp_id = threadIdx.x / WARP_SIZE;
const int lane_id = threadIdx.x % WARP_SIZE;
const int experts_per_warp = 8;
const int my_expert_start = warp_id * experts_per_warp;