Skip to content
Closed
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
3 changes: 3 additions & 0 deletions velox/experimental/cudf/exec/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ add_library(
CudfConversion.cpp
CudfFilterProject.cpp
CudfHashAggregation.cpp
DecimalAggregationKernels.cu
CudfHashJoin.cpp
CudfLimit.cpp
CudfLocalPartition.cpp
Expand All @@ -32,6 +33,8 @@ add_library(
VeloxCudfInterop.cpp
)

set_target_properties(velox_cudf_exec PROPERTIES CUDA_STANDARD 20 CUDA_STANDARD_REQUIRED ON)

target_link_libraries(
velox_cudf_exec
PUBLIC cudf::cudf
Expand Down
480 changes: 428 additions & 52 deletions velox/experimental/cudf/exec/CudfHashAggregation.cpp

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion velox/experimental/cudf/exec/CudfHashAggregation.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ class CudfHashAggregation : public exec::Operator, public NvtxHelper {

virtual void addGroupbyRequest(
cudf::table_view const& tbl,
std::vector<cudf::groupby::aggregation_request>& requests) = 0;
std::vector<cudf::groupby::aggregation_request>& requests,
rmm::cuda_stream_view stream) = 0;

virtual std::unique_ptr<cudf::column> doReduce(
cudf::table_view const& input,
Expand Down
Loading
Loading