From 75b619f416f1049866b6036b31e1fcda2b5df9ad Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 23 Jan 2023 18:52:08 -0600 Subject: [PATCH] Update cuhornet to fix `using namespace rmm;`. (#3171) Updates cuhornet to include these fixes: - https://github.com/rapidsai/cuhornet/pull/60 - https://github.com/rapidsai/cuhornet/pull/61 Needed to unblock `spdlog` / `fmt` changes in `rapids-cmake` and `rmm`. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Chuck Hastings (https://github.com/ChuckHastings) URL: https://github.com/rapidsai/cugraph/pull/3171 --- cpp/cmake/thirdparty/get_cuhornet.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/cmake/thirdparty/get_cuhornet.cmake b/cpp/cmake/thirdparty/get_cuhornet.cmake index c2d3d8631cb..d6dc817d78f 100644 --- a/cpp/cmake/thirdparty/get_cuhornet.cmake +++ b/cpp/cmake/thirdparty/get_cuhornet.cmake @@ -1,5 +1,5 @@ #============================================================================= -# Copyright (c) 2021-2022, NVIDIA CORPORATION. +# Copyright (c) 2021-2023, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -21,7 +21,7 @@ function(find_and_configure_cuhornet) FetchContent_Declare( cuhornet GIT_REPOSITORY https://github.com/rapidsai/cuhornet.git - GIT_TAG a11519016ce791239dc019615f3cffac6560534b + GIT_TAG 17467c88abe2b76df456614575c02f7e9cbfd02d SOURCE_SUBDIR hornet ) FetchContent_GetProperties(cuhornet)