Skip to main content

flash llm rl

Project description

⚡ FlashRL ⚡

Fast RL training with Quantized Rollouts (Blog)

What is FlashRL?Quick StartUsage GuideExamplesRoad MapCitation

FlashRL patches the inference backend to generate RL rollouts in INT8 & FP8, with accurate rollout logprob.

DAPO 32B run Figure 1. Left: AIME accuracy of Qwen2.5-32B DAPO training with INT8 and BF16 precisions for rollout generation using vLLM engine. Right: Training throughput (updates per hour) in the DAPO training (vLLM + BF16 FSDP).

⚡ Quick Start

Installation

pip install flash-llm-rl # need to be installed in all nodes in multi-node training

(Optional) there are two options to verify the FlashRL install: 1) set FLASHRL_LOGGING_LEVEL to DEBUG and compare the log with the provided ones; 2) for more details / debugging, please follow the Tutorial.

Rollout Generation w. FP8 Quantization

FlashRL is implemented as a plug-in-and-play manner, using environment variables FLASHRL_CONFIG to control the quantization precision. Note that, due to quantization overhead, it is only recommended to use quantized rollout in the combination of large model (i.e., 14B+, preferrable 32B+) and long cot generation (DAPO training instead of GSM8K training).

# for single-node job
export FLASHRL_CONFIG=fp8
bash verl/examples/ppo_trainer/run_qwen2.5-32b.sh

# alternatively, for multi-node jobs via `ray submit`, fp8 online quantization will be turned on via
# > echo "  FLASHRL_CONFIG: 'fp8'" | tee -a verl/trainer/runtime_env.yaml # add `FLASHRL_CONFIG: 'fp8'` to runtime env
# > bash verl/recipe/dapo/run_dapo_qwen2.5_32b.sh # this can be any scripts

RL Logprob Patch Only

Setting the config to bf16 to extract precise logprob used in sampling without rollout quantization. This is useful for applying the Truncated Importance Sampling.

#  for single-node job
export FLASHRL_CONFIG=bf16
bash verl/examples/ppo_trainer/run_qwen2.5-32b.sh

# alternatively, for multi-node jobs via `ray submit`, RL Logprob Patch Only will be turned on via
# > echo "  FLASHRL_CONFIG: 'bf16'" | tee -a verl/trainer/runtime_env.yaml # add `FLASHRL_CONFIG: 'fp8'` to runtime env
# > bash verl/recipe/dapo/run_dapo_qwen2.5_32b.sh # this can be any scripts

Usage Guide

FlashRL has 3 major functionality, profiling, configure helper, and patcher.

Profiling (optional for fp8 and bf16)

This step is not needed for the native fp8 online quantization supported by vLLM, and the logprog-only path bf16, and is needed for int8 or fp8_channel quantization. Specifically, profilling compares a bf16 model and a quantized model to decide how the online quantization should be performed for an updated model. Please find below an example for Qwen/Qwen2.5-32B and Qwen/Qwen2.5-0.5B-Instruct. The quantized model can be any w8a8/fp8 model produced by llm-compressor. Note that, Redhat AI provides various quantized models, and can be used here as in the 0.5B-Instruct example.

# for `Qwen/Qwen2.5-32B`
flashrl profile -m Qwen/Qwen2.5-32B -qm LiyuanLucasLiu/Qwen2.5-32B-quantized.w8a8 -o ${PROFILE_PATH:-"$HOME/profile.32b.pt"} --fn int8

# for `Qwen/Qwen2.5-0.5B-Instruct`
flashrl profile -m Qwen/Qwen2.5-0.5B-Instruct -qm RedHatAI/Qwen2.5-0.5B-Instruct-quantized.w8a8 -o ${PROFILE_PATH:-"$HOME/profile.0_5b.pt"} --fn int8

Configure Helper (optional for fp8 and bf16)

This step is not needed for the native fp8 online quantization supported by vLLM, and the logprog-only path bf16, and is needed for int8 or fp8_channel quantization. Specifically, configure helper creates a yaml file for the patcher to use. Please find below an example for Qwen/Qwen2.5-32B and Qwen/Qwen2.5-0.5B-Instruct.

# for `Qwen/Qwen2.5-32B`
flashrl setup -m LiyuanLucasLiu/Qwen2.5-32B-quantized.w8a8 -p $HOME/profile.32b.pt --fn int8 -o ${CONFIG_PATH:-"$HOME/.flashrl_config.32b.yaml"}

# for `Qwen/Qwen2.5-0.5B-Instruct`
flashrl setup -m RedHatAI/Qwen2.5-0.5B-Instruct-quantized.w8a8 -p $HOME/profile.0_5b.pt --fn int8 -o ${CONFIG_PATH:-"$HOME/.flashrl_config.0_5b.yaml"}

Patcher

Patcher would check the environment variable and operates accordingly. Please find the supported environment variables as below.

Environment Variable Usage
FLASHRL_CONFIG applies patcher if configured, supports bf16, fp8, local profile paths (e.g., $HOME/.flashrl_config.32b.yaml), and uploaded profiles (e.g., LiyuanLucasLiu/Qwen2.5-0.5B-Instruct-quantized.w8a8-RedHatAI/flashrl_config.yaml)
FLASHRL_LMHEAD_FP32 if set to 1, forcing vLLM conducting lm head compute in bf16
FLASHRL_LOGGING_LEVEL set to DEBUG to turn on verbose logging for FlashRL functions
FLASHRL_LOGGING_FILE if set, will save the log to files as well
FLASHRL_TEST_RELOAD functionality provided to test FlashRL install, check this guide for more details

Examples

Run Detail Script Command Log
INT8 Rollout for Qwen2.5-0.5B-Instruct on GSM8K Script bash recipe/flash_rl/gsm8k_qwen0_5b_int8.sh flash-int8-TIS-2 2 Wandb Log
INT8 Rollout for Qwen2.5-32B-Instruct on DAPO Script bash recipe/flash_rl/dapo_qwen32b_int8.sh flash-int8-TIS-8 8 Wandb
FP8 Rollout for Qwen2.5-0.5B-Instruct on DAPO Script bash recipe/flash_rl/gsm8k_qwen0_5b_fp8.sh flash-fp8-TIS-2 2 Wandb Log
FP8 Rollout for Qwen2.5-32B-Instruct on DAPO Script bash recipe/flash_rl/dapo_qwen32b_fp8.sh flash-fp8-TIS-8 8 IN Progress

Tested Environments

Below are the combinations of the environments that we have tested on.

Image CUDA Ray vLLM verl flash-rl GSM8K 8bit example DAPO INT8 example
hiyouga/verl:ngc-th2.6.0-cu126-vllm0.8.3-flashinfer0.2.2-cxx11abi0 12.6 2.43.0 0.8.3 flash-rl 1.0.1 ✅ Tested ✅ Tested
hiyouga/verl:ngc-th2.6.0-cu126-vllm0.8.4-flashinfer0.2.2-cxx11abi0 12.6 2.43.0 0.8.4 flash-rl 1.0.1 ✅ Tested
hiyouga/verl:ngc-th2.7.0-cu12.6-vllm0.9.1 12.6 2.43.0 0.9.1 flash-rl-vllm0.9.1 1.0.2 ✅ Tested
hiyouga/verl:ngc-th2.7.1-cu12.6-vllm0.10.0 12.6 2.48.0 0.10.0 flash-rl-vllm0.9.1 1.0.2 ✅ Tested

🚧 Roadmap & Future Improvements

We're working on several improvements to Flash-RL:

  • Support of Other RL Toolkits: Currently Flash-RL only supports VeRL, we are working on rolloing out support for other packages like OpenRLHF
  • Support of Other LLM Inference Toolkits: Currently Flash-RL only supports vLLM, we are working on rolloing out support for other tollkits like SgLang
  • Further Throughput Optimization: We are working on implementing efficient GPU kernels to accelerate online quantization

📚 Citation

If you find our work useful, please cite us:

@misc{yao2025offpolicy,
  title = {Your Efficient RL Framework Secretly Brings You Off-Policy RL Training},
  url = {https://fengyao.notion.site/off-policy-rl},
  author = {Yao, Feng and Liu, Liyuan and Zhang, Dinghuai and Dong, Chengyu and Shang, Jingbo and Gao, Jianfeng},
  journal = {Feng Yao's Notion},
  year = {2025},
  month = aug,
}
@misc{yao2025flashrl,
  title = {FlashRL: 8Bit Rollouts, Full Power RL},
  url = {https://fengyao.notion.site/flash-rl},
  author = {Liu, Liyuan and Yao, Feng and Zhang, Dinghuai and Dong, Chengyu and Shang, Jingbo and Gao, Jianfeng},
  journal = {Feng Yao's Notion},
  year = {2025},
  month = aug,
}

Questions?

If you have any questions related to the code or the blog, feel free to reach out to us at Liyuan Liu and Feng Yao.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flash_llm_rl-1.0.3.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flash_llm_rl-1.0.3-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

Details for the file flash_llm_rl-1.0.3.tar.gz.

File metadata

  • Download URL: flash_llm_rl-1.0.3.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for flash_llm_rl-1.0.3.tar.gz
Algorithm Hash digest
SHA256 afd010b1586d8656b24a24ff709ffb75ed248d1f8924fbe0105aeedcb9bd5c3d
MD5 cabdb49e22a5adf2c4ee09995c45831e
BLAKE2b-256 afabe16717caab1690901ffb928d211e14282af9b656f1495e224e2d1f3952a5

See more details on using hashes here.

File details

Details for the file flash_llm_rl-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: flash_llm_rl-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for flash_llm_rl-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5ea76fb297d294081b5e47acd76c0083187656e2308a7b6fb2545f2feeb0bbb4
MD5 918011729ea1fa97d0ab7f04c2444fa4
BLAKE2b-256 29fa3cde4b740ce3c5b8375a4205154a5d844881af7a4162eff548389ea1d2a5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page