Skip to content

Commit

Permalink
Fix compilation of benchmark for parquet writer. (#9905)
Browse files Browse the repository at this point in the history
This fixes a compilation error introduced in #9810. Tagging @devavret @vuule for review. Feel free to push to this PR with any fixes.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - Vukasin Milovanovic (https://github.com/vuule)
  - Nghia Truong (https://github.com/ttnghia)

URL: #9905
  • Loading branch information
bdice authored Dec 15, 2021
1 parent 44fce8b commit 3428f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/benchmarks/io/parquet/parquet_writer_benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void BM_parq_write_varying_options(benchmark::State& state)
cudf_io::parquet_writer_options::builder(source_sink.make_sink_info(), view)
.compression(compression)
.stats_level(enable_stats)
.column_chunks_file_path(file_path);
.column_chunks_file_paths({file_path});
cudf_io::write_parquet(options);
}

Expand Down

0 comments on commit 3428f7f

Please sign in to comment.