mirror of
https://github.com/NVIDIA/nvbench.git
synced 2026-04-20 14:58:54 +00:00
s/csv_format/csv_printer/g
This commit is contained in:
@@ -4,7 +4,7 @@ set(srcs
|
||||
benchmark_base.cu
|
||||
benchmark_manager.cu
|
||||
blocking_kernel.cu
|
||||
csv_format.cu
|
||||
csv_printer.cu
|
||||
cuda_call.cu
|
||||
device_info.cu
|
||||
device_manager.cu
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <nvbench/csv_format.cuh>
|
||||
#include <nvbench/csv_printer.cuh>
|
||||
|
||||
#include <nvbench/axes_metadata.cuh>
|
||||
#include <nvbench/benchmark_base.cuh>
|
||||
@@ -18,7 +18,7 @@
|
||||
namespace nvbench
|
||||
{
|
||||
|
||||
void csv_format::do_print_benchmark_results(const benchmark_vector &benches)
|
||||
void csv_printer::do_print_benchmark_results(const benchmark_vector &benches)
|
||||
{
|
||||
auto format_visitor = [](const auto &v) {
|
||||
using T = std::decay_t<decltype(v)>;
|
||||
@@ -8,7 +8,7 @@ namespace nvbench
|
||||
/*!
|
||||
* CSV output format.
|
||||
*/
|
||||
struct csv_format : nvbench::printer_base
|
||||
struct csv_printer : nvbench::printer_base
|
||||
{
|
||||
using printer_base::printer_base;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
#include <nvbench/benchmark_base.cuh>
|
||||
#include <nvbench/benchmark_manager.cuh>
|
||||
#include <nvbench/csv_format.cuh>
|
||||
#include <nvbench/csv_printer.cuh>
|
||||
#include <nvbench/markdown_printer.cuh>
|
||||
#include <nvbench/printer_base.cuh>
|
||||
#include <nvbench/range.cuh>
|
||||
@@ -432,7 +432,7 @@ void option_parser::add_csv_format(const std::string &spec)
|
||||
try
|
||||
{
|
||||
std::ostream &stream = this->output_format_spec_to_ostream(spec);
|
||||
m_printer.emplace<nvbench::csv_format>(stream);
|
||||
m_printer.emplace<nvbench::csv_printer>(stream);
|
||||
}
|
||||
catch (std::exception &e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user