Skip to content

Commit

Permalink
Update torch to 2.4.0 (#8)
Browse files Browse the repository at this point in the history
Co-authored-by: Woosuk Kwon <woosuk.kwon@berkeley.edu>
  • Loading branch information
SageMoore and WoosukKwon authored Jul 29, 2024
1 parent 8f48a54 commit 5a3e6eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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']
pytorch-version: ['2.3.1'] # Should be synced with setup.py.
pytorch-version: ['2.4.0'] # Should be synced with setup.py.
cuda-version: ['12.1']

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.3.1"
PYTORCH_VERSION="2.4.0"

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 @@ -263,7 +263,7 @@ def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)


PYTORCH_VERSION = "2.3.1"
PYTORCH_VERSION = "2.4.0"
CUDA_VERSION = "12.1"

setup(
Expand Down

0 comments on commit 5a3e6eb

Please sign in to comment.