This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upstream sync 2024 06 16 (#310) - v0.5.0.post of vllm SUMMARY: * Merge commits from vllm-project@8f89d72 to vllm-project@0f0d8bc * Limit numpy to < 2.0 * Updated `run-tests` to print name of the test that is about to run (for debugging what hangs in automation) * Disable usage stats in automation * Temporarily disable ENTRYPOINTS (to be re-enabled in Andy's single whl PR) * Updated `run-tests` to consider exit code 5 from pytest to be a pass (since exit code 5 from pytest means that we did not run any tests) Note that vllm-project@8f89d72 is NOT included in this merge. COMPARE vs UPSTREAM: https://github.com/neuralmagic/nm-vllm/compare/upstream-sync-2024-06-16..vllm-project:vllm:v0.5.0.post1 --------- Signed-off-by: kevin <[email protected]> Signed-off-by: Travis Johnson <[email protected]> Signed-off-by: Wang, Yi A <[email protected]> Co-authored-by: Michael Goin <[email protected]> Co-authored-by: Simon Mo <[email protected]> Co-authored-by: SangBin Cho <[email protected]> Co-authored-by: Woosuk Kwon <[email protected]> Co-authored-by: Li, Jiang <[email protected]> Co-authored-by: Kevin H. Luu <[email protected]> Co-authored-by: Cody Yu <[email protected]> Co-authored-by: Arthur Kim <[email protected]> Co-authored-by: Travis Johnson <[email protected]> Co-authored-by: Sanger Steel <[email protected]> Co-authored-by: Roger Wang <[email protected]> Co-authored-by: youkaichao <[email protected]> Co-authored-by: Cyrus Leung <[email protected]> Co-authored-by: Isotr0py <[email protected]> Co-authored-by: Wang, Yi <[email protected]> Co-authored-by: Dipika Sikka <[email protected]> Co-authored-by: wenyujin333 <[email protected]> Co-authored-by: Jianan Gu <[email protected]> Co-authored-by: Tyler Michael Smith <[email protected]> Co-authored-by: zifeitong <[email protected]> Co-authored-by: Philipp Moritz <[email protected]> Co-authored-by: Antoni Baum <[email protected]> Co-authored-by: Jie Fu (傅杰) <[email protected]> Co-authored-by: Allen.Dou <[email protected]>
- Loading branch information
1 parent
d8da97b
commit dd39914
Showing
116 changed files
with
4,433 additions
and
1,469 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
ARG NIGHTLY_DATE="20240601" | ||
ARG BASE_IMAGE="us-central1-docker.pkg.dev/tpu-pytorch-releases/docker/xla:nightly_3.10_tpuvm_$NIGHTLY_DATE" | ||
|
||
FROM $BASE_IMAGE | ||
|
||
WORKDIR /workspace | ||
COPY . /workspace/vllm | ||
|
||
ENV VLLM_TARGET_DEVICE="tpu" | ||
# Install aiohttp separately to avoid build errors. | ||
RUN pip install aiohttp | ||
# Install the TPU and Pallas dependencies. | ||
RUN pip install torch_xla[tpu] -f https://storage.googleapis.com/libtpu-releases/index.html | ||
RUN pip install torch_xla[pallas] -f https://storage.googleapis.com/jax-releases/jax_nightly_releases.html -f https://storage.googleapis.com/jax-releases/jaxlib_nightly_releases.html | ||
|
||
# Build vLLM. | ||
RUN cd /workspace/vllm && python setup.py develop | ||
|
||
CMD ["/bin/bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.