Commit cf446a18 by András Leitereg Committed by Roman Lebedev

Remove superfluous cache line scaling in JSON reporter. (#896)

Cache size is already stored in bytes.
parent d16ae64e
...@@ -135,7 +135,7 @@ bool JSONReporter::ReportContext(const Context& context) { ...@@ -135,7 +135,7 @@ bool JSONReporter::ReportContext(const Context& context) {
out << cache_indent << FormatKV("level", static_cast<int64_t>(CI.level)) out << cache_indent << FormatKV("level", static_cast<int64_t>(CI.level))
<< ",\n"; << ",\n";
out << cache_indent out << cache_indent
<< FormatKV("size", static_cast<int64_t>(CI.size) * 1000u) << ",\n"; << FormatKV("size", static_cast<int64_t>(CI.size)) << ",\n";
out << cache_indent out << cache_indent
<< FormatKV("num_sharing", static_cast<int64_t>(CI.num_sharing)) << FormatKV("num_sharing", static_cast<int64_t>(CI.num_sharing))
<< "\n"; << "\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment