Skip to content

Commit

Permalink
made udf transform benchmark run on provided stream
Browse files Browse the repository at this point in the history
  • Loading branch information
lamarrr committed Jan 9, 2025
1 parent bc1528d commit 578a56f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cpp/benchmarks/transform/polynomials.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ __device__ inline void fdsf (
}
)***";

cudf::transform(column_view, udf, cudf::data_type{cudf::type_to_id<key_type>()}, false);
cudf::transform(column_view,
udf,
cudf::data_type{cudf::type_to_id<key_type>()},
false,
launch.get_stream().get_stream());
});
}

Expand Down

0 comments on commit 578a56f

Please sign in to comment.