From d4eb405b631ca43aca6a42c3036766359ecb784c Mon Sep 17 00:00:00 2001 From: Ben Ashbaugh Date: Tue, 16 Jan 2024 21:43:27 -0800 Subject: [PATCH] fix typo affecting one of the SIMD16 kernels --- samples/99_matrixexperiments/matrix_kernels.cl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/99_matrixexperiments/matrix_kernels.cl b/samples/99_matrixexperiments/matrix_kernels.cl index 03c2dcd..a310db6 100644 --- a/samples/99_matrixexperiments/matrix_kernels.cl +++ b/samples/99_matrixexperiments/matrix_kernels.cl @@ -218,7 +218,7 @@ kernel void bfloat16_dpas_rowmajor_m2_n16(global float* C, global ushort* A, glo const int tM = 2; const int tN = 16; const int N = get_global_size(0); - const int m = get_group_id(1) * tK; + const int m = get_group_id(1) * tM; const int n = get_group_id(0) * get_local_size(0); float2 sum = 0;