Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
949e49a6
Unverified
Commit
949e49a6
authored
Jun 19, 2024
by
Kevin H. Luu
Committed by
GitHub
Jun 19, 2024
Browse files
[ci] Limit num gpus if specified for A100 (#5694)
Signed-off-by:
kevin
<
kevin@anyscale.com
>
parent
4a30d7e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
.buildkite/test-pipeline.yaml
.buildkite/test-pipeline.yaml
+1
-0
.buildkite/test-template-aws.j2
.buildkite/test-template-aws.j2
+1
-1
No files found.
.buildkite/test-pipeline.yaml
View file @
949e49a6
...
...
@@ -184,6 +184,7 @@ steps:
-
label
:
Distributed Tests (A100)
gpu
:
a100
num_gpus
:
4
commands
:
# NOTE: don't test llama model here, it seems hf implementation is buggy
# see https://github.com/vllm-project/vllm/pull/5689 for details
...
...
.buildkite/test-template-aws.j2
View file @
949e49a6
...
...
@@ -75,7 +75,7 @@ steps:
- "'cd {{ (step.working_dir or default_working_dir) | safe }} && {{ step.command or (step.commands | join(' && ')) | safe }}'"
resources:
limits:
nvidia.com/gpu:
8
nvidia.com/gpu:
{{ step.num_gpus or 1 }}
volumeMounts:
- name: devshm
mountPath: /dev/shm
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment