From 3d2f01d010e2189041a30bf90c7181d4af69f881 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Wed, 17 Jan 2024 13:50:13 -0500 Subject: [PATCH] Verify all thrust/cub kernels are hidden when using patch --- .github/workflows/pr.yaml | 2 +- .github/workflows/test.yaml | 2 +- fetch_rapids.cmake | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 0cc731ca622..37fc2870d4f 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -58,7 +58,7 @@ jobs: with: build_type: pull-request enable_check_symbols: true - symbol_exclusions: (hornet|void writeEdgeCountsKernel|void markUniqueOffsetsKernel) + symbol_exclusions: (cugraph::ops|hornet|void writeEdgeCountsKernel|void markUniqueOffsetsKernel) conda-python-build: needs: conda-cpp-build secrets: inherit diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 4d467656cc4..206c4178ca7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,7 +23,7 @@ jobs: date: ${{ inputs.date }} sha: ${{ inputs.sha }} enable_check_symbols: true - symbol_exclusions: (hornet|void writeEdgeCountsKernel|void markUniqueOffsetsKernel) + symbol_exclusions: (cugraph::ops|hornet|void writeEdgeCountsKernel|void markUniqueOffsetsKernel) conda-cpp-tests: secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.02 diff --git a/fetch_rapids.cmake b/fetch_rapids.cmake index 1f099e8f85f..2b1262c50e1 100644 --- a/fetch_rapids.cmake +++ b/fetch_rapids.cmake @@ -1,5 +1,5 @@ # ============================================================================= -# Copyright (c) 2022-2023, NVIDIA CORPORATION. +# Copyright (c) 2022-2024, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at @@ -16,4 +16,6 @@ if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/CUGRAPH_RAPIDS.cmake) ${CMAKE_CURRENT_BINARY_DIR}/CUGRAPH_RAPIDS.cmake ) endif() +set(rapids-cmake-repo robertmaynard/rapids-cmake) +set(rapids-cmake-branch bug/mark_cccl_cuco_kernels_as_hidden) include(${CMAKE_CURRENT_BINARY_DIR}/CUGRAPH_RAPIDS.cmake)