Skip to content

Commit

Permalink
Format code; Remove a useless file
Browse files Browse the repository at this point in the history
  • Loading branch information
Chong Gao committed Nov 26, 2024
1 parent 3afdfde commit c7da8ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/main/cpp/compile_commands.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/cpp/src/HLLPP.cu
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ std::unique_ptr<cudf::column> estimate_from_hll_sketches(cudf::column_view const
rmm::cuda_stream_view stream,
rmm::device_async_resource_ref mr)
{
CUDF_EXPECTS(precision >= 4 , "HyperLogLogPlusPlus requires precision is bigger than 4.");
CUDF_EXPECTS(precision >= 4, "HyperLogLogPlusPlus requires precision is bigger than 4.");
auto const input_iter = cudf::detail::make_counting_transform_iterator(
0, [&](int i) { return input.child(i).begin<int64_t>(); });
auto input_cols = std::vector<int64_t const*>(input_iter, input_iter + input.num_children());
Expand Down

0 comments on commit c7da8ed

Please sign in to comment.