Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/branch-25.02' into branch-24.1…
Browse files Browse the repository at this point in the history
…2_optimize-ktruss
  • Loading branch information
jnke2016 committed Jan 22, 2025
2 parents fcf5ca4 + 079f555 commit aa748c1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ jobs:
with:
build_type: pull-request
script: ci/test_wheel_pylibcugraph.sh
# CUDA 11 wheel CI is disabled until
# https://github.com/rapidsai/build-planning/issues/137 is resolved.
matrix_filter: map(select(.CUDA_VER | startswith("11") | not))
wheel-build-cugraph:
needs: wheel-build-pylibcugraph
secrets: inherit
Expand All @@ -189,6 +192,9 @@ jobs:
with:
build_type: pull-request
script: ci/test_wheel_cugraph.sh
# CUDA 11 wheel CI is disabled until
# https://github.com/rapidsai/build-planning/issues/137 is resolved.
matrix_filter: map(select(.CUDA_VER | startswith("11") | not))
devcontainer:
secrets: inherit
needs: telemetry-setup
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ jobs:
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
script: ci/test_wheel_pylibcugraph.sh
# CUDA 11 wheel CI is disabled until
# https://github.com/rapidsai/build-planning/issues/137 is resolved.
matrix_filter: map(select(.CUDA_VER | startswith("11") | not))
wheel-tests-cugraph:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
Expand All @@ -58,3 +61,6 @@ jobs:
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
script: ci/test_wheel_cugraph.sh
# CUDA 11 wheel CI is disabled until
# https://github.com/rapidsai/build-planning/issues/137 is resolved.
matrix_filter: map(select(.CUDA_VER | startswith("11") | not))
12 changes: 6 additions & 6 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ EXCLUDE_ARGS=(
# 'libraft' wheels are responsible for carrying a runtime dependency on
# these based on RAFT's needs.
EXCLUDE_ARGS+=(
--exclude "libcublas.so.12"
--exclude "libcublasLt.so.12"
--exclude "libcurand.so.10"
--exclude "libcusolver.so.11"
--exclude "libcusparse.so.12"
--exclude "libnvJitLink.so.12"
--exclude "libcublas.so.*"
--exclude "libcublasLt.so.*"
--exclude "libcurand.so.*"
--exclude "libcusolver.so.*"
--exclude "libcusparse.so.*"
--exclude "libnvJitLink.so.*"
)

if [[ "${package_dir}" != "python/libcugraph" ]]; then
Expand Down

0 comments on commit aa748c1

Please sign in to comment.