-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Distributed(Tensor Parallel) Inference Recipe (#2245)
Co-authored-by: JessicaZhong <[email protected]>
- Loading branch information
1 parent
1036095
commit 779569e
Showing
14 changed files
with
618 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Config for running the InferenceRecipe in dev/generate_v2.py to generate output | ||
# using a Llama3 70B Instruct model | ||
# | ||
# This config assumes that you've run the following command before launching: | ||
# tune download meta-llama/Meta-Llama-3-70B-Instruct --output-dir /tmp/Meta-Llama-3-70B-Instruct --ignore-patterns "original/consolidated*" --hf-token <HF_TOKEN> | ||
# | ||
# To launch, run the following command from root torchtune directory: | ||
# tune run --nproc_per_node 8 dev/generate_v2_distributed --config llama3/70B_generation_distributed | ||
|
||
output_dir: ./ | ||
|
||
# Model arguments | ||
model: | ||
_component_: torchtune.models.llama3.llama3_70b | ||
|
||
parallelize_plan: | ||
_component_: torchtune.models.llama3.base_llama_tp_plan | ||
|
||
# Transform arguments | ||
tokenizer: | ||
_component_: torchtune.models.llama3.llama3_tokenizer | ||
path: /tmp/Meta-Llama-3-70B-Instruct/original/tokenizer.model | ||
prompt_template: null | ||
max_seq_len: 8192 | ||
|
||
# Checkpointer | ||
checkpointer: | ||
_component_: torchtune.training.FullModelHFCheckpointer | ||
checkpoint_dir: /tmp/Meta-Llama-3-70B-Instruct | ||
checkpoint_files: | ||
filename_format: model-{}-of-{}.safetensors | ||
max_filename: "00030" | ||
recipe_checkpoint: null | ||
output_dir: ${output_dir} | ||
model_type: LLAMA3 | ||
|
||
# Device | ||
device: cuda | ||
dtype: bf16 | ||
seed: 1234 | ||
log_level: INFO | ||
|
||
# Generation arguments | ||
prompt: | ||
system: null | ||
user: | ||
text: Tell a joke. | ||
max_new_tokens: 200 | ||
temperature: 0.6 # 0.8 and 0.6 are popular values to try | ||
top_k: 300 |
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,50 @@ | ||
# Config for running the InferenceRecipe in dev/generate_v2.py to generate output | ||
# using a Llama3.1 70B Instruct model | ||
# | ||
# This config assumes that you've run the following command before launching: | ||
# tune download meta-llama/Meta-Llama-3.1-70B-Instruct --output-dir /tmp/Meta-Llama-3.1-70B-Instruct --ignore-patterns "original/consolidated*" --hf-token <HF_TOKEN> | ||
# | ||
# To launch, run the following command from root torchtune directory: | ||
# tune run --nproc_per_node 8 dev/generate_v2_distributed --config llama3_1/70B_generation_distributed | ||
|
||
output_dir: ./ | ||
|
||
# Model arguments | ||
model: | ||
_component_: torchtune.models.llama3_1.llama3_1_70b | ||
|
||
parallelize_plan: | ||
_component_: torchtune.models.llama3.base_llama_tp_plan | ||
|
||
# Transform arguments | ||
tokenizer: | ||
_component_: torchtune.models.llama3.llama3_tokenizer | ||
path: /tmp/Meta-Llama-3.1-70B-Instruct/original/tokenizer.model | ||
prompt_template: null | ||
max_seq_len: 8192 | ||
|
||
# Checkpointer | ||
checkpointer: | ||
_component_: torchtune.training.FullModelHFCheckpointer | ||
checkpoint_dir: /tmp/Meta-Llama-3.1-70B-Instruct/ | ||
checkpoint_files: | ||
filename_format: model-{}-of-{}.safetensors | ||
max_filename: "00030" | ||
recipe_checkpoint: null | ||
output_dir: ${output_dir} | ||
model_type: LLAMA3 | ||
|
||
# Device | ||
device: cuda | ||
dtype: bf16 | ||
seed: 1234 | ||
log_level: INFO | ||
|
||
# Generation arguments | ||
prompt: | ||
system: null | ||
user: | ||
text: Tell a joke. | ||
max_new_tokens: 200 | ||
temperature: 0.6 # 0.8 and 0.6 are popular values to try | ||
top_k: 300 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Config for running the InferenceRecipe in dev/generate_v2.py to generate output | ||
# using a Llama3.1 70B Instruct model | ||
# | ||
# This config assumes that you've run the following command before launching: | ||
# tune download meta-llama/Llama-3.3-70B-Instruct --ignore-patterns "original/consolidated*" --hf-token <HF_TOKEN> | ||
# | ||
# To launch, run the following command from root torchtune directory: | ||
# tune run --nproc_per_node 8 dev/generate_v2_distributed --config llama3_3/70B_generation_distributed | ||
|
||
output_dir: ./ | ||
|
||
# Model arguments | ||
model: | ||
_component_: torchtune.models.llama3_3.llama3_3_70b | ||
|
||
parallelize_plan: | ||
_component_: torchtune.models.llama3.base_llama_tp_plan | ||
|
||
# Transform arguments | ||
tokenizer: | ||
_component_: torchtune.models.llama3.llama3_tokenizer | ||
path: /tmp/Llama-3.3-70B-Instruct/original/tokenizer.model | ||
prompt_template: null | ||
max_seq_len: 8192 | ||
|
||
# Checkpointer | ||
checkpointer: | ||
_component_: torchtune.training.FullModelHFCheckpointer | ||
checkpoint_dir: /tmp/Llama-3.3-70B-Instruct/ | ||
checkpoint_files: | ||
filename_format: model-{}-of-{}.safetensors | ||
max_filename: "00030" | ||
recipe_checkpoint: null | ||
output_dir: ${output_dir} | ||
model_type: LLAMA3 | ||
|
||
# Device | ||
device: cuda | ||
dtype: bf16 | ||
seed: 1234 | ||
log_level: INFO | ||
|
||
# Generation arguments | ||
prompt: | ||
system: null | ||
user: | ||
text: Tell a joke. | ||
max_new_tokens: 200 | ||
temperature: 0.6 # 0.8 and 0.6 are popular values to try | ||
top_k: 300 |
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.