Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] Uninstall transformer_engine in Dockerfile-vllm #110

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .devcontainer/Dockerfile-vllm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ ENV NVTE_FRAMEWORK=pytorch
COPY vllm-requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt

# Uninstall the transformer engine that comes with the base image.
# Otherwise it will cause error when importing vLLM (LLAVA models).
RUN pip uninstall -y transformer_engine

# crashes docker?
# RUN pip install -v -U git+https://github.com/facebookresearch/xformers.git@main#egg=xformers

Expand Down
Loading