fix mul_mat_id bug

This commit is contained in:
Ruben Ortlam
2026-08-24 16:39:39 +02:00
parent 87218255f5
commit aff8df0b6c
@@ -263,7 +263,11 @@ void main() {
const uint a_row0 = warp_r * WM;
const uint b_col0 = warp_c * WN;
#ifdef MUL_MAT_ID
const bool active_col_tile = ic * BN + b_col0 < _ne1;
#else
const bool active_col_tile = ic * BN + b_col0 < p.N;
#endif
barrier();