Ginkgo  Generated from pipelines/1330831941 branch based on master. Ginkgo version 1.8.0
A numerical linear algebra library targeting many-core architectures
Public Member Functions | List of all members
gko::log::ProfilerHook::TableSummaryWriter Class Reference

Writes the results from ProfilerHook::create_summary() and ProfilerHook::create_nested_summary() to a ASCII table in Markdown format. More...

#include <ginkgo/core/log/profiler_hook.hpp>

Inheritance diagram for gko::log::ProfilerHook::TableSummaryWriter:
[legend]
Collaboration diagram for gko::log::ProfilerHook::TableSummaryWriter:
[legend]

Public Member Functions

 TableSummaryWriter (std::ostream &output=std::cerr, std::string header="Runtime summary")
 Constructs a writer on an output stream. More...
 
void write (const std::vector< summary_entry > &entries, std::chrono::nanoseconds overhead) override
 Callback to write out the summary results. More...
 
void write_nested (const nested_summary_entry &root, std::chrono::nanoseconds overhead) override
 Callback to write out the summary results. More...
 

Detailed Description

Writes the results from ProfilerHook::create_summary() and ProfilerHook::create_nested_summary() to a ASCII table in Markdown format.

Constructor & Destructor Documentation

◆ TableSummaryWriter()

gko::log::ProfilerHook::TableSummaryWriter::TableSummaryWriter ( std::ostream &  output = std::cerr,
std::string  header = "Runtime summary" 
)

Constructs a writer on an output stream.

Parameters
outputthe output stream to write the table to.
headerthe header to write above the table.

Member Function Documentation

◆ write()

void gko::log::ProfilerHook::TableSummaryWriter::write ( const std::vector< summary_entry > &  entries,
std::chrono::nanoseconds  overhead 
)
overridevirtual

Callback to write out the summary results.

Parameters
entriesthe vector of ranges with runtime and count.
overheadan estimate of the profiler overhead

Implements gko::log::ProfilerHook::SummaryWriter.

◆ write_nested()

void gko::log::ProfilerHook::TableSummaryWriter::write_nested ( const nested_summary_entry root,
std::chrono::nanoseconds  overhead 
)
overridevirtual

Callback to write out the summary results.

Parameters
rootthe root range with runtime and count.
overheadan estimate of the profiler overhead

Implements gko::log::ProfilerHook::NestedSummaryWriter.


The documentation for this class was generated from the following file: