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:

config.yaml
model_name: Llama 3.1 8B Engine
resources:
  accelerator: H100:1
secrets:
  hf_access_token: "set token in baseten workspace"
trt_llm:
  build:
    base_model: llama
    checkpoint_repository:
      repo: meta-llama/Meta-Llama-3-8B-Instruct
      source: HF
    max_batch_size: 32
    max_beam_width: 1
    max_input_len: 7168
    max_output_len: 1024
    quantization_type: no_quant
    tensor_parallel_count: 1
    num_builder_gpus: 1

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
  • whisper

checkpoint_repository

Specification of the model checkpoint to be leveraged for engine building. E.g.

checkpoint_repository:
    source: HF | GCS | REMOTE_URL
    repo: meta-llama/Meta-Llama-3.1-8B-Instruct | gs://bucket_name | https://your-checkpoint.com

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

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

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_input_len

Maximum input length in tokens to limit prompts/messages to. This value is an upper bound for input length.

max_output_len

Maximum output length in tokens to limit outputs to. This value is an upper bound for output length.

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.

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_kv_int4
  • 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.

use_fused_mlp

(default: False)

Enables GEMM horizontal fusion in gated MLP layer, potentially improving performance.