mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-09 20:15:01 +08:00
22 lines
867 B
Plaintext
22 lines
867 B
Plaintext
# Common dependencies
|
|
-r common.txt
|
|
|
|
# Dependencies for CPUs
|
|
--extra-index-url https://download.pytorch.org/whl/cpu
|
|
torch==2.7.0+cpu; platform_machine == "x86_64"
|
|
torch==2.7.0; platform_system == "Darwin"
|
|
torch==2.7.0; 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.7.0; 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.22.0; platform_machine == "ppc64le"
|
|
datasets # for benchmark scripts
|
|
|
|
# cpu cannot use triton 3.3.0
|
|
triton==3.2.0; platform_machine == "x86_64"
|