From dcf8292626c0129efde6143c936a4e6e631779db Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Fri, 1 Nov 2024 08:14:20 -0500 Subject: [PATCH 1/2] Build with CCCL 2.7.0-rc2. --- rapids_config.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rapids_config.cmake b/rapids_config.cmake index 50b1054b7b9..c99e1cf386b 100644 --- a/rapids_config.cmake +++ b/rapids_config.cmake @@ -11,6 +11,10 @@ # or implied. See the License for the specific language governing permissions and limitations under # the License. # ============================================================================= + +set(rapids-cmake-repo bdice/rapids-cmake) +set(rapids-cmake-branch cccl-2.7.0-rc2) + file(READ "${CMAKE_CURRENT_LIST_DIR}/VERSION" _rapids_version) if(_rapids_version MATCHES [[^([0-9][0-9])\.([0-9][0-9])\.([0-9][0-9])]]) set(RAPIDS_VERSION_MAJOR "${CMAKE_MATCH_1}") From 0c2b6b068a9da8793fe379e42e2b2913a1d423e7 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 3 Dec 2024 23:12:00 -0600 Subject: [PATCH 2/2] Update comparator type to avoid references. --- cpp/libcugraph_etl/src/renumbering.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/libcugraph_etl/src/renumbering.cu b/cpp/libcugraph_etl/src/renumbering.cu index a2a20d5b2dc..0d47fad8000 100644 --- a/cpp/libcugraph_etl/src/renumbering.cu +++ b/cpp/libcugraph_etl/src/renumbering.cu @@ -730,7 +730,7 @@ __global__ static void select_unrenumber_string(str_hash_value* idx_to_col_row, } struct struct_sort_descending { - __host__ __device__ bool operator()(str_hash_value& a, str_hash_value& b) + __host__ __device__ bool operator()(str_hash_value a, str_hash_value b) { return (a.count_ > b.count_); }