perf: fuse fp8 linear fwd and bwd into single kernel calls

- fp8_linear_forward: cast + cublasLt GEMM + transpose + bias in one call
- fp8_linear_backward: scale-free, dtype derived from input tensor
- drops per-op Python dispatch (was ~6-8 launches per linear) and amax syncs
- 1024x1024 linear: 6.8x slow -> 0.67x (36.7us vs 24.8us bf16)
- small-model e2e still 1.71x slow; 15bt estimate ~0.78x (linear-heavy)
This commit is contained in:
2026-08-14 01:24:37 +08:00
parent f9efb705b8
commit 15862d4b56
3 changed files with 206 additions and 20 deletions
+7 -5
View File
@@ -10,7 +10,7 @@ import threading
import torch
from torch.library import Library
from astrai.extension.fp8_ops import fp8_linear_forward
from astrai.extension.fp8_ops import fp8_linear_backward, fp8_linear_forward
_state = threading.local()
@@ -25,7 +25,7 @@ def fp8_linear_enabled() -> bool:
def _linear_cuda_impl(x: torch.Tensor, w: torch.Tensor, bias=None):
if fp8_linear_enabled() and x.dtype in (torch.bfloat16, torch.float32):
if fp8_linear_enabled() and x.dtype == torch.bfloat16 and w.dtype == torch.bfloat16:
return fp8_linear_forward(x, w, bias)
return torch.ops.aten.linear.default.redispatch(
torch._C.DispatchKeySet(torch._C.DispatchKey.CompositeImplicitAutograd),
@@ -37,10 +37,12 @@ def _linear_cuda_impl(x: torch.Tensor, w: torch.Tensor, bias=None):
def _linear_backward_cuda_impl(input_tensor, grad_output, weight, output_mask):
# VariableType wraps aten::linear; its backward runs aten::linear_backward
# with schema (self, grad_output, weight, mask). weight is the leaf
# parameter, so its dtype is the model-precision baseline; cast everything
# to it (bf16 model -> bf16 GEMMs, fp32 model -> fp32, no branch):
# with schema (self, grad_output, weight, mask). When fp8 is enabled the
# fused CUDA backward runs in one call (scale-corrected); otherwise the
# plain bf16/fp32 math, dtype aligned to the leaf weight:
# grad_input = g @ W, grad_weight = g^T @ X, grad_bias = sum(g, dim=0)
if fp8_linear_enabled() and weight.dtype == torch.bfloat16:
return fp8_linear_backward(grad_output, input_tensor, weight, list(output_mask))
compute_dtype = weight.dtype
grad = grad_output.to(compute_dtype)
grad_2d = grad.reshape(-1, weight.size(0))
+12 -14
View File
@@ -65,23 +65,21 @@ fp8_mm.register_autograd(_fp8_mm_backward, setup_context=_fp8_mm_setup_context)
def fp8_linear_forward(x: torch.Tensor, w: torch.Tensor, bias=None):
"""FP8 replacement for F.linear(x, w, bias).
"""FP8 replacement for F.linear(x, w, bias), fused in one CUDA call.
x: [..., K] bf16 (any leading dims), w: [N,K] bf16 (in_dim=K).
The kernel computes a @ b^T with zero-copy col-major mapping, so w is
passed as-is (no transpose).
The kernel pipeline (scale cast -> cublasLt fp8 GEMM -> unscale + bias ->
transpose -> bf16) runs inside a single extension call, so Python-side
dispatch overhead is paid once per linear instead of per operator.
"""
orig_shape = x.shape
x2d = x.reshape(-1, w.size(1))
sx = x2d.abs().amax() / 448.0
sw = w.abs().amax() / 448.0
x8 = (x2d / sx).to(torch.float8_e4m3fn)
w8 = (w / sw).to(torch.float8_e4m3fn)
out = torch.ops.custom.fp8_mm(x8, w8, sx, sw)
out = out * (sx * sw)
if bias is not None:
out = out + bias
return out.reshape(*orig_shape[:-1], -1)
if bias is None:
bias = torch.empty(0, device=x.device, dtype=x.dtype)
return get_module("fp8_mm").fp8_linear_forward(x, w, bias)
def fp8_linear_backward(g, x, w, masks):
"""Fused linear backward (dX/dW/dB in one CUDA call, scale-corrected)."""
return get_module("fp8_mm").fp8_linear_backward(g, x, w, masks)
def fp8_available() -> bool: