diff --git a/backends/cadence/reference/operators/quantized_matmul_out.cpp b/backends/cadence/reference/operators/quantized_matmul_out.cpp index b0a9393cd01..5e1a49c0b5a 100644 --- a/backends/cadence/reference/operators/quantized_matmul_out.cpp +++ b/backends/cadence/reference/operators/quantized_matmul_out.cpp @@ -49,7 +49,7 @@ __attribute__((noinline)) void qmatmul( sum += (X[i * n + k] - X_zero_point) * (y[k * p + j] - Y_zero_point); } } - Z[i * p + j] = kernels::quantize(sum, Z_scale, Z_zero_point); + Z[i * p + j] = kernels::quantize(sum, Z_scale, Z_zero_point); } } }