Add time prints in benchmark output

This commit is contained in:
Ashwin Sekhar T K
2016-07-14 13:48:13 +05:30
parent 925d4e1dc6
commit 8d86d14d3f
10 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -190,8 +190,8 @@ int main(int argc, char *argv[]){
timeg /= loops;
fprintf(stderr,
" %10.2f MBytes\n",
COMPSIZE * sizeof(FLOAT) * 1. * (double)m / timeg * 1.e-6);
" %10.2f MBytes %10.6f sec\n",
COMPSIZE * sizeof(FLOAT) * 1. * (double)m / timeg * 1.e-6, timeg);
}