reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

utils/benchmark/src/json_reporter.cc
   70   out << "{\n";
   74   out << inner_indent << "\"context\": {\n";
   78   out << indent << FormatKV("date", walltime_value) << ",\n";
   81     out << indent << FormatKV("executable", Context::executable_name) << ",\n";
   85   out << indent << FormatKV("num_cpus", static_cast<int64_t>(info.num_cpus))
   87   out << indent
   91   out << indent << FormatKV("cpu_scaling_enabled", info.scaling_enabled)
   94   out << indent << "\"caches\": [\n";
   99     out << indent << "{\n";
  100     out << cache_indent << FormatKV("type", CI.type) << ",\n";
  101     out << cache_indent << FormatKV("level", static_cast<int64_t>(CI.level))
  103     out << cache_indent
  105     out << cache_indent
  108     out << indent << "}";
  109     if (i != info.caches.size() - 1) out << ",";
  110     out << "\n";
  113   out << indent << "],\n";
  120   out << indent << FormatKV("library_build_type", build_type) << "\n";
  122   out << inner_indent << "},\n";
  123   out << inner_indent << "\"benchmarks\": [\n";