Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
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:24.11-py3
FROM nvcr.io/nvidia/pytorch:25.02-py3
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's do 25.05


# Install dependencies.
RUN apt-get update \
Expand Down
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ install_requires =
# FLASH_ATTENTION_SKIP_CUDA_BUILD=TRUE FLASH_ATTENTION_FORCE_BUILD=TRUE pip install -e ".[CORE]" --no-build-isolation
CORE =
# Available through the nvidia base image
torch>=2.5.0
torch>=2.7.0
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This won't work, 2.7.0a0+6c54963f75 is not >=2.7.0

# Numpy major needs to match torch
numpy>=1.24.4,<2.0.0
# Used for checkpoints
safetensors>=0.4.4
# Update the base image (version fixed to ensure there is a wheel for the base image), may need --no-build-isolation
flash-attn==2.7.2.post1
mamba_ssm[causal-conv1d]==2.2.4
flash-attn==2.7.3 # 2.7.3 already installed in the base image -> pytorch:25.02-py3
# mamba wheel for torch 2.7 is not available yet, update when available
# mamba_ssm[causal-conv1d]==2.2.4


# Required for some optional features and tools.
Expand Down
Loading