Skip to content

Commit 047dfb2

Browse files
authored
Merge pull request #2501 from jijiwawa/Fix_mistakes
Fix pr #2487 error
2 parents 51019fe + cd8871f commit 047dfb2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

benchmark/spr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ int main(int argc, char *argv[]){
187187
timeg /= loops;
188188

189189
fprintf(stderr,
190-
" %10.2f MBytes %10.6f sec\n",
190+
" %10.2f MFlops %10.6f sec\n",
191191
COMPSIZE * COMPSIZE * 1. * (double)m * (double)m / timeg * 1.e-6, timeg);
192192

193193
}

benchmark/spr2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ int main(int argc, char *argv[]){
196196
timeg /= loops;
197197

198198
fprintf(stderr,
199-
" %10.2f MBytes %10.6f sec\n",
199+
" %10.2f MFlops %10.6f sec\n",
200200
COMPSIZE * COMPSIZE * 2. * (double)m * (double)m / timeg * 1.e-6, timeg);
201201

202202
}

0 commit comments

Comments
 (0)