-
Notifications
You must be signed in to change notification settings - Fork 43
Bump base image and dependencies for KDA support #404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,5 +1,5 @@ | ||||||||
| # syntax=docker/dockerfile:1.7-labs | ||||||||
| FROM nvcr.io/nvidia/pytorch:25.05-py3 | ||||||||
| FROM nvcr.io/nvidia/pytorch:25.11-py3 | ||||||||
|
|
||||||||
| # Install dependencies. | ||||||||
| RUN apt-get update \ | ||||||||
|
|
@@ -29,16 +29,17 @@ ENV PIP_CONSTRAINT="" | |||||||
| # There is no pre-build mamba image for pytorch 2.8, we build it before the rest to avoid rebuilds. | ||||||||
| # We need to compile from the repo because of https://github.com/state-spaces/mamba/issues/720 (same for causal-conv1d) | ||||||||
|
||||||||
| # We need to compile from the repo because of https://github.com/state-spaces/mamba/issues/720 (same for causal-conv1d) | |
| # We need to compile causal-conv1d from the repo because of https://github.com/state-spaces/mamba/issues/720. | |
| # mamba-ssm is now installed from PyPI. |
Copilot
AI
Dec 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Package name inconsistency: This line uses mamba-ssm (with hyphen) while setup.cfg line 55 uses mamba_ssm (with underscore). For consistency across the codebase, both should use the same format. Recommend using mamba_ssm to match setup.cfg and the import statements used throughout the codebase.
| RUN MAX_JOBS=2 pip install --no-build-isolation mamba-ssm==2.2.6.post3 | |
| RUN MAX_JOBS=2 pip install --no-build-isolation mamba_ssm==2.2.6.post3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Outdated comment: This comment references "pytorch 2.8" but the PR description indicates the new base image (25.11) includes PyTorch 2.10. The comment should be updated to reflect the current PyTorch version to avoid confusion.