Skip to content

Commit 7bc1a62

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmark/websockets-throughput.js

Lines changed: 1 addition & 1 deletion
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)