Skip to main content

Introduction

For specialized cases, like serving MoE models (e.g., Mixtral) or quantized models, performance of inference can be further optimized through an execution policy search. This process can be skipped, but it is necessary to get the optimized speed of Friendli Engine. When the Friendli Engine runs with the optimal policy, the performance can increase by 1.5x to 2x (i.e., throughput and latency). Therefore, we recommend skipping policy search for simple model testing, and performing policy search for cost analysis or latency analysis in a production service.
Policy search is effective only when serving (1) MoE models (2) AWQ, FP8 or INT8 quantized models. Otherwise, it is useless.
You can run policy search by adding the following options to the launch command of Friendli Container.

Example: FriendliAI/Llama-3.1-8B-Instruct-fp8

For example, you can start the policy search for FriendliAI/Llama-3.1-8B-Instruct-fp8 model as follows:

Example: mistralai/Mixtral-8x7B-Instruct-v0.1 (TP=4)

Once the policy search is complete, a policy file will be created in $POLICY_DIR. If the policy file already exists, the engine will search only the necessary spaces and update the policy file accordingly. After the policy search, the engine starts to serve the endpoint using the policy file.
It takes up to several minutes to find the optimal policy for Llama 2 13B model with NVIDIA A100 80GB GPU. The estimated time and remaining time will be displayed in the stderr when you run the policy search.

Running Policy Search Without Starting Serving Endpoint

To search for the best policy without starting the serving endpoint, launch the engine with the Friendli Container command and include the --terminate-after-search true option.

Example: FriendliAI/Llama-3.1-8B-Instruct-fp8

Example: mistralai/Mixtral-8x7B-Instruct-v0.1 (TP=4)

FAQ: When to Run Policy Search Again

The execution policy depends on the following factors:
  • Model
  • GPU
  • GPU count and parallelism degree (The value for --num-devices option)
  • NVIDIA Driver major version
  • Friendli Container version
You should run policy search again when any of these are changed from your serving setup.
Last modified on June 24, 2026