Skip to content

Commit

Permalink
[ci] Add 1xA10 and 4xA10 CI queues and run Scratch tests on A10 (vllm…
Browse files Browse the repository at this point in the history
…-project#550)

Signed-off-by: kevin <[email protected]>
  • Loading branch information
khluu authored Jul 18, 2024
1 parent f1d9e75 commit 9e2f977
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .buildkite/anyscale-test-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ steps:

- label: Anyscale ScratchLLM + vLLM integration unit test
working_dir: "/vllm-workspace"
gpu: a10
commands:
- bash .buildkite/ci/run_scratch_unit_test.sh

Expand Down
8 changes: 8 additions & 0 deletions .buildkite/template.j2
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,19 @@ steps:
{% if step.anyscale %}
- label: "{{ step.label }}"
agents:
{% if step.gpu == "a10" %}
{% if step.num_gpus == 2 or step.num_gpus == 4 %}
queue: vllm-gpu-a10-4
{% else %}
queue: vllm-gpu-a10-1
{% endif %}
{% else %}
{% if step.num_gpus == 2 or step.num_gpus == 4 %}
queue: vllm-gpu-4
{% else %}
queue: vllm-gpu-1
{% endif %}
{% endif %}
soft_fail: {{ step.soft_fail or false }}
{% if step.parallelism %}
parallelism: {{ step.parallelism }}
Expand Down

0 comments on commit 9e2f977

Please sign in to comment.