Skip to content

Commit 7bc1a62

Browse files
committed
[bench] More exact size display
1 parent b81d9b7 commit 7bc1a62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/websockets-throughput.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function runSet(set, callback) {
7272
}
7373

7474
var mb = (set.size * set.count) / (1024 * 1024);
75-
console.log(mb + ' MB');
75+
console.log(set.size / (1024) + ' KB * ' + set.count + ' (' + mb + ' MB)');
7676

7777
Object.keys(results).forEach(function (key) {
7878
var t = results[key],

0 commit comments

Comments
 (0)