We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db35186 commit c16eaacCopy full SHA for c16eaac
Dockerfile.cpu
@@ -26,7 +26,7 @@ COPY ./ /workspace/vllm
26
27
WORKDIR /workspace/vllm
28
29
-RUN pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/test/cpu
+RUN pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/cpu
30
31
# Support for building with non-AVX512 vLLM: docker build --build-arg VLLM_CPU_DISABLE_AVX512="true" ...
32
ARG VLLM_CPU_DISABLE_AVX512
requirements-cpu.txt
@@ -2,5 +2,5 @@
2
-r requirements-common.txt
3
4
# Dependencies for x86_64 CPUs
5
-torch == 2.4.0; platform_machine != "ppc64le"
+torch == 2.4.0+cpu; platform_machine != "ppc64le"
6
torchvision; platform_machine != "ppc64le" # required for the image processor of phi3v, this must be updated alongside torch
0 commit comments