Skip to content
Open
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 .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
matrix:
os: ['ubuntu-20.04']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
pytorch-version: ['2.4.0'] # Should be synced with setup.py.
pytorch-version: ['2.5.1'] # Should be synced with setup.py.
cuda-version: ['12.1', '11.8']

steps:
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# A simple build script for local testing.
# NOTE: This script is not used for the actual build process.

PYTORCH_VERSION="2.4.0"
PYTORCH_VERSION="2.5.1"

pip install packaging ninja;
pip install torch==${PYTORCH_VERSION};
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def get_package_version():
return str(public_version)


PYTORCH_VERSION = "2.4.0"
PYTORCH_VERSION = "2.5.1"
MAIN_CUDA_VERSION = "12.1"


Expand Down