We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2d4769 commit 88884c8Copy full SHA for 88884c8
docker/Dockerfile-NPU
@@ -14,4 +14,12 @@ RUN export PLATFORM="ascend" && \
14
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/Ascend/ascend-toolkit/latest/`uname -i`-linux/devlib && \
15
pip install -v -e /workspace/unified-cache-management --no-build-isolation
16
17
+# Apply patch for vLLM
18
+RUN cd $(pip show vllm | grep Location | awk '{print $2}') \
19
+ && git apply /workspace/unified-cache-management/ucm/integration/vllm/patch/0.9.2/vllm-adapt.patch
20
+
21
+# Apply patch for vLLM-ascend
22
+RUN cd $(pip show vllm-ascend | grep Location | awk '{print $2}') \
23
+ && git apply /workspace/unified-cache-management/ucm/integration/vllm/patch/0.9.2/vllm-ascend-adapt.patch
24
25
CMD ["/bin/bash"]
0 commit comments