enforce a floor on libnvjitlink, build wheels with CUDA 13.0.x, test wheels against mix of CTK versions#1862
Merged
rapids-bot[bot] merged 31 commits intorapidsai:release/26.04from Mar 19, 2026
Conversation
|
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
30 tasks
25 tasks
Member
Author
|
/ok to test |
jameslamb
commented
Mar 18, 2026
| - nccl | ||
| - if: cuda_major == "13" | ||
| then: | ||
| - libnvjitlink |
Member
Author
There was a problem hiding this comment.
Just added this, per this conversation w/ @bdice : rapidsai/cudf#21671 (comment)
Having libnvjitlink-dev in the host: environment should get these packages the correct run: dependency via run_exports.
gforsyth
approved these changes
Mar 19, 2026
Contributor
gforsyth
left a comment
There was a problem hiding this comment.
![]()
Confirming that libnvjitlink shows up via the run exports of the libnvjitlink-dev
│ │ Finalized run dependencies (libcuvs-headers-26.04.00a124-cuda13_260319_ade1af6a):
│ │ ╭──────────────────┬──────────────────────────────────────────────────────────╮
│ │ │ Name ┆ Spec │
│ │ ╞══════════════════╪══════════════════════════════════════════════════════════╡
│ │ │ Run dependencies ┆ │
│ │ │ __glibc ┆ >=2.28,<3.0.a0 (RE of [build: sysroot_linux-64]) │
│ │ │ ┆ >=2.28,<3.0.a0 (RE of [cache-build: sysroot_linux-64]) │
│ │ │ cuda-cudart ┆ * │
│ │ │ cuda-version ┆ >=13,<14.0a0 (PC) │
│ │ │ libcublas ┆ * │
│ │ │ libcurand ┆ * │
│ │ │ libcusolver ┆ * │
│ │ │ libcusparse ┆ * │
│ │ │ libgcc ┆ >=14 (RE of [cache-build: gcc_linux-64]) │
│ │ │ ┆ >=14 (RE of [cache-build: gxx_linux-64]) │
│ │ │ libnvjitlink ┆ >=13.2.51,<14.0a0 (RE of [host: libnvjitlink-dev]) │
│ │ │ ┆ >=13.2.51,<14.0a0 (RE of [cache-host: libnvjitlink-dev]) │
│ │ │ libraft-headers ┆ 26.4.* │
│ │ │ librmm ┆ 26.4.* │
│ │ │ libstdcxx ┆ >=14 (RE of [cache-build: gxx_linux-64]) │
│ │ │ nccl ┆ * │
│ │ ╰──────────────────┴──────────────────────────────────────────────────────────╯
Contributor
|
/merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The changes from #1405 introduced linking against nvJitLink. nvJitLink has versioned symbols that are added in each new CTK release, and some of those are exposed in
libcuvs.so.libcuvswheels are built against the latest CTK supported in RAPIDS (CUDA 13.1.1 as of this writing), so when those wheels are used in environments with older nvJitLink, runtime errors like this can happen:For more details, see rapidsai/cugraph#5443
This tries to fix that.
Contributes to rapidsai/build-planning#257
nvidia-nvjitlink>={whatever-minor-version-they-were-built-against}Contributes to rapidsai/build-planning#256
Other changes
libnvjitlink>={whatever-minor-version-they-were-built-against}Notes for Reviewers
How I tested this
This uses wheels from similar PRs from RAPIDS dependencies, at build and test time:
Other Options