-
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.
[batch infer] Update batch inference template to use RayLLMBatch (#346)
Update the current batch llm inference template to use RayLLM-Batch --------- Co-authored-by: rickyx <[email protected]> Co-authored-by: Huaiwei Sun <[email protected]>
- Loading branch information
1 parent
ade2205
commit 7aec451
Showing
10 changed files
with
314 additions
and
959 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,4 @@ | ||
head_node_type: | ||
name: head-node | ||
instance_type: m5.2xlarge | ||
resources: | ||
cpu: 0 | ||
worker_node_types: | ||
- name: worker-g5-xlarge-nvidia-a10-1 | ||
instance_type: g5.xlarge | ||
resources: | ||
custom_resources: | ||
"accelerator_type:A10G": 1 | ||
min_workers: 0 | ||
max_workers: 4 | ||
use_spot: true | ||
fallback_to_ondemand: true | ||
- name: worker-g5-2xlarge-nvidia-a10-1 | ||
instance_type: g5.2xlarge | ||
resources: | ||
custom_resources: | ||
"accelerator_type:A10G": 1 | ||
min_workers: 0 | ||
max_workers: 4 | ||
use_spot: true | ||
fallback_to_ondemand: true | ||
- name: worker-g5-4xlarge-nvidia-a10-1 | ||
instance_type: g5.4xlarge | ||
resources: | ||
custom_resources: | ||
"accelerator_type:A10G": 1 | ||
min_workers: 0 | ||
max_workers: 4 | ||
use_spot: true | ||
fallback_to_ondemand: true | ||
- name: worker-g5-8xlarge-nvidia-a10-1 | ||
instance_type: g5.8xlarge | ||
resources: | ||
custom_resources: | ||
"accelerator_type:A10G": 1 | ||
min_workers: 0 | ||
max_workers: 4 | ||
use_spot: true | ||
fallback_to_ondemand: true | ||
- name: worker-g5-12xlarge-nvidia-a10-4 | ||
instance_type: g5.12xlarge | ||
resources: | ||
custom_resources: | ||
"accelerator_type:A10G": 1 | ||
min_workers: 0 | ||
max_workers: 1 | ||
use_spot: true | ||
fallback_to_ondemand: true | ||
- name: worker-g5-16xlarge-nvidia-a10-1 | ||
instance_type: g5.16xlarge | ||
resources: | ||
custom_resources: | ||
"accelerator_type:A10G": 1 | ||
min_workers: 0 | ||
max_workers: 4 | ||
use_spot: true | ||
fallback_to_ondemand: true | ||
- name: worker-g5-24xlarge-nvidia-a10-4 | ||
instance_type: g5.24xlarge | ||
resources: | ||
custom_resources: | ||
"accelerator_type:A10G": 1 | ||
min_workers: 0 | ||
max_workers: 1 | ||
use_spot: true | ||
fallback_to_ondemand: true | ||
- name: worker-g5-48xlarge-nvidia-a10-8 | ||
instance_type: g5.48xlarge | ||
resources: | ||
custom_resources: | ||
"accelerator_type:A10G": 1 | ||
min_workers: 0 | ||
max_workers: 1 | ||
use_spot: true | ||
fallback_to_ondemand: true | ||
aws: | ||
TagSpecifications: | ||
- ResourceType: instance | ||
Tags: | ||
- Key: as-feature-multi-zone | ||
Value: "true" | ||
name: head | ||
# TODO(ricky): We need head node to have CUDA due to eager import from rayllm_batch now. | ||
instance_type: g5.xlarge |
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,4 @@ | ||
head_node_type: | ||
name: head | ||
# TODO(ricky): We need head node to have CUDA due to eager import from rayllm_batch now. | ||
instance_type: g2-standard-4-nvidia-l4-1 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.