80 lines
3.0 KiB
Python
80 lines
3.0 KiB
Python
|
|
from functools import partial
|
||
|
|
import math
|
||
|
|
import torch
|
||
|
|
import torch.nn as nn
|
||
|
|
import torch.nn.functional as F
|
||
|
|
|
||
|
|
from einops import rearrange, repeat
|
||
|
|
|
||
|
|
from flash_attn.utils.benchmark import benchmark_all, benchmark_forward, benchmark_backward, benchmark_combined
|
||
|
|
from flash_attn.flash_attn_interface import flash_attn_unpadded_qkvpacked_func
|
||
|
|
from flash_attn.triton.fused_attention import attention as attention
|
||
|
|
|
||
|
|
|
||
|
|
def attention_pytorch(qkv, dropout_p=0.0, causal=False):
|
||
|
|
"""
|
||
|
|
Arguments:
|
||
|
|
qkv: (batch_size, seqlen, 3, nheads, head_dim)
|
||
|
|
dropout_p: float
|
||
|
|
Output:
|
||
|
|
output: (batch_size, seqlen, nheads, head_dim)
|
||
|
|
"""
|
||
|
|
batch_size, seqlen, _, nheads, d = qkv.shape
|
||
|
|
q, k, v = qkv.unbind(dim=2)
|
||
|
|
q = rearrange(q, 'b t h d -> (b h) t d')
|
||
|
|
k = rearrange(k, 'b s h d -> (b h) d s')
|
||
|
|
softmax_scale = 1.0 / math.sqrt(d)
|
||
|
|
# Preallocate attn_weights for `baddbmm`
|
||
|
|
scores = torch.empty(batch_size * nheads, seqlen, seqlen, dtype=qkv.dtype, device=qkv.device)
|
||
|
|
scores = rearrange(torch.baddbmm(scores, q, k, beta=0, alpha=softmax_scale),
|
||
|
|
'(b h) t s -> b h t s', h=nheads)
|
||
|
|
if causal:
|
||
|
|
# "triu_tril_cuda_template" not implemented for 'BFloat16'
|
||
|
|
# So we have to construct the mask in float
|
||
|
|
causal_mask = torch.triu(torch.full((seqlen, seqlen), -10000.0, device=scores.device), 1)
|
||
|
|
# TD [2022-09-30]: Adding is faster than masked_fill_ (idk why, just better kernel I guess)
|
||
|
|
scores = scores + causal_mask.to(dtype=scores.dtype)
|
||
|
|
attention = torch.softmax(scores, dim=-1)
|
||
|
|
attention_drop = F.dropout(attention, dropout_p)
|
||
|
|
output = torch.einsum('bhts,bshd->bthd', attention_drop , v)
|
||
|
|
return output.to(dtype=qkv.dtype)
|
||
|
|
|
||
|
|
|
||
|
|
def attention_triton(q, k, v):
|
||
|
|
"""
|
||
|
|
No dropout and only support causal=True.
|
||
|
|
Triton implementation seems to require q, k, v being contiguous?
|
||
|
|
Arguments:
|
||
|
|
q, k, v: (batch_size, nheads, seqlen, head_dim)
|
||
|
|
Output:
|
||
|
|
output: (batch_size, nheads, seqlen, head_dim)
|
||
|
|
"""
|
||
|
|
softmax_scale = 1.0 / math.sqrt(q.shape[-1])
|
||
|
|
return attention(q, k, v, softmax_scale)
|
||
|
|
|
||
|
|
|
||
|
|
torch.manual_seed(0)
|
||
|
|
repeats = 30
|
||
|
|
batch_size = 2
|
||
|
|
seqlen = 2048
|
||
|
|
nheads = 12
|
||
|
|
headdim = 128
|
||
|
|
dropout_p = 0.0
|
||
|
|
causal = True
|
||
|
|
dtype = torch.bfloat16
|
||
|
|
device = 'cuda'
|
||
|
|
|
||
|
|
qkv = torch.randn(batch_size, seqlen, 3, nheads, headdim, device=device, dtype=dtype,
|
||
|
|
requires_grad=True)
|
||
|
|
cu_seqlens = torch.arange(0, (batch_size + 1) * seqlen, step=seqlen, dtype=torch.int32,
|
||
|
|
device=qkv.device)
|
||
|
|
|
||
|
|
benchmark_all(flash_attn_unpadded_qkvpacked_func, rearrange(qkv, 'b s ... -> (b s) ...'),
|
||
|
|
cu_seqlens, seqlen, dropout_p, causal=causal, repeats=repeats, desc='FlashAttention')
|
||
|
|
benchmark_all(attention_pytorch, qkv, dropout_p, causal=causal,
|
||
|
|
repeats=repeats, desc='PyTorch Attention')
|
||
|
|
|
||
|
|
q, k, v = [torch.randn(batch_size, nheads, seqlen, headdim, device=device, dtype=dtype,
|
||
|
|
requires_grad=True) for _ in range(3)]
|
||
|
|
benchmark_all(attention_triton, q, k, v, repeats=repeats, desc='FlashAttention Triton')
|