We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 967758d commit 3a2bd9bCopy full SHA for 3a2bd9b
src/coro_rpc/benchmark/bench.cpp
@@ -101,7 +101,8 @@ async_simple::coro::Lazy<std::error_code> request(const bench_config& conf) {
101
auto end = std::chrono::system_clock::now();
102
auto dur = (end - start) / std::chrono::milliseconds(1);
103
double val = (8.0 * c * 1000) / (1000'000'000ll * dur);
104
- std::cout << "Throughput:" << val << " Gb/s\n";
+ std::cout << "qps " << c / conf.data_len << ", Throughput:" << val
105
+ << " Gb/s\n";
106
}
107
108
0 commit comments