Reproducibility

Reproducibility#

Reproducibility is a bedrock of scientific progress. By combining vLLM’s batch-invariant deterministic inference with Megatron-LM’s deterministic mode, vime supports bitwise experiment reproduction.

To enable deterministic training, you need to first uninstall the flash attention 3 in the docker with pip uninstall flash_attn_3 -y and set:

  # vLLM config
  --vllm-enable-deterministic-inference
  --vllm-attention-backend flashinfer

  # megatron config
  --deterministic-mode

And set the following environment variables:

     "env_vars": {
        ...,
        "NCCL_ALGO": "Ring",
        "NVTE_ALLOW_NONDETERMINISTIC_ALGO": "0",
        "CUBLAS_WORKSPACE_CONFIG": ":4096:8"
     }

Here we provide the script to do RL training on Qwen2.5 0.5B model and GSM8K dataset with full deterministic.

For data and checkpoint preparation, please run:

# download
hf download --repo-type dataset zhuzilin/gsm8k --local-dir /root/gsm8k
hf download Qwen/Qwen2.5-0.5B-Instruct --local-dir /root/Qwen2.5-0.5B-Instruct

# convert ckpt
cd vime/
source scripts/models/qwen2.5-0.5B.sh
PYTHONPATH=/root/Megatron-LM/ python \
   tools/convert_hf_to_torch_dist.py \
   ${MODEL_ARGS[@]} \
   --hf-checkpoint /root/Qwen2.5-0.5B-Instruct \
   --save /root/Qwen2.5-0.5B-Instruct_torch_dist/

And to run training,

bash scripts/run-qwen2.5-0.5B-reproducibility.sh

For screen shots of the wandb, please refer to pull#370.

Train/rollout log-prob alignment (GLM-5)#

Beyond single-side bitwise reproduction, vime can align the training log-probs with the rollout (inference) log-probs. This is currently supported only for the GLM-5 structure (MLA + DSA sparse attention), and requires the deterministic VLLM / batch-invariant DeepGEMM / DeepEP build. Vime installs the required Megatron-side alignment hooks at runtime; no extra Megatron patch is required.

Supported in this path:

  • DSA sparse attention (flashmla_sparse prefill/decode), including deterministic NSA RadixCache/prefix cache;

  • DeepGEMM batch-invariant block-FP8 forward for dense and grouped-MoE layers (with BF16 backward);

  • fp32 MoE router (the LM head stays bf16 on both train and rollout — matching precision, not fp32, is what aligns);

  • VLLM DeepEP low-latency rollout plus Megatron DeepEP normal training. A compact second normal dispatch preserves every top-k route, and the token owner performs the weighted reduction in slot order and FP32. Ordinary Megatron all-to-all is not an alignment backend for this path;

  • bf16 or FP8-E4M3 KV cache. For flashmla_sparse, VLLM stores packed FP8 cache entries and gathers/dequantizes only the selected pages before its BF16 sparse kernel. The maintained gate defaults to FP8-E4M3 and does not use rollout routing replay (R3), so all main-model parameters, including the router and experts, execute backward. The auxiliary DSA indexer remains frozen through --freeze-indexer.

The regression gate is tests/test_glm52_6layer_deterministic_e2e.py (6-layer GLM-5.2, single-node EP8): it runs a real Megatron→VLLM online-weight-update rollout, trains all main-model parameters, and asserts train_rollout_logprob_abs_diff < 1e-6 (the established DeepEP alignment reference is in the x e-7 range).

An additional short EP8 gate, tests/test_glm52_layerwise_zero_e2e.py, records the visible output of decoder layers 0–5 on both sides and requires every matched hidden-state element to have an absolute difference of exactly zero.