remove commented code

This commit is contained in:
bssrdf 2025-11-07 23:21:30 -05:00
parent 414bb8d9ed
commit 64ead3fd4f
1 changed files with 0 additions and 3 deletions

View File

@ -699,9 +699,6 @@ static __global__ void conv2d_implicit_kernel(const half * __restrict__ input,
const uint gemm_i = n_idx + j*32;
const int n = fastdiv(gemm_i, param.OHOW_fastdiv);
const int col = fastmodulo(gemm_i, param.OHOW_fastdiv);
// uint idx = output_lds_addr + subk*2 + j*32*BN/2;
// idx = idx ^ ((idx & 0b110000000000) >> 9);
// idx = idx ^ ((idx & 0b1110000000) >> 4);
uint32_t dst_ptr = *(reinterpret_cast<uint32_t*>(&smemoutput[idx+j*32*BN/2]));
half (&res_)[2] = reinterpret_cast<half(&)[2]>(dst_ptr);
if (n < param.n && row < param.k && col < PQ) {