From 157f63ed4ada7dd5057847ce24b4e1252f7f97b3 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 9 Dec 2024 08:03:47 -0800 Subject: [PATCH] fix CI configs, remove unnecessary stuff from pylibcugraph CMake --- .github/workflows/pr.yaml | 6 ------ python/libcugraph/CMakeLists.txt | 2 -- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index bc2434a5d9..170aa2bfc6 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -153,9 +153,6 @@ jobs: with: build_type: pull-request script: ci/build_wheel_pylibcugraph.sh - # build for every combination of arch and CUDA version, but only for the latest Python - # TODO: remove this before merging - matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber))) # wheel-tests-pylibcugraph: # needs: [wheel-build-pylibcugraph, changed-files] # secrets: inherit @@ -171,9 +168,6 @@ jobs: with: build_type: pull-request script: ci/build_wheel_cugraph.sh - # build for every combination of arch and CUDA version, but only for the latest Python - # TODO: remove this before merging - matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber))) wheel-tests-cugraph: needs: [wheel-build-cugraph, changed-files] secrets: inherit diff --git a/python/libcugraph/CMakeLists.txt b/python/libcugraph/CMakeLists.txt index 545b490e14..9624d0bcb9 100644 --- a/python/libcugraph/CMakeLists.txt +++ b/python/libcugraph/CMakeLists.txt @@ -22,8 +22,6 @@ project( LANGUAGES CXX ) -option(USE_NVCOMP_RUNTIME_WHEEL "Use the nvcomp wheel at runtime instead of the system library" OFF) - # Check if cugraph is already available. If so, it is the user's responsibility to ensure that the # CMake package is also available at build time of the Python cugraph package. find_package(cugraph "${RAPIDS_VERSION}")