mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-26 05:03:04 +08:00
Signed-off-by: jiang1.li <jiang1.li@intel.com> Co-authored-by: Isotr0py <2037008807@qq.com>
17 lines
727 B
Plaintext
17 lines
727 B
Plaintext
# Common dependencies
|
|
-r common.txt
|
|
|
|
# Dependencies for CPUs
|
|
torch==2.6.0+cpu; platform_machine == "x86_64"
|
|
torch==2.5.1; platform_machine == "ppc64le" or platform_machine == "aarch64" or platform_system == "Darwin"
|
|
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
|