Skip to content

Commit 08337ca

Browse files
committed
Align text output
1 parent 7d79aaf commit 08337ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/TestDefaultBitStream.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,9 @@ int testBitStreamSpeed1(const string& fileName)
304304
cout << written << " bits written (" << (written / 1024 / 1024 / 8) << " MB)" << endl;
305305
cout << read << " bits read (" << (read / 1024 / 1024 / 8) << " MB)" << endl;
306306
cout << endl;
307-
cout << "Write [ms] : " << (int)(delta1 / CLOCKS_PER_SEC * 1000) << endl;
307+
cout << "Write [ms] : " << (int)(delta1 / CLOCKS_PER_SEC * 1000) << endl;
308308
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;
310310
cout << "Throughput [MiB/s] : " << (int)((double)read / d / (delta2 / CLOCKS_PER_SEC)) << endl;
311311
return 0;
312312
}
@@ -648,9 +648,9 @@ int testBitStreamSpeed2(const string& fileName)
648648
cout << written << " bits written (" << (written / 1024 / 1024 / 8) << " MiB)" << endl;
649649
cout << read << " bits read (" << (read / 1024 / 1024 / 8) << " MiB)" << endl;
650650
cout << endl;
651-
cout << "Write [ms] : " << (int)(delta1 / CLOCKS_PER_SEC * 1000) << endl;
651+
cout << "Write [ms] : " << (int)(delta1 / CLOCKS_PER_SEC * 1000) << endl;
652652
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;
654654
cout << "Throughput [MiB/s] : " << (int)((double)read / d / (delta2 / CLOCKS_PER_SEC)) << endl;
655655

656656
delete[] input;

0 commit comments

Comments
 (0)