Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
d93478b3
Unverified
Commit
d93478b3
authored
Nov 04, 2024
by
bnellnm
Committed by
GitHub
Nov 04, 2024
Browse files
[Bugfix] Upgrade to pytorch 2.5.1 (#10001)
Signed-off-by:
Bill Nell
<
bill@neuralmagic.com
>
parent
ac04a97a
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
11 deletions
+11
-11
CMakeLists.txt
CMakeLists.txt
+2
-2
pyproject.toml
pyproject.toml
+1
-1
requirements-build.txt
requirements-build.txt
+1
-1
requirements-cuda.txt
requirements-cuda.txt
+3
-3
requirements-openvino.txt
requirements-openvino.txt
+1
-1
requirements-test.in
requirements-test.in
+1
-1
requirements-test.txt
requirements-test.txt
+2
-2
No files found.
CMakeLists.txt
View file @
d93478b3
...
...
@@ -49,8 +49,8 @@ set(HIP_SUPPORTED_ARCHS "gfx906;gfx908;gfx90a;gfx940;gfx941;gfx942;gfx1030;gfx11
# requirements.txt files and should be kept consistent. The ROCm torch
# versions are derived from Dockerfile.rocm
#
set
(
TORCH_SUPPORTED_VERSION_CUDA
"2.5.
0
"
)
set
(
TORCH_SUPPORTED_VERSION_ROCM
"2.5.
0
"
)
set
(
TORCH_SUPPORTED_VERSION_CUDA
"2.5.
1
"
)
set
(
TORCH_SUPPORTED_VERSION_ROCM
"2.5.
1
"
)
#
# Try to find python package with an executable that exactly matches
...
...
pyproject.toml
View file @
d93478b3
...
...
@@ -6,7 +6,7 @@ requires = [
"packaging"
,
"setuptools>=61"
,
"setuptools-scm>=8.0"
,
"torch == 2.5.
0
"
,
"torch == 2.5.
1
"
,
"wheel"
,
"jinja2"
,
]
...
...
requirements-build.txt
View file @
d93478b3
...
...
@@ -4,6 +4,6 @@ ninja
packaging
setuptools>=61
setuptools-scm>=8
torch==2.5.
0
torch==2.5.
1
wheel
jinja2
requirements-cuda.txt
View file @
d93478b3
...
...
@@ -4,7 +4,7 @@
# Dependencies for NVIDIA GPUs
ray >= 2.9
nvidia-ml-py >= 12.560.30 # for pynvml package
torch == 2.5.
0
torch == 2.5.
1
# These must be updated alongside torch
torchvision == 0.20
# Required for phi3v processor. See https://github.com/pytorch/vision?tab=readme-ov-file#installation for corresponding version
xformers == 0.0.28.post
2
; platform_system == 'Linux' and platform_machine == 'x86_64' # Requires PyTorch 2.5.
0
torchvision == 0.20
.1
# Required for phi3v processor. See https://github.com/pytorch/vision?tab=readme-ov-file#installation for corresponding version
xformers == 0.0.28.post
3
; platform_system == 'Linux' and platform_machine == 'x86_64' # Requires PyTorch 2.5.
1
requirements-openvino.txt
View file @
d93478b3
# Common dependencies
-r requirements-common.txt
torch == 2.5.
0
# should be aligned with "common" vLLM torch version
torch == 2.5.
1
# should be aligned with "common" vLLM torch version
openvino >= 2024.4.0 # since 2024.4.0 both CPU and GPU support Paged Attention
optimum @ git+https://github.com/huggingface/optimum.git@main # latest optimum is used to support latest transformers version
...
...
requirements-test.in
View file @
d93478b3
...
...
@@ -18,7 +18,7 @@ ray[adag]==2.35
sentence-transformers # required for embedding
soundfile # required for audio test
timm # required for internvl test
torch==2.5.
0
torch==2.5.
1
transformers_stream_generator # required for qwen-vl test
matplotlib # required for qwen-vl test
datamodel_code_generator # required for minicpm3 test
...
...
requirements-test.txt
View file @
d93478b3
...
...
@@ -492,7 +492,7 @@ timm==1.0.11
# via -r requirements-test.in
tokenizers==0.20.1
# via transformers
torch==2.5.
0
torch==2.5.
1
# via
# -r requirements-test.in
# accelerate
...
...
@@ -503,7 +503,7 @@ torch==2.5.0
# tensorizer
# timm
# torchvision
torchvision==0.20.
0
torchvision==0.20.
1
# via timm
tqdm==4.66.6
# via
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment