Example Run Script#
To build and run AutoDeploy example, use the examples/auto_deploy/build_and_run_ad.py
script:
cd examples/auto_deploy
python build_and_run_ad.py --model "TinyLlama/TinyLlama-1.1B-Chat-v1.0"
You can configure your experiment with various options. Use the -h/--help
flag to see available options:
python build_and_run_ad.py --help
The following is a non-exhaustive list of common configuration options:
Configuration Key |
Description |
---|---|
|
The HF model card or path to a HF checkpoint folder |
|
Choose model factory implementation ( |
|
Only load the architecture, not the weights |
|
Extra kwargs that are being passed to the model initializer in the model factory |
|
Extra kwargs that are being passed to the tokenizer initializer in the model factory |
|
The number of GPUs used for auto-sharding the model |
|
Specifies which type of Engine to use during runtime ( |
|
Specifies how to compile the graph at the end |
|
Specifies kernel implementation for attention |
|
Specifies implementation for multi-head latent attention |
|
Maximum sequence length for inference/cache |
|
Maximum dimension for statically allocated KV cache |
|
Page size for attention |
|
Number of queries to generate |
|
Whether to run the built-in benchmark (true/false) |
For default values and additional configuration options, refer to the ExperimentConfig
class in examples/auto_deploy/build_and_run_ad.py
file.
The following is a more complete example of using the script:
cd examples/auto_deploy
python build_and_run_ad.py \
--model "TinyLlama/TinyLlama-1.1B-Chat-v1.0" \
--args.world-size 2 \
--args.runtime "demollm" \
--args.compile-backend "torch-compile" \
--args.attn-backend "flashinfer" \
--benchmark.enabled True