From 026517b0f8fc4b843cbfaa4c754f4428275608a8 Mon Sep 17 00:00:00 2001 From: cuibo <1956699404@qq.com> Date: Thu, 12 Oct 2023 15:39:26 +0800 Subject: [PATCH] feat:change comments --- src/kernels/10_kernel_warptiling.cuh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kernels/10_kernel_warptiling.cuh b/src/kernels/10_kernel_warptiling.cuh index 2cc66f3..2cbfaf1 100644 --- a/src/kernels/10_kernel_warptiling.cuh +++ b/src/kernels/10_kernel_warptiling.cuh @@ -112,7 +112,7 @@ __global__ void __launch_bounds__(NUM_THREADS) // size of the warp subtile constexpr uint WMITER = (WM * WN) / (WARPSIZE * TM * TN * WNITER); - constexpr uint WSUBM = WM / WMITER; // 64/2=32 + constexpr uint WSUBM = WM / WMITER; // 64/1=64 constexpr uint WSUBN = WN / WNITER; // 32/2=16 // Placement of the thread in the warp subtile @@ -184,4 +184,4 @@ __global__ void __launch_bounds__(NUM_THREADS) } } } -} \ No newline at end of file +}