File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ void BM_NESTED_JSON(nvbench::state& state)
65
65
cudf::rmm_pool_raii rmm_pool;
66
66
67
67
auto const string_size{size_type (state.get_int64 (" string_size" ))};
68
+ auto const default_options = cudf::io::json_reader_options{};
68
69
69
70
auto input = make_test_json_data (string_size, cudf::default_stream_value);
70
71
state.add_element_count (input.size ());
@@ -73,7 +74,7 @@ void BM_NESTED_JSON(nvbench::state& state)
73
74
state.set_cuda_stream (nvbench::make_cuda_stream_view (cudf::default_stream_value.value ()));
74
75
state.exec (nvbench::exec_tag::sync , [&](nvbench::launch& launch) {
75
76
// Allocate device-side temporary storage & run algorithm
76
- cudf::io::json::detail::parse_nested_json (input, cudf::default_stream_value);
77
+ cudf::io::json::detail::parse_nested_json (input, default_options, cudf::default_stream_value);
77
78
});
78
79
}
79
80
You can’t perform that action at this time.
0 commit comments