Falcata: CUDA-native GBDT rebuilds training loop, 14x faster than LightGBM
srchvrs · x · 2026-08-18
- Leaf-wise growth in LightGBM-style trees is a strictly sequential loop (one histogram, one split, repeated thousands of times per tree). On GPU this means a kernel launch plus host-device sync per step, leaving the card mostly idle.
- @kronerfelix and the author forked LightGBM into Falcata: whole levels grow in a single batched launch while provably producing the exact same tree a leaf-at-a-time learner would build — leaf-wise trees, level-wise launch counts.
- On the same single GPU with matched or better held-out quality: 2.4x faster than XGBoost, 4.7x faster than CatBoost, 14x faster than LightGBM.
- Flagship workload: Numerai (6.8M rows × 3,555 features).
More from Infra
- Optimizing Qwen3.8 27B on 16GB VRAM: Complete Benchmarks and Guide — MaxDev0 · 2026-08-18
- AWS launches OpenClaw agents framework with Bedrock AgentCore payments integration — kleffew94 · 2026-08-18
- UBS estimates Nvidia could generate $1B daily in free cash flow — BenBajarin · 2026-08-18
- Google DeepMind Releases 'How To Scale Your Model': A Systems View of LLMs — philhchen · 2026-08-18
- RTX 5090 Benchmarks Qwen3.8 27B: Stable Speed at Long Context — _-_David · 2026-08-18
- Guide: squeeze ~18-20 tok/s from Qwen3.8-27B on 16GB VRAM with lossless KV cache — BassAzayda · 2026-08-18