mKernel: Fast Multi-GPU, Multi-Node Fused Kernels

📅 2026-09-11
📈 Citations: 0
Influential: 0
📄 PDF
🤖 AI Summary
为解决分布式训练和推理中的通信瓶颈问题,mKernel通过多GPU、多节点融合内核,在计算、节点内NVLink通信和节点间RDMA之间进行重叠处理。
📝 Abstract
Communication has become a bottleneck in distributed training and inference of large models. Overlapping communication with computation at the granularity of kernels, on separate streams, reduces only part of this communication cost. Fused kernels often have better performance by transmitting each output tile as soon as it is produced, but existing fused kernels are largely confined to a single NVLink domain. We present mKernel, a library of multi-GPU, multi-node fused kernels that overlap computation, intra-node NVLink communication, and inter-node RDMA at tile granularity. mKernel partitions the streaming multiprocessors (SMs) of a persistent kernel into compute and communication roles, and an on-GPU controller tunes the SM partition adaptively at run time, since the best SM partition varies with the kernel and the input shape. It structures data movement hierarchically so that data traversing the inter-node network is minimized. Finally, it drives the network from the GPU through a lightweight command queue and host proxy implemented directly on RDMA verbs, which allows the same kernels to run on any network backend (e.g. InfiniBand and on AWS EFA); we observe, surprisingly, that GPUDirect Async (IBGDA) yields little additional benefit over host-assisted GPU-initiated communication. We implement five kernels spanning tensor, sequence, and expert parallelism. On two 16-GPU H200 clusters, mKernel achieves speedups of up to 1.72x on GEMM+AllReduce and $1.88\times$ on Ring Attention.
Problem

Research questions and friction points this paper is trying to address.

Communication
Distributed Training
Fused Kernels
Multi-GPU
Multi-Node
Innovation

Methods, ideas, or system contributions that make the work stand out.

multi-GPU
fused kernels
NVLink
RDMA
adaptive SM partitioning
🔎 Similar Papers
No similar papers found.