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

trmm: fix calc_error

parent 596d5f1b
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ void calc_error(int m, int n,
DATA_TYPE POLYBENCH_2D(B,M,N,m,n))
{
int i;
int n = m*n;
n = m*n; /* already passed as parameter */
double err = 0;
double *accurate = &_binary_data_bin_start;
double *test = &(B[0][0]);
......
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