Skip to content

Ceil cuDSS to >=0.7,<0.8 - #1371

Merged
rapids-bot[bot] merged 2 commits into
release/26.06from
fix/cudss-pin-0.7
Jun 3, 2026
Merged

Ceil cuDSS to >=0.7,<0.8#1371
rapids-bot[bot] merged 2 commits into
release/26.06from
fix/cudss-pin-0.7

Conversation

@ramakrishnap-nv

@ramakrishnap-nv ramakrishnap-nv commented Jun 2, 2026

Copy link
Copy Markdown
Collaborator

cudss 0.8 had some speed-up regressions, so switching back to 0.7

Constrain cuDSS to the 0.7 series across the build and runtime
dependency declarations. Moves the version window down from 0.8:
dependencies.yaml (conda libcudss-dev, pip cu12/cu13) with regenerated
conda environments and pyproject.toml, the libcuopt conda recipe,
FindCUDSS.cmake (find_package 0.8 -> 0.7), and the wheel-build
install_cudss.sh pin.

The barrier sparse Cholesky code is unaffected: its 0.8-only calls are
guarded by CUDSS_VERSION_MINOR >= 8 with 0.7 fallbacks, so it compiles
cleanly against 0.7.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Signed-off-by: Ramakrishna Prabhu <ramakrishnap@nvidia.com>
@copy-pr-bot

copy-pr-bot Bot commented Jun 2, 2026

Copy link
Copy Markdown

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.

@ramakrishnap-nv
ramakrishnap-nv marked this pull request as ready for review June 2, 2026 21:42
@ramakrishnap-nv
ramakrishnap-nv requested review from a team as code owners June 2, 2026 21:42
@ramakrishnap-nv ramakrishnap-nv self-assigned this Jun 2, 2026
@ramakrishnap-nv ramakrishnap-nv added non-breaking Introduces a non-breaking change improvement Improves an existing functionality labels Jun 2, 2026
@coderabbitai

coderabbitai Bot commented Jun 2, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 2adfdb2f-2f66-442e-af0a-b2e9a2f6e1d3

📥 Commits

Reviewing files that changed from the base of the PR and between 623d82e and dd4ca57.

📒 Files selected for processing (1)
  • conda/recipes/libcuopt/recipe.yaml
🚧 Files skipped from review as they are similar to previous changes (1)
  • conda/recipes/libcuopt/recipe.yaml

📝 Walkthrough

Walkthrough

This PR lowers cuDSS version bounds from 0.8.x to 0.7.x across dependency manifests, conda environments and recipes, CMake discovery, CI install script, and Python packaging metadata.

Changes

cuDSS Version Downgrade

Layer / File(s) Summary
Central dependency specification
dependencies.yaml
Central dependency manifest pins libcudss-dev to >=0.7,<0.8 and adjusts nvidia-cudss-cu12/nvidia-cudss-cu13 wheel requirements to >=0.7,<0.8.
Conda environments and libcuopt recipe
conda/environments/all_cuda-*_arch-*.yaml, conda/recipes/libcuopt/recipe.yaml
Four conda environment files and multiple host/run entries in the libcuopt recipe updated to depend on libcudss-dev >=0.7,<0.8 (and libcudss >=0.7,<0.8 for run).
CMake build system integration
cpp/cmake/thirdparty/FindCUDSS.cmake
Fallback find_package(cudss ...) requirement lowered to request cudss >= 0.7 instead of >= 0.8.
CI and system installation
ci/utils/install_cudss.sh
Installation script now pins dnf package globs and apt libcudss-devel constraint to 0.7.* instead of 0.8.*.
Python project dependencies
python/libcuopt/pyproject.toml
Project dependency nvidia-cudss-cu13 changed to >=0.7,<0.8.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Possibly related PRs

  • NVIDIA/cuopt#1367: Modifies the same cuDSS version-pinning points but with opposite version bounds (0.8.x vs 0.7.x).
  • NVIDIA/cuopt#1365: Changes the same cuDSS pin locations across conda, CI script, and CMake with different target version.
  • NVIDIA/cuopt#1360: Overlaps on ci/utils/install_cudss.sh and related install pinning for the 0.7.* series.

Suggested reviewers

  • bdice
  • msarahan
  • tmckayus
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the primary change: pinning cuDSS version bounds to >=0.7,<0.8 across all build and runtime dependency specifications.
Description check ✅ Passed The description is directly related to the changeset, explaining the reason for the version constraint change (reverting 0.8 due to speed-up regressions).
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/cudss-pin-0.7

Comment @coderabbitai help to get the list of available commands and usage tips.

@ramakrishnap-nv ramakrishnap-nv added this to the 26.06 milestone Jun 2, 2026
The libcuopt conda recipe listed `libcudss` as a bare run dependency
and ignored its run-export, so the host pin (libcudss-dev >=0.7,<0.8)
constrained only the build. The conda-python-tests environment, which
does not include the `cuda` dependency group, then resolved libcudss to
the newest channel build (0.8) transitively via libcuopt, breaking
against the 0.7-built binary. Pin the run dep so the ceiling propagates.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Signed-off-by: Ramakrishna Prabhu <ramakrishnap@nvidia.com>
@ramakrishnap-nv

Copy link
Copy Markdown
Collaborator Author

/merge

@rapids-bot
rapids-bot Bot merged commit 029d27e into release/26.06 Jun 3, 2026
99 checks passed
ramakrishnap-nv added a commit that referenced this pull request Jun 3, 2026
My previous commit changed it to 2025 via a verify-copyright misfire in a
detached-HEAD worktree (no resolvable target branch). The file is modified in
this branch (and in 2026 via #1365/#1371), so 2025-2026 is correct; restore it.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Signed-off-by: Ramakrishna Prabhu <ramakrishnap@nvidia.com>
@ramakrishnap-nv
ramakrishnap-nv deleted the fix/cudss-pin-0.7 branch July 9, 2026 18:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

improvement Improves an existing functionality non-breaking Introduces a non-breaking change

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants