Skip to content
Snippets Groups Projects
Commit dbdda48f authored by Daniel Maier's avatar Daniel Maier
Browse files

gemm: fix typo

parent d9d2cae2
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ void calc_error(int ni, int nj,
double *test = &(C[0][0]);
/* calculate the mean squared error */
for (i = 0; i < ni*nj; i++)
for (i = 0; i < ni*nj; i++) {
err += (accurate[i] - test[i])*(accurate[i] - test[i]);
}
err /= ni*nj;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment