From 0f112524870734d784c7e6624a02f5af46a0b313 Mon Sep 17 00:00:00 2001 From: ustcfy <96854327+ustcfy@users.noreply.github.com> Date: Wed, 6 Nov 2024 14:57:57 +0800 Subject: [PATCH] Update src/main/cpp/src/xxhash64.cu Co-authored-by: Chong Gao --- src/main/cpp/src/xxhash64.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cpp/src/xxhash64.cu b/src/main/cpp/src/xxhash64.cu index d9e3995591..8de2a103fd 100644 --- a/src/main/cpp/src/xxhash64.cu +++ b/src/main/cpp/src/xxhash64.cu @@ -381,7 +381,7 @@ class device_row_hasher { __device__ col_stack_element(cudf::column_device_view col) : column(col), child_idx(0) {} - __device__ int child_idx_inc_one() { return this->child_idx++; } + __device__ int get_and_inc_child_idx() { return this->child_idx++; } __device__ int cur_child_idx() { return this->child_idx; }