You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
torch==2.6.0+cpu; platform_machine == "x86_64" # torch>2.6.0+cpu has performance regression on x86 platform, see https://github.com/pytorch/pytorch/pull/151218
12
12
torch==2.7.0; platform_system == "Darwin"
13
-
torch==2.7.0; platform_machine == "ppc64le" or platform_machine == "aarch64"
13
+
torch==2.7.0; platform_machine == "ppc64le"
14
+
torch==2.6.0; platform_machine == "aarch64" # for arm64 CPUs, torch 2.7.0 has a issue: https://github.com/vllm-project/vllm/issues/17960
14
15
15
16
# required for the image processor of minicpm-o-2_6, this must be updated alongside torch
16
17
torchaudio; platform_machine != "ppc64le" and platform_machine != "s390x"
@@ -25,3 +26,6 @@ datasets # for benchmark scripts
intel_extension_for_pytorch==2.6.0; platform_machine == "x86_64" # torch>2.6.0+cpu has performance regression on x86 platform, see https://github.com/pytorch/pytorch/pull/151218
27
28
triton==3.2.0; platform_machine == "x86_64" # Triton is required for torch 2.6+cpu, as it is imported in torch.compile.
29
+
30
+
# Use this to gather CPU info and optimize based on ARM Neoverse cores
0 commit comments