Skip to content

Commit

Permalink
fix typo affecting one of the SIMD16 kernels
Browse files Browse the repository at this point in the history
  • Loading branch information
bashbaug committed Jan 17, 2024
1 parent a433769 commit d4eb405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/99_matrixexperiments/matrix_kernels.cl
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d4eb405

Please sign in to comment.