Open
Conversation
[RELEASE] v0.19 cucim
[RELEASE] cucim v21.06
REL Fix `21.06` Release Changelog
[RELEASE] cucim v21.08
[RELEASE] cucim v21.08.01
[RELEASE] cucim v21.12
[RELEASE] cucim v22.02
[RELEASE] cucim v22.04
[RELEASE] cucim v22.06
[RELEASE] cucim v22.08
[RELEASE] cucim v22.08.01
[RELEASE] cucim v22.12
[RELEASE] cucim v23.04
[RELEASE] cucim v23.12
[RELEASE] Fix for v23.12.00
[HOTFIX] v23.12.01
[RELEASE] cucim v24.04
[RELEASE] cucim v24.06
[RELEASE] cucim v24.10
## ❄️ Code freeze for `branch-24.12` and v24.12 release ### What does this mean? Only critical/hotfix level issues should be merged into `branch-24.12` until release (merging of this PR). ### What is the purpose of this PR? - Update documentation - Allow testing for the new release - Enable a means to merge `branch-24.12` into `main` for the release --------- Co-authored-by: Ray Douglass <ray@raydouglass.com> Co-authored-by: Gregory Lee <grlee77@gmail.com> Co-authored-by: James Lamb <jlamb@nvidia.com>
[RELEASE] v24.12.00
Remove cuda-cudart from run requirements in conda recipes since static linking embeds the runtime into binaries.
Member
|
Thanks Bradley! 🙏 The commit history is pulling in a bunch of old commits from past releases. Could we please rebase this? |
14 tasks
robertmaynard
requested changes
Dec 9, 2025
Contributor
robertmaynard
left a comment
There was a problem hiding this comment.
Locations we directly link to shared cudart:
cpp/CMakeLists.txt: CUDA::cudart
cpp/plugins/cucim.kit.cumed/CMakeLists.txt: CUDA::cudart
cpp/plugins/cucim.kit.cuslide/CMakeLists.txt: CUDA::cudart
cpp/plugins/cucim.kit.cuslide/CMakeLists.txt: CUDA::cudart
cpp/plugins/cucim.kit.cuslide/tests/CMakeLists.txt: CUDA::cudart
cpp/plugins/cucim.kit.cuslide2/CMakeLists.txt: CUDA::cudart
cpp/plugins/cucim.kit.cuslide2/CMakeLists.txt: CUDA::cudart
cpp/plugins/cucim.kit.cuslide2/tests/CMakeLists.txt: CUDA::cudart
cpp/tests/CMakeLists.txt: CUDA::cudart
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.
Summary
cuda-cudartfrom run requirements in conda recipesWith static linking of the CUDA runtime (the default for C++ and Python packages), the runtime is embedded in the binaries and the
cuda-cudartpackage is not needed at runtime.Part of rapidsai/build-planning#235