Add Fused RMSNorm + FP8 Per-tensor Static Quantization to Llama 3 Models#789
Merged
dllehr-amd merged 2 commits into355_wipfrom Nov 21, 2025
Merged
Conversation
tpopp
added a commit
to amdsiloai/vllm
that referenced
this pull request
Nov 20, 2025
Cherry-pick ROCm#789 Note this needs other changes back ported.
tpopp
added a commit
to amdsiloai/vllm
that referenced
this pull request
Nov 24, 2025
Cherry-pick ROCm#789 Note this needs other changes back ported.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Enable
VLLM_ROCM_USE_AITER_TRITON_FUSED_RMSNORM_FP8_QUANTsupport for Llama 3 FP8 models. This will use one fused RMSNorm + FP8 per-tensor static quantization kernel instead of two separate RMSNorm and quantization kernel in the decoder layer, particularly before and after self-attention.This PR depends on ROCm/aiter#1330.
Test Plan
LM Evaluation Harness
E2E Testing
Test Result
Baseline (without fusion)
VLLM_ROCM_USE_AITER_TRITON_FUSED_RMSNORM_FP8_QUANT=0Fusion
VLLM_ROCM_USE_AITER_TRITON_FUSED_RMSNORM_FP8_QUANT=1Essential Elements of an Effective PR Description Checklist