Phi-4-mini-instruct TensorRT-LLM Checkpoint (NVFP4)
This repository contains a community-converted TensorRT-LLM checkpoint for microsoft/Phi-4-mini-instruct.
It is a TensorRT-LLM checkpoint-format repository, not a prebuilt engine. The intent is to let you download the checkpoint from Hugging Face and build an engine locally for your own GPU and TensorRT-LLM version.
Who This Repo Is For
This repository is for users who already work with TensorRT-LLM and want a ready-made TensorRT-LLM checkpoint that they can turn into a local engine for their own GPU.
It is not:
- a prebuilt TensorRT engine
- a plain Transformers checkpoint
- an Ollama model
- a one-click chat model that can be run directly after download
How to Use
- Download this repository from Hugging Face.
- Build a local engine with
trtllm-buildfor your own GPU and TensorRT-LLM version. - Run inference with the engine you built.
The Build Example section below shows the validated local command used for the benchmark snapshot in this README.
Model Characteristics
- Base model:
microsoft/Phi-4-mini-instruct - License:
mit - Architecture:
Phi3ForCausalLM - Upstream maximum context length (
max_position_embeddings):131072 - Hidden size:
3072 - Intermediate size:
8192 - Layers:
32 - Attention heads:
24 - KV heads:
8 - Vocabulary size:
200064
These values come from the upstream model/checkpoint configuration. They describe the model family itself, not a specific locally built TensorRT engine.
Checkpoint Details
- TensorRT-LLM version used for conversion:
1.2.0rc6 - Checkpoint dtype:
bfloat16 - Quantization:
NVFP4 - KV cache quantization:
FP8 - Tensor parallel size:
1 - Checkpoint files:
config.jsonrank0.safetensors- tokenizer and generation files copied from the upstream Hugging Face model
Files
config.json: TensorRT-LLM checkpoint configrank0.safetensors: TensorRT-LLM checkpoint weightsgeneration_config.json: upstream generation configtokenizer.json: upstream tokenizertokenizer_config.json: upstream tokenizer configmerges.txt: upstream merges filevocab.json: upstream vocabularyadded_tokens.json: upstream added tokensspecial_tokens_map.json: upstream special tokens map
Build Example
The following command is the validated local engine build used for the benchmarks in this README. These values are build-time/runtime settings for one local engine, not limits of the checkpoint itself.
Build an engine locally with TensorRT-LLM:
huggingface-cli download Shoolife/Phi-4-mini-instruct-TensorRT-LLM-Checkpoint-NVFP4 --local-dir ./checkpoint
trtllm-build \
--checkpoint_dir ./checkpoint \
--output_dir ./engine \
--gemm_plugin auto \
--gpt_attention_plugin auto \
--max_batch_size 1 \
--max_input_len 256 \
--max_seq_len 512 \
--max_num_tokens 128 \
--workers 1 \
--monitor_memory
If you rebuild the engine with different limits, memory usage and supported request shapes will change accordingly.
Conversion
This checkpoint was produced from the upstream model with TensorRT-LLM NVFP4 quantization tooling:
python /app/tensorrt_llm/examples/quantization/quantize.py \
--model_dir ./Phi-4-mini-instruct \
--output_dir ./checkpoint_nvfp4 \
--dtype bfloat16 \
--qformat nvfp4 \
--kv_cache_dtype fp8 \
--calib_dataset cnn_dailymail \
--calib_size 64 \
--batch_size 1 \
--calib_max_seq_length 256 \
--tokenizer_max_seq_length 2048 \
--device cpu \
--device_map cpu
Then build the engine:
trtllm-build \
--checkpoint_dir ./checkpoint_nvfp4 \
--output_dir ./engine_nvfp4 \
--gemm_plugin auto \
--gpt_attention_plugin auto \
--max_batch_size 1 \
--max_input_len 256 \
--max_seq_len 512 \
--max_num_tokens 128 \
--workers 1 \
--monitor_memory
Validation
The checkpoint was validated by building a local engine and running inference on:
- GPU:
NVIDIA GeForce RTX 5070 Laptop GPU - Runtime:
TensorRT-LLM 1.2.0rc6
Smoke-test prompt:
Explain the four basic arithmetic operations in one short sentence each.
Observed response excerpt (max_tokens=32):
Addition combines numbers to find a total. Subtraction removes a quantity from another. Multiplication calculates the product of numbers. Division divides a number by another to find
Validated Local Engine Characteristics
Local build and runtime characteristics from the validated engine used for the benchmark snapshot below:
| Property | Value |
|---|---|
| Checkpoint size | 4.0 GB |
| Built engine size | 3.0 GB |
| Tested GPU | NVIDIA GeForce RTX 5070 Laptop GPU |
| GPU memory reported by benchmark host | 7.53 GiB |
Engine build max_batch_size |
1 |
Engine build max_input_len |
256 |
Engine build max_seq_len |
512 |
Engine build max_num_tokens |
128 |
| Runtime effective max input length | 128 |
| Engine load footprint | ~3.0 GiB |
| Paged KV cache allocation | ~3.58 GiB |
| Practical total GPU footprint on this setup | ~6.6 GiB |
Important: the 256 / 512 / 128 limits above belong only to this particular local engine build. They are not the intrinsic maximum context or generation limits of Phi-4-mini-instruct itself.
The runtime effective input length became 128 on this build because TensorRT-LLM enabled packed input and context FMHA and clamped the usable prompt budget to the engine token budget.
These values are specific to the local engine build used for validation and will change if you rebuild with different TensorRT-LLM settings and memory budgets.
Benchmark Snapshot
Local single-GPU measurements from the validated local engine on RTX 5070 Laptop GPU, using TensorRT-LLM synthetic fixed-length requests, 20 requests per profile, 2 warmup requests, and concurrency=1.
| Profile | Input | Output | TTFT | TPOT | Output tok/s | Avg latency |
|---|---|---|---|---|---|---|
tiny_16_32 |
16 | 32 | 12.53 ms |
10.17 ms |
97.59 |
327.88 ms |
short_chat_42_64 |
42 | 64 | 15.57 ms |
12.72 ms |
78.33 |
817.03 ms |
balanced_64_64 |
64 | 64 | 15.66 ms |
12.74 ms |
78.24 |
818.01 ms |
long_prompt_96_32 |
96 | 32 | 15.58 ms |
12.48 ms |
79.50 |
402.50 ms |
long_generation_32_96 |
32 | 96 | 14.90 ms |
12.13 ms |
82.27 |
1166.89 ms |
These numbers are local measurements from one machine and should be treated as reference values, not portability guarantees.
Quick Parity Check
A small public sanity-check was run against the upstream Hugging Face baseline on 20 validation examples from ARC-Challenge and 20 validation examples from OpenBookQA.
| Benchmark | HF baseline | TRT NVFP4 | Agreement |
|---|---|---|---|
ARC-Challenge |
0.90 |
0.80 |
0.85 |
OpenBookQA |
0.80 |
0.75 |
0.85 |
Overall |
0.85 |
0.775 |
0.85 |
This is only a quick local parity check, not a full benchmark suite. It is intended to show the practical tradeoff of this conversion on a small public subset.
FP8 vs NVFP4
The table below compares two locally validated TensorRT-LLM variants built for the same GPU family and the same local engine limits (max_batch_size=1, max_seq_len=512, max_num_tokens=128).
| Variant | Checkpoint | Engine | short_chat_42_64 |
balanced_64_64 |
long_generation_32_96 |
Quick-check overall | Quick-check change vs TRT FP8 | Practical reading |
|---|---|---|---|---|---|---|---|---|
FP8 |
5.3 GB |
5.4 GB |
54.88 tok/s |
56.68 tok/s |
55.68 tok/s |
0.85 |
baseline |
Best balance in these local tests |
NVFP4 |
4.0 GB |
3.0 GB |
78.33 tok/s |
78.24 tok/s |
82.27 tok/s |
0.775 |
-7.5 pts on this quick-check |
Faster and smaller, but with a visible quality drop |
This comparison is intentionally local and narrow. It should not be treated as a universal benchmark across all prompts, datasets, GPUs, or TensorRT-LLM versions.
HF baseline on that same 40-question subset: 0.85.
On that same 40-question subset, the local TensorRT-LLM FP8 engine also scored 0.85.
Notes
- This is not an official Microsoft or NVIDIA release.
- This repository does not include a prebuilt TensorRT engine.
- Engine compatibility and performance depend on your GPU, driver, CUDA, TensorRT, and TensorRT-LLM versions.
NVFP4is attractive for speed and engine size on Blackwell GPUs, but this local quick-check showed a meaningful quality drop relative toFP8.
- Downloads last month
- 30
Model tree for Shoolife/Phi-4-mini-instruct-TensorRT-LLM-Checkpoint-NVFP4
Base model
microsoft/Phi-4-mini-instruct