Engine Builder configuration
Configure your TensorRT-LLM inference engine
This reference lists every configuration option for the TensorRT-LLM Engine Builder. These options are used in config.yaml
, such as for this Llama 3.1 8B example:
trt_llm.build
TRT-LLM engine build configuration. TensorRT-LLM attempts to build a highly optimized network based on input shapes representative of your workload.
base_model
The base model architecture of your model checkpoint. Supported architectures include:
llama
mistral
deepseek
qwen
checkpoint_repository
Specification of the model checkpoint to be leveraged for engine building. E.g.
To configure access to private model checkpoints, register secrets in your Baseten workspace, namely the hf_access_token
or trt_llm_gcs_service_account
secrets with a valid service account json for HuggingFace or GCS, respectively.
Ensure that you push your truss with the --trusted
flag to enable access to your secrets.
checkpoint_repository.source
Source where the checkpoint is stored. Supported sources include:
HF
(HuggingFace)GCS
(Google Cloud Storage)REMOTE_URL
checkpoint_repository.repo
Checkpoint repository name, bucket, or url.
kv_cache_free_gpu_mem_fraction
(default: 0.9
)
Used to control the fraction of free gpu memory allocated for the KV cache. For more information, refer to the documentation here.
max_batch_size
(default: 256
)
Maximum number of input sequences to pass through the engine concurrently. Batch size and throughput share a direct relation, whereas batch size and single request latency share an indirect relation. Tune this value according to your SLAs and latency budget.
max_beam_width
(default: 1
)
Maximum number of candidate sequences with which to conduct beam search. This value should act as an minimal upper bound for beam candidates.
Currently, only a beam width of 1 is supported.
max_seq_len
Defines the maximum sequence length (context) of single requestβ.
max_num_tokens
(default: 8192
)
Defines the maximum number of batched input tokens after padding is removed in each batch. Tuning this value more efficiently allocates memory to KV cache and executes more requests together.
max_prompt_embedding_table_size
(default: 0
)
Maximum prompt embedding table size for prompt tuning.
num_builder_gpus
(default: auto
)
Number of GPUs to be used at build time, defaults to configured resource.accelerator
count β useful for FP8 quantization in particular, when more GPU memory is required at build time relative to memory usage at inference.
enable_chunked_context
(default: False
)
Enables chunked context, increasing the chance of batch processing between context and generation phase βΒ which may be useful to increase throughput.
Note that one must set plugin_configuration.use_paged_context_fmha: True
in order to leverage this feature.
plugin_configuration
Config for inserting plugin nodes into network graph definition for execution of user-defined kernels.
plugin_configuration.paged_kv_cache
(default: True
)
Decompose KV cache into page blocks. Read more about what this does here.
plugin_configuration.gemm_plugin
(default: auto
)
Utilize NVIDIA cuBLASLt for GEMM ops. Read more about when to enable this here.
plugin_configuration.use_paged_context_fmha
(default: False
)
Utilize paged context for fused multihead attention. This configuration is necessary to enable KV cache reuse. Read more about this configuration here.
plugin_configuration.use_fp8_context_fmha
(default: False
)
Utilize FP8 quantization for context fused multihead attention to accelerate attention. To use this configuration, also set plugin_configuration.use_paged_context_fmha
. Read more about when to enable this here.
quantization_type
(default: no_quant
)
Quantization format with which to build the engine. Supported formats include:
no_quant
(meaning fp16)weights_int8
weights_kv_int8
weights_int4
weights_int4_kv_int8
smooth_quant
fp8
fp8_kv
Read more about different post training quantization techniques supported by TRT-LLM here. Additionally, refer to the hardware and quantization technique support matrix.
strongly_typed
(default: False
)
Whether to build the engine using strong typing, enabling TensorRTβs optimizer to statically infer intermediate tensor types which can speed up build time for some formats. Weak typing enables the optimizer to elect tensor types, which may result in a faster runtime. For more information refer to TensorRT documentation here.
tensor_parallel_count
(default: 1
)
Tensor parallelism count. For more information refer to NVIDIA documentation here.