-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Train] Added Llama 2 workspace template release tests (#37871)
Signed-off-by: Kourosh Hakhamaneshi <[email protected]>
- Loading branch information
1 parent
79859ab
commit 0a079dd
Showing
12 changed files
with
655 additions
and
18 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
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
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
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
23 changes: 23 additions & 0 deletions
23
...ource/templates/testing/compute_configs/04_finetuning_llms_with_deepspeed/aws_70b_v1.yaml
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,23 @@ | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west-2 | ||
|
||
head_node_type: | ||
name: head_node_type | ||
instance_type: g5.48xlarge | ||
resources: | ||
custom_resources: | ||
large_cpu_mem: 1 | ||
|
||
worker_node_types: | ||
- name: gpu_worker | ||
instance_type: g5.48xlarge | ||
min_workers: 3 | ||
max_workers: 3 | ||
use_spot: false | ||
|
||
aws: | ||
TagSpecifications: | ||
- ResourceType: "instance" | ||
Tags: | ||
- Key: ttl-hours | ||
Value: '24' |
29 changes: 29 additions & 0 deletions
29
...ource/templates/testing/compute_configs/04_finetuning_llms_with_deepspeed/aws_70b_v2.yaml
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,29 @@ | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west-2 | ||
|
||
head_node_type: | ||
name: head_node_type | ||
instance_type: g5.48xlarge | ||
resources: | ||
custom_resources: | ||
large_cpu_mem: 1 | ||
|
||
worker_node_types: | ||
- name: large_gpu_worker | ||
instance_type: g5.48xlarge | ||
min_workers: 2 | ||
max_workers: 2 | ||
use_spot: false | ||
|
||
- name: medium_gpu_worker | ||
instance_type: g5.24xlarge | ||
min_workers: 2 | ||
max_workers: 2 | ||
use_spot: false | ||
|
||
aws: | ||
TagSpecifications: | ||
- ResourceType: "instance" | ||
Tags: | ||
- Key: ttl-hours | ||
Value: '24' |
27 changes: 27 additions & 0 deletions
27
...ce/templates/testing/compute_configs/04_finetuning_llms_with_deepspeed/aws_7b_or_13b.yaml
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,27 @@ | ||
# 1 g5.16xlarge + 15 g5.4xlarge --> 16 GPUs, 256G RAM on trainer and 64G RAM on workers | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west-2 | ||
|
||
head_node_type: | ||
name: head_node | ||
instance_type: g5.16xlarge | ||
resources: | ||
custom_resources: | ||
large_cpu_mem: 1 | ||
|
||
worker_node_types: | ||
- name: worker_node | ||
instance_type: g5.4xlarge | ||
min_workers: 15 | ||
max_workers: 15 | ||
use_spot: false | ||
resources: | ||
custom_resources: | ||
medium_cpu_mem: 1 | ||
|
||
aws: | ||
TagSpecifications: | ||
- ResourceType: "instance" | ||
Tags: | ||
- Key: ttl-hours | ||
Value: '24' |
21 changes: 21 additions & 0 deletions
21
...ce/templates/testing/compute_configs/04_finetuning_llms_with_deepspeed/gce_7b_or_13b.yaml
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,21 @@ | ||
cloud_id: {{env["ANYSCALE_CLOUD_ID"]}} | ||
region: us-west1 | ||
allowed_azs: | ||
- us-west1-b | ||
|
||
head_node_type: | ||
name: head_node_type | ||
instance_type: n1-highmem-64-nvidia-k80-12gb-1 | ||
resources: | ||
custom_resources: | ||
large_cpu_mem: 1 | ||
|
||
worker_node_types: | ||
- name: gpu_worker | ||
instance_type: n1-standard-16-nvidia-k80-12gb-1 | ||
min_workers: 15 | ||
max_workers: 15 | ||
use_spot: false | ||
resources: | ||
custom_resources: | ||
medium_cpu_mem: 1 |
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 |
---|---|---|
|
@@ -10,4 +10,5 @@ libjemalloc-dev | |
libosmesa6-dev | ||
patchelf | ||
unzip | ||
zip | ||
zip | ||
libaio1 |
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
Oops, something went wrong.