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 <kevin@anyscale.com> Signed-off-by: Travis Johnson <tsjohnso@us.ibm.com> Signed-off-by: Wang, Yi A <yi.a.wang@intel.com> Co-authored-by: Michael Goin <michael@neuralmagic.com> Co-authored-by: Simon Mo <simon.mo@hey.com> Co-authored-by: SangBin Cho <rkooo567@gmail.com> Co-authored-by: Woosuk Kwon <woosuk.kwon@berkeley.edu> Co-authored-by: Li, Jiang <jiang1.li@intel.com> Co-authored-by: Kevin H. Luu <kevin@anyscale.com> Co-authored-by: Cody Yu <hao.yu.cody@gmail.com> Co-authored-by: Arthur Kim <kimdwkimdw@gmail.com> Co-authored-by: Travis Johnson <tsjohnso@us.ibm.com> Co-authored-by: Sanger Steel <sangersteel@gmail.com> Co-authored-by: Roger Wang <ywang@roblox.com> Co-authored-by: youkaichao <youkaichao@gmail.com> Co-authored-by: Cyrus Leung <tlleungac@connect.ust.hk> Co-authored-by: Isotr0py <2037008807@qq.com> Co-authored-by: Wang, Yi <yi.a.wang@intel.com> Co-authored-by: Dipika Sikka <dipikasikka1@gmail.com> Co-authored-by: wenyujin333 <wuyou.wuyou@alibaba-inc.com> Co-authored-by: Jianan Gu <jianan.gu@intel.com> Co-authored-by: Tyler Michael Smith <tyler@neuralmagic.com> Co-authored-by: zifeitong <zifei.tong@parasail.io> Co-authored-by: Philipp Moritz <pcmoritz@gmail.com> Co-authored-by: Antoni Baum <antoni.baum@protonmail.com> Co-authored-by: Jie Fu (傅杰) <jiefu@tencent.com> Co-authored-by: Allen.Dou <allen.dou@hotmail.com>
- Loading branch information
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.