Commit 2df0e9b 1 parent b758abb commit 2df0e9b Copy full SHA for 2df0e9b
File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ while true; do
57
57
done
58
58
59
59
echo " --- Pulling container"
60
- image_name=" rocm/vllm-ci:${BUILDKITE_COMMIT} "
60
+ image_name=" rocm/vllm-ci-private :${BUILDKITE_COMMIT} "
61
61
container_name=" rocm_${BUILDKITE_COMMIT} _$( tr -dc A-Za-z0-9 < /dev/urandom | head -c 10; echo) "
62
62
docker pull " ${image_name} "
63
63
Original file line number Diff line number Diff line change 1
1
{% set docker_image = "public.ecr.aws/q9t5s3a7/vllm-ci-test-repo:$BUILDKITE_COMMIT" %}
2
- {% set docker_image_amd = "rocm/vllm-ci:$BUILDKITE_COMMIT" %}
2
+ {% set docker_image_amd = "rocm/vllm-ci-private :$BUILDKITE_COMMIT" %}
3
3
{% set default_working_dir = "vllm/tests" %}
4
4
{% set hf_home = "/root/.cache/huggingface" %}
5
5
6
6
steps:
7
7
- label: ":docker: build image"
8
8
depends_on: ~
9
9
commands:
10
- - "docker build --build-arg max_jobs=16 --tag {{ docker_image_amd }} -f Dockerfile.rocm --target test --progress plain ."
10
+ - "docker build --build-arg max_jobs=16 --tag {{ docker_image_amd }} -f Dockerfile.rocm --build-arg ARG_PYTORCH_ROCM_ARCH='gfx90a;gfx942' -- target test --progress plain ."
11
11
- "docker push {{ docker_image_amd }}"
12
12
key: "amd-build"
13
13
env:
@@ -27,7 +27,15 @@ steps:
27
27
depends_on:
28
28
- "amd-build"
29
29
agents:
30
+ {% if step .amd_gpus and step .amd_gpus ==8%}
30
31
queue: amd_gpu
32
+ {% elif step .amd_gpus and step .amd_gpus ==4%}
33
+ queue: amd_gpu
34
+ {% elif step .amd_gpus and step .amd_gpus ==2%}
35
+ queue: amd_gpu
36
+ {% else %}
37
+ queue: amd_gpu
38
+ {% endif %}
31
39
commands:
32
40
- bash .buildkite/run-amd-test.sh "cd {{ (step.working_dir or default_working_dir) | safe }} ; {{ step.command or (step.commands | join(" && ")) | safe }}"
33
41
env:
You can’t perform that action at this time.
0 commit comments