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

[CI/Build] (2/2) Switching AMD CI to store images in Docker Hub #6350

Merged
merged 26 commits into from
Jul 12, 2024
Merged
Changes from 25 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4f471dd
changing run script to pull image instead of building the image
adityagoel14 Jul 9, 2024
cb4cc54
removed rocminfo for testing
adityagoel14 Jul 9, 2024
b79fdd6
Add support for multi-node on CI (#5955)
khluu Jul 9, 2024
bb626df
[CORE] Adding support for insertion of soft-tuned prompts (#4645)
SwapnilDreams100 Jul 9, 2024
79c095b
[Docs] Docs update for Pipeline Parallel (#6222)
andoorve Jul 9, 2024
5cc7f86
[Bugfix]fix and needs_scalar_to_array logic check (#6238)
qibaoyuan Jul 9, 2024
8822361
[Speculative Decoding] Medusa Implementation with Top-1 proposer (#4978)
abhigoyal1997 Jul 10, 2024
f7b7547
[core][distributed] zmq fallback for broadcasting large objects (#6183)
youkaichao Jul 10, 2024
2aecac4
[Bugfix][TPU] Add prompt adapter methods to TPUExecutor (#6279)
WoosukKwon Jul 10, 2024
8473d70
[Doc] Guide for adding multi-modal plugins (#6205)
DarkLight1337 Jul 10, 2024
a65ab89
[Bugfix] Support 2D input shape in MoE layer (#6287)
WoosukKwon Jul 10, 2024
f74f46d
[Bugfix] MLPSpeculator: Use ParallelLMHead in tie_weights=False case.…
tdoublep Jul 10, 2024
5bd9f85
[CI/Build] Enable mypy typing for remaining folders (#6268)
Jul 10, 2024
9ca089a
[Bugfix] Fix OpenVINOExecutor abstractmethod error (#6296)
park12sj Jul 10, 2024
f786ec7
[Speculative Decoding] Enabling bonus token in speculative decoding f…
sroy745 Jul 10, 2024
bead0bc
[Bugfix][Neuron] Fix soft prompt method error in NeuronExecutor (#6313)
WoosukKwon Jul 10, 2024
3b3e79e
[Doc] Remove comments incorrectly copied from another project (#6286)
daquexian Jul 11, 2024
616ce78
[Doc] Update description of vLLM support for CPUs (#6003)
DamonFool Jul 11, 2024
ffec41c
[BugFix]: set outlines pkg version (#6262)
xiangyang-95 Jul 11, 2024
19f2527
[Bugfix] Fix snapshot download in serving benchmark (#6318)
ywang96 Jul 11, 2024
97153b0
[Misc] refactor(config): clean up unused code (#6320)
aniaan Jul 11, 2024
c375600
[BugFix]: fix engine timeout due to request abort (#6255)
pushan01 Jul 11, 2024
999a981
reset cherrypicks
adityagoel14 Jul 11, 2024
f17286c
matching naming to upstream
adityagoel14 Jul 11, 2024
22bfb03
Merge branch 'vllm-project:main' into cpu-only
adityagoel14 Jul 11, 2024
faf9b0d
Update run-amd-test.sh
adityagoel14 Jul 11, 2024
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
10 changes: 3 additions & 7 deletions .buildkite/run-amd-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,11 @@ while true; do
fi
done

echo "--- Building container"
echo "--- Pulling container"
sha=$(git rev-parse --short HEAD)
image_name=rocm_${sha}
image_name="rocmshared/vllm-ci:rocm_${sha}"
adityagoel14 marked this conversation as resolved.
Show resolved Hide resolved
container_name=rocm_${sha}_$(tr -dc A-Za-z0-9 < /dev/urandom | head -c 10; echo)
docker build \
-t ${image_name} \
-f Dockerfile.rocm \
--progress plain \
.
docker pull ${image_name}

remove_docker_container() {
docker rm -f ${container_name} || docker image rm -f ${image_name} || true
Expand Down
Loading