s/csv_format/csv_printer/g

This commit is contained in:
Allison Vacanti
2021-03-02 17:10:09 -05:00
parent 015b8d1fb1
commit 9d2194f2ab
4 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -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)>;

View File

@@ -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;

View File

@@ -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)
{