Full Kimi pilot on H200
Best first full-training target when Hopper kernels and framework support matter most.
- GPUs16 x H200:8 = 128
- ActorTP 8, PP 2, EP 8, ETP 1
- RolloutTP 8, EP 8, rollout_n 1
- UseFull fine-tuning pilot after conversion is validated
Kimi K2.6 is a trillion-parameter MoE with 32B active parameters per token. Training it is less about one huge GPU and more about balancing expert sharding, rollout throughput, RDMA weight sync, and adapter size.
The full modes are expensive cluster experiments. The LoRA mode is the fastest way to validate SDPO rewards, feedback templates, rollout quality, and NCCL/RDMA behavior.
Best first full-training target when Hopper kernels and framework support matter most.
Promising for memory-bound rollout and MoE serving, but image and kernel compatibility matter.
Best first Kimi experiment because adapter updates are small enough for fast iteration.
The expensive part is not only training. Rollout workers, verifier rewards, dense self-teacher probabilities, and checkpoint sync must keep the trainer fed.
Megatron shards the Kimi MoE actor across TP, PP, EP, ETP, and optional CP.
vLLM samples current-policy trajectories with rollout TP and expert parallelism.
Tests, tools, judges, or verifiers produce rewards and correction text.
Kimi or a frozen checkpoint scores feedback-conditioned trajectories with k1 OPD.
NCCL over RDMA moves full or LoRA weight deltas back to rollout workers quickly.
Kimi K2.6 is an MoE model, so expert placement is a first-class sizing problem. Keep the knobs explicit and change one at a time.
Tensor parallelism splits matrix math. Pipeline parallelism splits layers. Expert parallelism spreads MoE experts. Expert tensor parallelism splits individual experts. Context parallelism helps when sequence length dominates memory.
For rollout serving in the current Verl/vLLM path, keep expert parallelism consistent with tensor and data parallelism: `rollout_ep == rollout_tp * rollout_dp`.
Modal's RL infrastructure blog shows why clustered functions with RDMA matter. Kimi-scale updates are too large to treat network transfer as background noise.
595.2 GB INT4 MoE plus BF16 attention.
Rank-32 adapter update with 9.4 GB transferred.
Rank-32 adapter update with 41.0 GB transferred.
LoRA turns the first Kimi SDPO run from a massive full-weight synchronization problem into a smaller adapter synchronization problem while preserving the same reward and rollout plumbing.