From 2daca3f536a847d25de7edc6555bd824d704df2f Mon Sep 17 00:00:00 2001 From: Chong Gao Date: Tue, 19 Nov 2024 17:18:01 +0800 Subject: [PATCH] Fix --- src/main/cpp/src/HLLPP.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cpp/src/HLLPP.cu b/src/main/cpp/src/HLLPP.cu index 439b9e1706..ca35e77861 100644 --- a/src/main/cpp/src/HLLPP.cu +++ b/src/main/cpp/src/HLLPP.cu @@ -84,7 +84,7 @@ std::unique_ptr estimate_from_hll_sketches(cudf::column_view const rmm::cuda_stream_view stream, rmm::device_async_resource_ref mr) { - CUDF_EXPECTS(precision >= 4 && precision <= 18, "HLL++ requires precision in range: [4, 18]"); + 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(); }); auto input_cols = std::vector(input_iter, input_iter + input.num_children());