r/MachineLearning · · 1 min read

Cross-Platform Fused MoE Dispatch in Triton: Portable Expert Routing Without CUDA [R]

Mirrored from r/MachineLearning for archival readability. Support the source by reading on the original site.

New preprint. A Mixture-of-Experts inference kernel (TritonMoE) written entirely in OpenAI Triton, targeting portability across NVIDIA and AMD without vendor-specific code.

Highlights:

  • A fused gate+up GEMM computes both SwiGLU projections from shared tile loads, eliminating 35% of global memory traffic.
  • 89-131% of Megablocks throughput at inference batch sizes (up to 512 tokens) on A100; the same kernel runs on MI300X unchanged.
  • Limitations: falls behind at 2048+ tokens, and degrades with 64+ experts under extreme routing skew.

Paper: https://arxiv.org/abs/2605.23911

Code: https://github.com/bassrehab/triton-kernels

Writeup with benchmarks: https://subhadipmitra.com/blog/2026/fused-moe-dispatch-triton/

submitted by /u/bassrehab
[link] [comments]

Discussion (0)

Sign in to join the discussion. Free account, 30 seconds — email code or GitHub.

Sign in →

No comments yet. Sign in and be the first to say something.

More from r/MachineLearning