File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -304,9 +304,9 @@ int testBitStreamSpeed1(const string& fileName)
304
304
cout << written << " bits written (" << (written / 1024 / 1024 / 8 ) << " MB)" << endl;
305
305
cout << read << " bits read (" << (read / 1024 / 1024 / 8 ) << " MB)" << endl;
306
306
cout << endl;
307
- cout << " Write [ms] : " << (int )(delta1 / CLOCKS_PER_SEC * 1000 ) << endl;
307
+ cout << " Write [ms] : " << (int )(delta1 / CLOCKS_PER_SEC * 1000 ) << endl;
308
308
cout << " Throughput [MiB/s] : " << (int )((double )written / d / (delta1 / CLOCKS_PER_SEC)) << endl;
309
- cout << " Read [ms] : " << (int )(delta2 / CLOCKS_PER_SEC * 1000 ) << endl;
309
+ cout << " Read [ms] : " << (int )(delta2 / CLOCKS_PER_SEC * 1000 ) << endl;
310
310
cout << " Throughput [MiB/s] : " << (int )((double )read / d / (delta2 / CLOCKS_PER_SEC)) << endl;
311
311
return 0 ;
312
312
}
@@ -648,9 +648,9 @@ int testBitStreamSpeed2(const string& fileName)
648
648
cout << written << " bits written (" << (written / 1024 / 1024 / 8 ) << " MiB)" << endl;
649
649
cout << read << " bits read (" << (read / 1024 / 1024 / 8 ) << " MiB)" << endl;
650
650
cout << endl;
651
- cout << " Write [ms] : " << (int )(delta1 / CLOCKS_PER_SEC * 1000 ) << endl;
651
+ cout << " Write [ms] : " << (int )(delta1 / CLOCKS_PER_SEC * 1000 ) << endl;
652
652
cout << " Throughput [MiB/s] : " << (int )((double )written / d / (delta1 / CLOCKS_PER_SEC)) << endl;
653
- cout << " Read [ms] : " << (int )(delta2 / CLOCKS_PER_SEC * 1000 ) << endl;
653
+ cout << " Read [ms] : " << (int )(delta2 / CLOCKS_PER_SEC * 1000 ) << endl;
654
654
cout << " Throughput [MiB/s] : " << (int )((double )read / d / (delta2 / CLOCKS_PER_SEC)) << endl;
655
655
656
656
delete[] input;
You can’t perform that action at this time.
0 commit comments