mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 00:35:28 +08:00
18 lines
738 B
Plaintext
18 lines
738 B
Plaintext
# Common dependencies
|
|
-r common.txt
|
|
|
|
# Dependencies for CPUs
|
|
torch==2.6.0+cpu; platform_machine == "x86_64"
|
|
torch==2.6.0; platform_system == "Darwin"
|
|
torch==2.5.1; platform_machine == "ppc64le" or platform_machine == "aarch64"
|
|
torch==2.7.0.dev20250304; platform_machine == "s390x"
|
|
|
|
# required for the image processor of minicpm-o-2_6, this must be updated alongside torch
|
|
torchaudio; platform_machine != "ppc64le" and platform_machine != "s390x"
|
|
torchaudio==2.5.1; platform_machine == "ppc64le"
|
|
|
|
# required for the image processor of phi3v, this must be updated alongside torch
|
|
torchvision; platform_machine != "ppc64le" and platform_machine != "s390x"
|
|
torchvision==0.20.1; platform_machine == "ppc64le"
|
|
datasets # for benchmark scripts
|