MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / print_test_results

Method print_test_results

tests/framework/Framework.cpp:680–693  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

678}
679
680void Framework::print_test_results(Printer &printer) const
681{
682 printer.print_run_header();
683
684 for (const auto &test : _test_results)
685 {
686 printer.print_test_header(test.first);
687 printer.print_profiler_header(test.second.header_data);
688 printer.print_measurements(test.second.measurements);
689 printer.print_test_footer();
690 }
691
692 printer.print_run_footer();
693}
694
695Profiler Framework::get_profiler() const
696{

Callers

nothing calls this directly

Calls 6

print_run_headerMethod · 0.45
print_test_headerMethod · 0.45
print_profiler_headerMethod · 0.45
print_measurementsMethod · 0.45
print_test_footerMethod · 0.45
print_run_footerMethod · 0.45

Tested by

no test coverage detected