Skip to content

Commit

Permalink
add STATISTICS_COLUMN to benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
etseidl committed Oct 20, 2022
1 parent 536ddd0 commit 84b8bdc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cpp/benchmarks/io/parquet/parquet_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ NVBENCH_DECLARE_ENUM_TYPE_STRINGS(
case cudf::io::statistics_freq::STATISTICS_NONE: return "STATISTICS_NONE";
case cudf::io::statistics_freq::STATISTICS_ROWGROUP: return "STATISTICS_ROWGROUP";
case cudf::io::statistics_freq::STATISTICS_PAGE: return "STATISTICS_PAGE";
case cudf::io::statistics_freq::STATISTICS_COLUMN: return "STATISTICS_COLUMN";
default: return "Unknown";
}
},
Expand Down Expand Up @@ -201,6 +202,7 @@ using compression_list =

using stats_list = nvbench::enum_type_list<cudf::io::STATISTICS_NONE,
cudf::io::STATISTICS_ROWGROUP,
cudf::io::STATISTICS_COLUMN,
cudf::io::STATISTICS_PAGE>;

NVBENCH_BENCH_TYPES(BM_parq_write_encode, NVBENCH_TYPE_AXES(d_type_list))
Expand Down

0 comments on commit 84b8bdc

Please sign in to comment.