Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Oct 7, 2024
1 parent 7a7ad61 commit 9a7d432
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/groupby/hash/compute_single_pass_shmem_aggs.cu
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ __device__ void calculate_columns_to_aggregate(int& col_start,
}
}

__device__ void initialize_shared_memory_aggs(int col_start,
__device__ void initialize_shmem_aggregations(int col_start,
int col_end,
cudf::mutable_table_device_view output_values,
std::byte** s_aggregates_pointer,
Expand Down Expand Up @@ -190,7 +190,7 @@ CUDF_KERNEL void single_pass_shmem_aggs_kernel(cudf::size_type num_rows,
cardinality,
total_agg_size);
block.sync();
initialize_shared_memory_aggs(col_start,
initialize_shmem_aggregations(col_start,
col_end,
output_values,
s_aggregates_pointer,
Expand Down

0 comments on commit 9a7d432

Please sign in to comment.