File size: 9,123 Bytes
b66f552 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | # Copyright (c) 2023-2025, Songlin Yang, Yu Zhang
# code adapted from
# https://triton-lang.org/main/getting-started/tutorials/03-matrix-multiplication.html
import torch
import triton
import triton.language as tl
from fla.ops.utils.op import exp
from fla.utils import autotune_cache_kwargs, input_guard
# `triton.jit`'ed functions can be auto-tuned by using the `triton.autotune` decorator, which consumes:
# - A list of `triton.Config` objects that define different configurations of
# meta-parameters (e.g., `BM`) and compilation options (e.g., `num_warps`) to try
# - An auto-tuning *key* whose change in values will trigger evaluation of all the
# provided configs
@triton.heuristics({
'HAS_ALPHA': lambda args: args['alpha'] is not None,
'HAS_BETA': lambda args: args['beta'] is not None,
})
@triton.autotune(
configs=[
triton.Config({'BM': 128, 'BK': 64, 'BN': 256, 'G': 4}, num_stages=3, num_warps=8),
triton.Config({'BM': 64, 'BK': 32, 'BN': 256, 'G': 4}, num_stages=4, num_warps=4),
triton.Config({'BM': 128, 'BK': 32, 'BN': 128, 'G': 4}, num_stages=4, num_warps=4),
triton.Config({'BM': 128, 'BK': 32, 'BN': 64, 'G': 4}, num_stages=4, num_warps=4),
triton.Config({'BM': 64, 'BK': 32, 'BN': 128, 'G': 4}, num_stages=4, num_warps=4),
triton.Config({'BM': 128, 'BK': 32, 'BN': 32, 'G': 4}, num_stages=4, num_warps=4),
triton.Config({'BM': 64, 'BK': 32, 'BN': 32, 'G': 4}, num_stages=5, num_warps=2),
triton.Config({'BM': 32, 'BK': 32, 'BN': 64, 'G': 4}, num_stages=5, num_warps=2),
# Good config for fp8 inputs.
# triton.Config({'BM': 128, 'BK': 128, 'BN': 256, 'G': 4}, num_stages=3, num_warps=8),
# triton.Config({'BM': 256, 'BK': 128, 'BN': 128, 'G': 4}, num_stages=3, num_warps=8),
# triton.Config({'BM': 256, 'BK': 128, 'BN': 64, 'G': 4}, num_stages=4, num_warps=4),
# triton.Config({'BM': 64, 'BK': 128, 'BN': 256, 'G': 4}, num_stages=4, num_warps=4),
# triton.Config({'BM': 128, 'BK': 128, 'BN': 128, 'G': 4}, num_stages=4, num_warps=4),
# triton.Config({'BM': 128, 'BK': 64, 'BN': 64, 'G': 4}, num_stages=4, num_warps=4),
# triton.Config({'BM': 64, 'BK': 64, 'BN': 128, 'G': 4}, num_stages=4, num_warps=4),
# triton.Config({'BM': 128, 'BK': 64, 'BN': 32, 'G': 4}, num_stages=4, num_warps=4)
],
key=['M', 'N', 'K'],
**autotune_cache_kwargs,
)
@triton.jit
def matmul_kernel(
# Pointers to matrices
a,
b,
c,
input,
alpha,
beta,
# Matrix dimensions
M,
N,
K,
# The stride variables represent how much to increase the ptr by when moving by 1
# element in a particular dimension. E.g. `s_am` is how much to increase `a`
# by to get the element one row down (A has M rows).
stride_ab, stride_am, stride_ak, # a: batch, M, K
stride_bk, stride_bn, # b: K, N
stride_cb, stride_cm, stride_cn, # c: batch, M, N
# Meta-parameters
BM: tl.constexpr,
BK: tl.constexpr,
BN: tl.constexpr,
G: tl.constexpr,
ACTIVATION: tl.constexpr,
HAS_INPUT: tl.constexpr,
HAS_ALPHA: tl.constexpr,
HAS_BETA: tl.constexpr,
ALLOW_TF32: tl.constexpr,
X_DIM: tl.constexpr = 1,
):
"""Kernel for computing the matmul C = A x B.
A has shape (M, K), B has shape (K, N) and C has shape (M, N)
"""
# -----------------------------------------------------------
# Map program ids `pid` to the block of C it should compute.
# This is done in a grouped ordering to promote L2 data reuse.
# See above `L2 Cache Optimizations` section for details.
i_b, i_m, i_n = tl.program_id(0), tl.program_id(1), tl.program_id(2)
NM, NN = tl.num_programs(1), tl.num_programs(2)
i_m, i_n = tl.swizzle2d(i_m, i_n, NM, NN, G)
# ----------------------------------------------------------
# Create pointers for the first blocks of A and B.
# We will advance this pointer as we move in the K direction
# and accumulate
# `p_a` is a block of [BM, BK] pointers
# `p_b` is a block of [BK, BN] pointers
# See above `Pointer Arithmetic` section for details
a_batch_ptr = a + i_b * stride_ab
o_am = (i_m * BM + tl.arange(0, BM)) % M
o_bn = (i_n * BN + tl.arange(0, BN)) % N
o_k = tl.arange(0, BK)
p_a = a_batch_ptr + (o_am[:, None] * stride_am + o_k[None, :] * stride_ak)
p_b = b + (o_k[:, None] * stride_bk + o_bn[None, :] * stride_bn)
b_acc = tl.zeros((BM, BN), dtype=tl.float32)
for k in range(0, tl.cdiv(K, BK)):
# Load the next block of A and B, generate a mask by checking the K dimension.
# If it is out of bounds, set it to 0.
b_a = tl.load(p_a, mask=o_k[None, :] < K - k * BK, other=0.0)
b_b = tl.load(p_b, mask=o_k[:, None] < K - k * BK, other=0.0)
# We accumulate along the K dimension.
b_acc = tl.dot(b_a, b_b, acc=b_acc, allow_tf32=ALLOW_TF32)
# Advance the ptrs to the next K block.
p_a += BK * stride_ak
p_b += BK * stride_bk
o_cm = i_m * BM + tl.arange(0, BM)
o_cn = i_n * BN + tl.arange(0, BN)
mask = (o_cm[:, None] < M) & (o_cn[None, :] < N)
b_c = b_acc
# You can fuse arbitrary activation functions here
# while the b_acc is still in FP32!
if ACTIVATION == "leaky_relu":
b_c = leaky_relu(b_c)
elif ACTIVATION == "relu":
b_c = relu(b_c)
elif ACTIVATION == "sigmoid":
b_c = sigmoid(b_c)
elif ACTIVATION == "tanh":
b_c = tanh(b_c)
if HAS_ALPHA:
b_c *= tl.load(alpha)
if HAS_INPUT:
p_i = input + (stride_cm * o_cm[:, None] if X_DIM == 2 else 0) + stride_cn * o_cn[None, :]
mask_p = (o_cn[None, :] < N) if X_DIM == 1 else mask
b_i = tl.load(p_i, mask=mask_p, other=0.0).to(tl.float32)
if HAS_BETA:
b_i *= tl.load(beta)
b_c += b_i
# -----------------------------------------------------------
# Write back the block of the output matrix C with masks.
c_batch_ptr = c + i_b * stride_cb
p_c = c_batch_ptr + stride_cm * o_cm[:, None] + stride_cn * o_cn[None, :]
tl.store(p_c, b_c.to(c.dtype.element_ty), mask=mask)
# We can fuse `leaky_relu` by providing it as an `ACTIVATION` meta-parameter in `matmul_kernel`.
@triton.jit
def leaky_relu(x):
return tl.where(x >= 0, x, 0.01 * x)
@triton.jit
def sigmoid(x):
# σ(x) = 1 / (1 + exp(-x))
return 1.0 / (1.0 + exp(-x))
@triton.jit
def tanh(x):
# tanh(x) = (exp(x) - exp(-x)) / (exp(x) + exp(-x))
# 2 * sigmoid(2x) - 1
return (exp(x) - exp(-x)) / (exp(x) + exp(-x))
@triton.jit
def relu(x):
# ReLU(x) = max(0, x)
return tl.maximum(x, 0.0)
@input_guard
def matmul(a, b, activation=''):
assert a.dim() in [2, 3], "a must be 2D or 3D"
assert b.dim() == 2, "b must be 2D"
assert a.shape[-1] == b.shape[0], f"Incompatible dimensions: A {a.shape}, B {b.shape}"
if a.dim() == 2:
a_dim = 2
a = a.unsqueeze(0).contiguous() # (1, M, K)
else:
a_dim = 3
allow_tf32 = False if a.dtype == torch.float32 else True
B, M, K = a.shape[0], a.shape[1], a.shape[2]
K_b, N = b.shape
assert K_b == K, f"Incompatible K dimension: A {K} vs B {K_b}"
c = a.new_empty(B, M, N)
def grid(meta): return (B, triton.cdiv(M, meta['BM']), triton.cdiv(N, meta['BN']))
matmul_kernel[grid](
a, b, c, None, None, None,
M, N, K,
a.stride(0), a.stride(1), a.stride(2), # stride_ab, stride_am, stride_ak
b.stride(0), b.stride(1), # stride_bk, stride_bn (b.dim() == 2)
c.stride(0), c.stride(1), c.stride(2), # stride_cb, stride_cm, stride_cn
ACTIVATION=activation,
ALLOW_TF32=allow_tf32,
HAS_INPUT=False,
)
return c.squeeze(0) if a_dim == 2 else c
@input_guard
def addmm(
x: torch.Tensor,
a: torch.Tensor,
b: torch.Tensor,
alpha: float | None = None,
beta: float | None = None,
) -> torch.Tensor:
assert a.dim() in [2, 3], "a must be 2D or 3D"
assert b.dim() == 2, "b must be 2D"
assert a.shape[-1] == b.shape[0], f"Incompatible dimensions: A {a.shape}, B {b.shape}"
if a.dim() == 2:
a_dim = 2
a = a.unsqueeze(0).contiguous() # (1, M, K)
else:
a_dim = 3
allow_tf32 = False if a.dtype == torch.float32 else True
B, M, K = a.shape[0], a.shape[1], a.shape[2]
K_b, N = b.shape
assert K_b == K, f"Incompatible K dimension: A {K} vs B {K_b}"
c = a.new_empty(B, M, N)
def grid(meta): return (B, triton.cdiv(M, meta['BM']), triton.cdiv(N, meta['BN']))
matmul_kernel[grid](
a, b, c, x, alpha, beta,
M, N, K,
a.stride(0), a.stride(1), a.stride(2), # stride_ab, stride_am, stride_ak
b.stride(0), b.stride(1), # stride_bk, stride_bn (b.dim() == 2)
c.stride(0), c.stride(1), c.stride(2), # stride_cb, stride_cm, stride_cn
ACTIVATION=None,
ALLOW_TF32=allow_tf32,
HAS_INPUT=True,
X_DIM=x.dim(),
)
return c.squeeze(0) if a_dim == 2 else c
|