Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpp/benchmarks/merge/merge_lists.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

void nvbench_merge_list(nvbench::state& state)
{
cuda::stream_ref stream;
cuda::stream_ref stream = cudf::get_default_stream();

auto const input1 = create_lists_data(state);
auto const sorted_input1 =
Expand Down
2 changes: 1 addition & 1 deletion cpp/benchmarks/merge/merge_structs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

void nvbench_merge_struct(nvbench::state& state)
{
cuda::stream_ref stream;
cuda::stream_ref stream = cudf::get_default_stream();

auto const input1 = create_structs_data(state);
auto const sorted_input1 =
Expand Down
Loading