FP8 Quantization in NeMo RL#

This module provides a suite of tools to enable FP8 quantization for large language models. It is currently under active development.

Supported Features#

FP8 Generation#

  • Implements DeepSeek-style FP8 quantization using sub-channel scaling.

FP8 Training#

  • Uses TransformerEngine for linear layer implementation.

  • Supports both DeepSeek-style sub-channel scaling and per-tensor scaling.

Integration with NeMo RL#

NeMo RL applies monkey patches to several core vLLM components to enable FP8 generation for reinforcement learning.
When the init_fp8 function is called, it modifies the following:

RayDistributedExecutor#

  • For multi-GPU inference, the executor is patched to ensure that every worker process applies the same FP8 patches before model initialization.

Quantization Utilities#

  • Functions within vllm.model_executor.layers.quantization are replaced with custom implementations that support:

    • Power-of-2 scaling

    • Other custom features

Weight Loading#

  • A custom load_weights function performs on-the-fly quantization of model weights from higher-precision formats to FP8.

Usage#

FP8 generations are recommended to be configured with the following settings:

 loss_fn:
     # importance sampling helps improve stability
     use_importance_sampling_correction: true

 policy:
     generation:
         vllm_cfg:
             precision: 'fp8'
             # DeepGemm is much more performant than vLLM's default cutlass fp8 subchannel scaling kernels
             use_deep_gemm: true
             # Users can specify number of layers to be kept in BF16 precision in their experiments
             # and by default they are set to 0
             num_last_layers_in_bf16: 0
             num_first_layers_in_bf16: 0
             # Use FP32 scaling factors. Rounding scaling factors to the nearest pow2 may improve quantization 
             # fidelity however this feature is still under research.
             pow2_weight_scaling_factors: False
             pow2_activation_scaling_factors: False

For MXFP8, quantization_ignore_patterns accepts exact module names, substrings, and fnmatch wildcards. Matching modules remain in BF16. For example, the following scope quantizes only Qwen3 routed experts while keeping attention, the router, and the language-model head in BF16:

    policy:
        generation:
            vllm_cfg:
                precision: "fp8"
                is_mx: true
                quantization_ignore_patterns:
                    - model.layers.*.self_attn.*
                    - model.layers.*.mlp.gate

lm_head is always excluded from FP8 and MXFP8 quantization, even when it is not listed in quantization_ignore_patterns in the YAML configuration. Models with MTP layers must list their MTP module names explicitly, for example mtp.* and language_model.mtp.*. External speculative-decoding drafts use a separate vLLM model configuration and must configure their precision separately.

quantization_ignored_layer_kws is deprecated for MXFP8 in NeMo RL 0.8; new MXFP8 configurations should use quantization_ignore_patterns instead. quantization_ignore_patterns requires is_mx: true. Non-MX FP8 (precision: "fp8" without is_mx) has no pattern-based replacement yet and must continue to use quantization_ignored_layer_kws.

To train with FP8, you need to set the Megatron path and configure it using the following settings:

    policy:
        megatron_cfg:
            fp8_cfg:
                fp8: "hybrid"               # choices: [hybrid, e4m3]
                fp8_recipe: "tensorwise"    # choices: [tensorwise, blockwise]
                fp8_param: false            # boolean value

Compatibility Note for DeepSeek-Style FP8 Training#

The TransformerEngine implementation for this recipe requires CUDA version ≥ 12.9. The current NeMo RL container uses CUDA 13.2 (via docker/Dockerfile), which satisfies this requirement. Users on older setups should check out the latest code and build the container from docker/Dockerfile (instructions).

If you are using nemo-rl before this commit, you will see the following error when trying to use fp8 training:

File "/opt/ray_venvs/nemo_rl.models.policy.workers.megatron_policy_worker.MegatronPolicyWorker/lib/python3.12/site-packages/transformer_engine/pytorch/fp8.py", line 646, in fp8_autocast
FP8GlobalStateManager.fp8_autocast_enter(
File "/opt/ray_venvs/nemo_rl.models.policy.workers.megatron_policy_worker.MegatronPolicyWorker/lib/python3.12/site-packages/transformer_engine/pytorch/fp8.py", line 465, in fp8_autocast_enter
assert fp8_block_available, reason_for_no_fp8_block
           ^^^^^^^^^^^^^^^^^^^
AssertionError: FP8 block scaled GEMM requires Hopper and CUDA >= 12.9.

Accuracy#

Llama-3.1-8B-Instruct GRPO Curve BF16 vs FP8

The above results are from Llama-3.1-8B-Instruct GRPO experiments. You can run them with the following example configs:

  • For BF16: examples/configs/grpo_math_8B_megatron.yaml

  • For FP8: examples/configs/grpo_math_8B_megatron_fp8.yaml

In the experiment in this figure, enabling FP8 rollout and training gives 15%-25% decrease in step time, and the validation accuracy curves match up to 1000 steps. Efforts are ongoing to perform longer runs and further optimize performance.