fix lmcache
This commit is contained in:
@@ -10,4 +10,8 @@ COPY utils.py /usr/local/lib/python3.12/dist-packages/vllm/tool_parsers/utils.py
|
||||
COPY vllm_patches/hf.py /usr/local/lib/python3.12/dist-packages/vllm/renderers/hf.py
|
||||
|
||||
# Install LMCache for KV cache offloading / sharing across nodes
|
||||
RUN pip install --no-cache-dir lmcache
|
||||
# Build from source to match CUDA 13 (pip wheel is CUDA 12)
|
||||
RUN git clone --depth 1 https://github.com/LMCache/LMCache.git /tmp/lmcache && \
|
||||
cd /tmp/lmcache && \
|
||||
pip install --no-cache-dir --no-build-isolation -e . && \
|
||||
rm -rf /tmp/lmcache
|
||||
|
||||
Reference in New Issue
Block a user