123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900 |
- from typing import Optional, Union
- import torch
- import torch.nn as nn
- # isort: off
- # We need to import the CUDA kernels after importing torch
- import flash_attn_2_cuda as flash_attn_cuda
- # isort: on
- def _get_block_size(device, head_dim, is_dropout, is_causal):
- # This should match the block sizes in the CUDA kernel
- assert head_dim <= 256
- major, minor = torch.cuda.get_device_capability(device)
- is_sm8x = major == 8 and minor > 0 # Only include sm86 and sm89, exclude sm80 (A100)
- is_sm80 = major == 8 and minor == 0
- is_sm90 = major == 9 and minor == 0
- if head_dim <= 32:
- return 128, 128
- if head_dim <= 64:
- return (128, 128) if not is_dropout else (128, 64)
- elif head_dim <= 96:
- return (64, 64) if (is_sm8x and is_causal) else (128, 64)
- elif head_dim <= 128:
- if is_sm8x:
- return (64, 64) if (not is_dropout and is_causal) else (128, 32)
- else:
- return 128, (64 if not is_dropout else 32)
- elif head_dim <= 160:
- if is_sm8x:
- return (128, 64) if not is_causal else (64, 64)
- else:
- return 128, 32
- elif head_dim <= 192:
- return (128, 64) if not is_dropout else (64, 64)
- elif head_dim <= 224:
- return (128, 64) if (is_sm80 or is_sm90) else (64, 64)
- elif head_dim <= 256:
- return (128, 64) if is_sm80 else (64, 64)
- def _flash_attn_forward(q, k, v, dropout_p, softmax_scale, causal, return_softmax):
- maybe_contiguous = lambda x: x.contiguous() if x.stride(-1) != 1 else x
- q, k, v = [maybe_contiguous(x) for x in (q, k, v)]
- out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state = flash_attn_cuda.fwd(
- q, k, v, None, dropout_p, softmax_scale, causal, return_softmax, None
- )
- return out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state
- def _flash_attn_varlen_forward(
- q,
- k,
- v,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- causal,
- return_softmax,
- ):
- maybe_contiguous = lambda x: x.contiguous() if x.stride(-1) != 1 else x
- q, k, v = [maybe_contiguous(x) for x in (q, k, v)]
- out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state = flash_attn_cuda.varlen_fwd(
- q,
- k,
- v,
- None,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- False,
- causal,
- return_softmax,
- None,
- )
- # if out.isnan().any() or softmax_lse.isnan().any():
- # breakpoint()
- return out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state
- def _flash_attn_backward(
- dout, q, k, v, out, softmax_lse, dq, dk, dv, dropout_p, softmax_scale, causal, rng_state=None
- ):
- maybe_contiguous = lambda x: x.contiguous() if x.stride(-1) != 1 else x
- # dq, dk, dv are allocated by us so they should already be contiguous
- dout, q, k, v, out = [maybe_contiguous(x) for x in (dout, q, k, v, out)]
- dq, dk, dv, softmax_d, = flash_attn_cuda.bwd(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dq,
- dk,
- dv,
- dropout_p,
- softmax_scale,
- causal,
- None,
- rng_state,
- )
- return dq, dk, dv, softmax_d
- def _flash_attn_varlen_backward(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dq,
- dk,
- dv,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- causal,
- rng_state=None,
- ):
- maybe_contiguous = lambda x: x.contiguous() if x.stride(-1) != 1 else x
- # dq, dk, dv are allocated by us so they should already be contiguous
- dout, q, k, v, out = [maybe_contiguous(x) for x in (dout, q, k, v, out)]
- dq, dk, dv, softmax_d, = flash_attn_cuda.varlen_bwd(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dq,
- dk,
- dv,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- False,
- causal,
- None,
- rng_state,
- )
- # if dk.isnan().any() or dk.isnan().any() or dv.isnan().any() or softmax_d.isnan().any():
- # breakpoint()
- return dq, dk, dv, softmax_d
- class FlashAttnQKVPackedFunc(torch.autograd.Function):
- @staticmethod
- def forward(ctx, qkv, dropout_p, softmax_scale, causal, return_softmax):
- if softmax_scale is None:
- softmax_scale = qkv.shape[-1] ** (-0.5)
- out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state = _flash_attn_forward(
- qkv[:, :, 0],
- qkv[:, :, 1],
- qkv[:, :, 2],
- dropout_p,
- softmax_scale,
- causal=causal,
- return_softmax=return_softmax and dropout_p > 0,
- )
- ctx.save_for_backward(q, k, v, out_padded, softmax_lse, rng_state)
- ctx.dropout_p = dropout_p
- ctx.softmax_scale = softmax_scale
- ctx.causal = causal
- return out if not return_softmax else (out, softmax_lse, S_dmask)
- @staticmethod
- def backward(ctx, dout, *args):
- q, k, v, out, softmax_lse, rng_state = ctx.saved_tensors
- qkv_shape = q.shape[:-2] + (3, *q.shape[-2:])
- dqkv = torch.empty(qkv_shape, dtype=q.dtype, device=q.device)
- _flash_attn_backward(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dqkv[:, :, 0],
- dqkv[:, :, 1],
- dqkv[:, :, 2],
- ctx.dropout_p,
- ctx.softmax_scale,
- ctx.causal,
- rng_state=rng_state,
- )
- dqkv = dqkv[..., : dout.shape[-1]] # We could have padded the head dimension
- return dqkv, None, None, None, None
- class FlashAttnVarlenQKVPackedFunc(torch.autograd.Function):
- @staticmethod
- def forward(ctx, qkv, cu_seqlens, max_seqlen, dropout_p, softmax_scale, causal, return_softmax):
- if softmax_scale is None:
- softmax_scale = qkv.shape[-1] ** (-0.5)
- out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state = _flash_attn_varlen_forward(
- qkv[:, 0],
- qkv[:, 1],
- qkv[:, 2],
- cu_seqlens,
- cu_seqlens,
- max_seqlen,
- max_seqlen,
- dropout_p,
- softmax_scale,
- causal=causal,
- return_softmax=return_softmax and dropout_p > 0,
- )
- ctx.save_for_backward(q, k, v, out_padded, softmax_lse, cu_seqlens, rng_state)
- ctx.dropout_p = dropout_p
- ctx.max_seqlen = max_seqlen
- ctx.softmax_scale = softmax_scale
- ctx.causal = causal
- return out if not return_softmax else (out, softmax_lse, S_dmask)
- @staticmethod
- def backward(ctx, dout, *args):
- q, k, v, out, softmax_lse, cu_seqlens, rng_state = ctx.saved_tensors
- qkv_shape = q.shape[:-2] + (3, *q.shape[-2:])
- dqkv = torch.empty(qkv_shape, dtype=q.dtype, device=q.device)
- _flash_attn_varlen_backward(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dqkv[:, 0],
- dqkv[:, 1],
- dqkv[:, 2],
- cu_seqlens,
- cu_seqlens,
- ctx.max_seqlen,
- ctx.max_seqlen,
- ctx.dropout_p,
- ctx.softmax_scale,
- ctx.causal,
- rng_state=rng_state,
- )
- dqkv = dqkv[..., : dout.shape[-1]] # We could have padded the head dimension
- return dqkv, None, None, None, None, None, None
- class FlashAttnKVPackedFunc(torch.autograd.Function):
- @staticmethod
- def forward(ctx, q, kv, dropout_p, softmax_scale, causal, return_softmax):
- if softmax_scale is None:
- softmax_scale = q.shape[-1] ** (-0.5)
- out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state = _flash_attn_forward(
- q,
- kv[:, :, 0],
- kv[:, :, 1],
- dropout_p,
- softmax_scale,
- causal=causal,
- return_softmax=return_softmax and dropout_p > 0,
- )
- ctx.save_for_backward(q, k, v, out_padded, softmax_lse, rng_state)
- ctx.dropout_p = dropout_p
- ctx.softmax_scale = softmax_scale
- ctx.causal = causal
- return out if not return_softmax else (out, softmax_lse, S_dmask)
- @staticmethod
- def backward(ctx, dout, *args):
- q, k, v, out, softmax_lse, rng_state = ctx.saved_tensors
- dq = torch.empty_like(q)
- kv_shape = k.shape[:-2] + (2, *k.shape[-2:])
- dkv = torch.empty(kv_shape, dtype=k.dtype, device=k.device)
- _flash_attn_backward(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dq,
- dkv[:, :, 0],
- dkv[:, :, 1],
- ctx.dropout_p,
- ctx.softmax_scale,
- ctx.causal,
- rng_state=rng_state,
- )
- dq = dq[..., : dout.shape[-1]] # We could have padded the head dimension
- dkv = dkv[..., : dout.shape[-1]]
- return dq, dkv, None, None, None, None
- class FlashAttnVarlenKVPackedFunc(torch.autograd.Function):
- @staticmethod
- def forward(
- ctx,
- q,
- kv,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- causal,
- return_softmax,
- ):
- if softmax_scale is None:
- softmax_scale = q.shape[-1] ** (-0.5)
- out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state = _flash_attn_varlen_forward(
- q,
- kv[:, 0],
- kv[:, 1],
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- causal=causal,
- return_softmax=return_softmax and dropout_p > 0,
- )
- ctx.save_for_backward(
- q, k, v, out_padded, softmax_lse, cu_seqlens_q, cu_seqlens_k, rng_state
- )
- ctx.dropout_p = dropout_p
- ctx.max_seqlen_q = max_seqlen_q
- ctx.max_seqlen_k = max_seqlen_k
- ctx.softmax_scale = softmax_scale
- ctx.causal = causal
- return out if not return_softmax else (out, softmax_lse, S_dmask)
- @staticmethod
- def backward(ctx, dout, *args):
- q, k, v, out, softmax_lse, cu_seqlens_q, cu_seqlens_k, rng_state = ctx.saved_tensors
- dq = torch.empty_like(q)
- kv_shape = k.shape[:-2] + (2, *k.shape[-2:])
- dkv = torch.empty(kv_shape, dtype=k.dtype, device=k.device)
- _flash_attn_varlen_backward(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dq,
- dkv[:, 0],
- dkv[:, 1],
- cu_seqlens_q,
- cu_seqlens_k,
- ctx.max_seqlen_q,
- ctx.max_seqlen_k,
- ctx.dropout_p,
- ctx.softmax_scale,
- ctx.causal,
- rng_state=rng_state,
- )
- dq = dq[..., : dout.shape[-1]] # We could have padded the head dimension
- dkv = dkv[..., : dout.shape[-1]]
- return dq, dkv, None, None, None, None, None, None, None, None
- class FlashAttnFunc(torch.autograd.Function):
- @staticmethod
- def forward(ctx, q, k, v, dropout_p, softmax_scale, causal, return_softmax):
- if softmax_scale is None:
- softmax_scale = q.shape[-1] ** (-0.5)
- out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state = _flash_attn_forward(
- q,
- k,
- v,
- dropout_p,
- softmax_scale,
- causal=causal,
- return_softmax=return_softmax and dropout_p > 0,
- )
- ctx.save_for_backward(q, k, v, out_padded, softmax_lse, rng_state)
- ctx.dropout_p = dropout_p
- ctx.softmax_scale = softmax_scale
- ctx.causal = causal
- return out if not return_softmax else (out, softmax_lse, S_dmask)
- @staticmethod
- def backward(ctx, dout, *args):
- q, k, v, out, softmax_lse, rng_state = ctx.saved_tensors
- dq, dk, dv = torch.empty_like(q), torch.empty_like(k), torch.empty_like(v)
- _flash_attn_backward(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dq,
- dk,
- dv,
- ctx.dropout_p,
- ctx.softmax_scale,
- ctx.causal,
- rng_state=rng_state,
- )
- dq = dq[..., : dout.shape[-1]] # We could have padded the head dimension
- dk = dk[..., : dout.shape[-1]]
- dv = dv[..., : dout.shape[-1]]
- return dq, dk, dv, None, None, None, None, None, None, None, None
- class FlashAttnVarlenFunc(torch.autograd.Function):
- @staticmethod
- def forward(
- ctx,
- q,
- k,
- v,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- causal,
- return_softmax,
- ):
- if softmax_scale is None:
- softmax_scale = q.shape[-1] ** (-0.5)
- out, q, k, v, out_padded, softmax_lse, S_dmask, rng_state = _flash_attn_varlen_forward(
- q,
- k,
- v,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- causal=causal,
- return_softmax=return_softmax and dropout_p > 0,
- )
- ctx.save_for_backward(
- q, k, v, out_padded, softmax_lse, cu_seqlens_q, cu_seqlens_k, rng_state
- )
- ctx.dropout_p = dropout_p
- ctx.max_seqlen_q = max_seqlen_q
- ctx.max_seqlen_k = max_seqlen_k
- ctx.softmax_scale = softmax_scale
- ctx.causal = causal
- return out if not return_softmax else (out, softmax_lse, S_dmask)
- @staticmethod
- def backward(ctx, dout, *args):
- q, k, v, out, softmax_lse, cu_seqlens_q, cu_seqlens_k, rng_state = ctx.saved_tensors
- dq, dk, dv = torch.empty_like(q), torch.empty_like(k), torch.empty_like(v)
- _flash_attn_varlen_backward(
- dout,
- q,
- k,
- v,
- out,
- softmax_lse,
- dq,
- dk,
- dv,
- cu_seqlens_q,
- cu_seqlens_k,
- ctx.max_seqlen_q,
- ctx.max_seqlen_k,
- ctx.dropout_p,
- ctx.softmax_scale,
- ctx.causal,
- rng_state=rng_state,
- )
- dq = dq[..., : dout.shape[-1]] # We could have padded the head dimension
- dk = dk[..., : dout.shape[-1]]
- dv = dv[..., : dout.shape[-1]]
- return dq, dk, dv, None, None, None, None, None, None, None, None
- def flash_attn_qkvpacked_func(
- qkv, dropout_p=0.0, softmax_scale=None, causal=False, return_attn_probs=False
- ):
- """dropout_p should be set to 0.0 during evaluation
- If Q, K, V are already stacked into 1 tensor, this function will be faster than
- calling flash_attn_func on Q, K, V since the backward pass avoids explicit concatenation
- of the gradients of Q, K, V.
- For multi-query and grouped-query attention (MQA/GQA), please see
- flash_attn_kvpacked_func and flash_attn_func.
- Arguments:
- qkv: (batch_size, seqlen, 3, nheads, headdim)
- dropout_p: float. Dropout probability.
- softmax_scale: float. The scaling of QK^T before applying softmax.
- Default to 1 / sqrt(headdim).
- causal: bool. Whether to apply causal attention mask (e.g., for auto-regressive modeling).
- return_attn_probs: bool. Whether to return the attention probabilities. This option is for
- testing only. The returned probabilities are not guaranteed to be correct
- (they might not have the right scaling).
- Return:
- out: (batch_size, seqlen, nheads, headdim).
- softmax_lse [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen). The
- logsumexp of each row of the matrix QK^T * scaling (e.g., log of the softmax
- normalization factor).
- S_dmask [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen, seqlen).
- The output of softmax (possibly with different scaling). It also encodes the dropout
- pattern (negative means that location was dropped, nonnegative means it was kept).
- """
- return FlashAttnQKVPackedFunc.apply(qkv, dropout_p, softmax_scale, causal, return_attn_probs)
- def flash_attn_kvpacked_func(
- q, kv, dropout_p=0.0, softmax_scale=None, causal=False, return_attn_probs=False
- ):
- """dropout_p should be set to 0.0 during evaluation
- If K, V are already stacked into 1 tensor, this function will be faster than
- calling flash_attn_func on Q, K, V since the backward pass avoids explicit concatenation
- of the gradients of K, V.
- Supports multi-query and grouped-query attention (MQA/GQA) by passing in KV with fewer heads
- than Q. Note that the number of heads in Q must be divisible by the number of heads in KV.
- For example, if Q has 6 heads and K, V have 2 heads, head 0, 1, 2 of Q will attention to head
- 0 of K, V, and head 3, 4, 5 of Q will attention to head 1 of K, V.
- If causal=True, the causal mask is aligned to the bottom right corner of the attention matrix.
- For example, if seqlen_q = 2 and seqlen_k = 5, the causal mask (1 = keep, 0 = masked out) is:
- 1 1 1 1 0
- 1 1 1 1 1
- If seqlen_q = 5 and seqlen_k = 2, the causal mask is:
- 0 0
- 0 0
- 0 0
- 1 0
- 1 1
- If the row of the mask is all zero, the output will be zero.
- Arguments:
- q: (batch_size, seqlen, nheads, headdim)
- kv: (batch_size, seqlen, 2, nheads_k, headdim)
- dropout_p: float. Dropout probability.
- softmax_scale: float. The scaling of QK^T before applying softmax.
- Default to 1 / sqrt(headdim).
- causal: bool. Whether to apply causal attention mask (e.g., for auto-regressive modeling).
- return_attn_probs: bool. Whether to return the attention probabilities. This option is for
- testing only. The returned probabilities are not guaranteed to be correct
- (they might not have the right scaling).
- Return:
- out: (batch_size, seqlen, nheads, headdim).
- softmax_lse [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen). The
- logsumexp of each row of the matrix QK^T * scaling (e.g., log of the softmax
- normalization factor).
- S_dmask [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen, seqlen).
- The output of softmax (possibly with different scaling). It also encodes the dropout
- pattern (negative means that location was dropped, nonnegative means it was kept).
- """
- return FlashAttnKVPackedFunc.apply(q, kv, dropout_p, softmax_scale, causal, return_attn_probs)
- def flash_attn_func(
- q, k, v, dropout_p=0.0, softmax_scale=None, causal=False, return_attn_probs=False
- ):
- """dropout_p should be set to 0.0 during evaluation
- Supports multi-query and grouped-query attention (MQA/GQA) by passing in KV with fewer heads
- than Q. Note that the number of heads in Q must be divisible by the number of heads in KV.
- For example, if Q has 6 heads and K, V have 2 heads, head 0, 1, 2 of Q will attention to head
- 0 of K, V, and head 3, 4, 5 of Q will attention to head 1 of K, V.
- If causal=True, the causal mask is aligned to the bottom right corner of the attention matrix.
- For example, if seqlen_q = 2 and seqlen_k = 5, the causal mask (1 = keep, 0 = masked out) is:
- 1 1 1 1 0
- 1 1 1 1 1
- If seqlen_q = 5 and seqlen_k = 2, the causal mask is:
- 0 0
- 0 0
- 0 0
- 1 0
- 1 1
- If the row of the mask is all zero, the output will be zero.
- Arguments:
- q: (batch_size, seqlen, nheads, headdim)
- k: (batch_size, seqlen, nheads_k, headdim)
- v: (batch_size, seqlen, nheads_k, headdim)
- dropout_p: float. Dropout probability.
- softmax_scale: float. The scaling of QK^T before applying softmax.
- Default to 1 / sqrt(headdim).
- causal: bool. Whether to apply causal attention mask (e.g., for auto-regressive modeling).
- return_attn_probs: bool. Whether to return the attention probabilities. This option is for
- testing only. The returned probabilities are not guaranteed to be correct
- (they might not have the right scaling).
- Return:
- out: (batch_size, seqlen, nheads, headdim).
- softmax_lse [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen). The
- logsumexp of each row of the matrix QK^T * scaling (e.g., log of the softmax
- normalization factor).
- S_dmask [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen, seqlen).
- The output of softmax (possibly with different scaling). It also encodes the dropout
- pattern (negative means that location was dropped, nonnegative means it was kept).
- """
- return FlashAttnFunc.apply(q, k, v, dropout_p, softmax_scale, causal, return_attn_probs)
- def flash_attn_varlen_qkvpacked_func(
- qkv,
- cu_seqlens,
- max_seqlen,
- dropout_p=0.0,
- softmax_scale=None,
- causal=False,
- return_attn_probs=False,
- ):
- """dropout_p should be set to 0.0 during evaluation
- If Q, K, V are already stacked into 1 tensor, this function will be faster than
- calling flash_attn_varlen_func on Q, K, V since the backward pass avoids explicit concatenation
- of the gradients of Q, K, V.
- For multi-query and grouped-query attention (MQA/GQA), please see
- flash_attn_varlen_kvpacked_func and flash_attn_varlen_func.
- Arguments:
- qkv: (total, 3, nheads, headdim), where total = total number of tokens in the batch.
- cu_seqlens: (batch_size + 1,), dtype torch.int32. The cumulative sequence lengths
- of the sequences in the batch, used to index into qkv.
- max_seqlen: int. Maximum sequence length in the batch.
- dropout_p: float. Dropout probability.
- softmax_scale: float. The scaling of QK^T before applying softmax.
- Default to 1 / sqrt(headdim).
- causal: bool. Whether to apply causal attention mask (e.g., for auto-regressive modeling).
- return_attn_probs: bool. Whether to return the attention probabilities. This option is for
- testing only. The returned probabilities are not guaranteed to be correct
- (they might not have the right scaling).
- Return:
- out: (total, nheads, headdim).
- softmax_lse [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen). The
- logsumexp of each row of the matrix QK^T * scaling (e.g., log of the softmax
- normalization factor).
- S_dmask [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen, seqlen).
- The output of softmax (possibly with different scaling). It also encodes the dropout
- pattern (negative means that location was dropped, nonnegative means it was kept).
- """
- return FlashAttnVarlenQKVPackedFunc.apply(
- qkv, cu_seqlens, max_seqlen, dropout_p, softmax_scale, causal, return_attn_probs
- )
- def flash_attn_varlen_kvpacked_func(
- q,
- kv,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p=0.0,
- softmax_scale=None,
- causal=False,
- return_attn_probs=False,
- ):
- """dropout_p should be set to 0.0 during evaluation
- If K, V are already stacked into 1 tensor, this function will be faster than
- calling flash_attn_func on Q, K, V since the backward pass avoids explicit concatenation
- of the gradients of K, V.
- Supports multi-query and grouped-query attention (MQA/GQA) by passing in KV with fewer heads
- than Q. Note that the number of heads in Q must be divisible by the number of heads in KV.
- For example, if Q has 6 heads and K, V have 2 heads, head 0, 1, 2 of Q will attention to head
- 0 of K, V, and head 3, 4, 5 of Q will attention to head 1 of K, V.
- If causal=True, the causal mask is aligned to the bottom right corner of the attention matrix.
- For example, if seqlen_q = 2 and seqlen_k = 5, the causal mask (1 = keep, 0 = masked out) is:
- 1 1 1 1 0
- 1 1 1 1 1
- If seqlen_q = 5 and seqlen_k = 2, the causal mask is:
- 0 0
- 0 0
- 0 0
- 1 0
- 1 1
- If the row of the mask is all zero, the output will be zero.
- Arguments:
- q: (total_q, nheads, headdim), where total_q = total number of query tokens in the batch.
- kv: (total_k, 2, nheads_k, headdim), where total_k = total number of key tokens in the batch.
- cu_seqlens_q: (batch_size + 1,), dtype torch.int32. The cumulative sequence lengths
- of the sequences in the batch, used to index into q.
- cu_seqlens_k: (batch_size + 1,), dtype torch.int32. The cumulative sequence lengths
- of the sequences in the batch, used to index into kv.
- max_seqlen_q: int. Maximum query sequence length in the batch.
- max_seqlen_k: int. Maximum key sequence length in the batch.
- dropout_p: float. Dropout probability.
- softmax_scale: float. The scaling of QK^T before applying softmax.
- Default to 1 / sqrt(headdim).
- causal: bool. Whether to apply causal attention mask (e.g., for auto-regressive modeling).
- return_attn_probs: bool. Whether to return the attention probabilities. This option is for
- testing only. The returned probabilities are not guaranteed to be correct
- (they might not have the right scaling).
- Return:
- out: (total, nheads, headdim).
- softmax_lse [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen). The
- logsumexp of each row of the matrix QK^T * scaling (e.g., log of the softmax
- normalization factor).
- S_dmask [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen, seqlen).
- The output of softmax (possibly with different scaling). It also encodes the dropout
- pattern (negative means that location was dropped, nonnegative means it was kept).
- """
- return FlashAttnVarlenKVPackedFunc.apply(
- q,
- kv,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- causal,
- return_attn_probs,
- )
- def flash_attn_varlen_func(
- q,
- k,
- v,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p=0.0,
- softmax_scale=None,
- causal=False,
- return_attn_probs=False,
- ):
- """dropout_p should be set to 0.0 during evaluation
- Supports multi-query and grouped-query attention (MQA/GQA) by passing in K, V with fewer heads
- than Q. Note that the number of heads in Q must be divisible by the number of heads in KV.
- For example, if Q has 6 heads and K, V have 2 heads, head 0, 1, 2 of Q will attention to head
- 0 of K, V, and head 3, 4, 5 of Q will attention to head 1 of K, V.
- If causal=True, the causal mask is aligned to the bottom right corner of the attention matrix.
- For example, if seqlen_q = 2 and seqlen_k = 5, the causal mask (1 = keep, 0 = masked out) is:
- 1 1 1 1 0
- 1 1 1 1 1
- If seqlen_q = 5 and seqlen_k = 2, the causal mask is:
- 0 0
- 0 0
- 0 0
- 1 0
- 1 1
- If the row of the mask is all zero, the output will be zero.
- Arguments:
- q: (total_q, nheads, headdim), where total_q = total number of query tokens in the batch.
- k: (total_k, nheads_k, headdim), where total_k = total number of key tokens in the batch.
- v: (total_k, nheads_k, headdim), where total_k = total number of key tokens in the batch.
- cu_seqlens_q: (batch_size + 1,), dtype torch.int32. The cumulative sequence lengths
- of the sequences in the batch, used to index into q.
- cu_seqlens_k: (batch_size + 1,), dtype torch.int32. The cumulative sequence lengths
- of the sequences in the batch, used to index into kv.
- max_seqlen_q: int. Maximum query sequence length in the batch.
- max_seqlen_k: int. Maximum key sequence length in the batch.
- dropout_p: float. Dropout probability.
- softmax_scale: float. The scaling of QK^T before applying softmax.
- Default to 1 / sqrt(headdim).
- causal: bool. Whether to apply causal attention mask (e.g., for auto-regressive modeling).
- return_attn_probs: bool. Whether to return the attention probabilities. This option is for
- testing only. The returned probabilities are not guaranteed to be correct
- (they might not have the right scaling).
- Return:
- out: (total, nheads, headdim).
- softmax_lse [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen). The
- logsumexp of each row of the matrix QK^T * scaling (e.g., log of the softmax
- normalization factor).
- S_dmask [optional, if return_attn_probs=True]: (batch_size, nheads, seqlen, seqlen).
- The output of softmax (possibly with different scaling). It also encodes the dropout
- pattern (negative means that location was dropped, nonnegative means it was kept).
- """
- return FlashAttnVarlenFunc.apply(
- q,
- k,
- v,
- cu_seqlens_q,
- cu_seqlens_k,
- max_seqlen_q,
- max_seqlen_k,
- dropout_p,
- softmax_scale,
- causal,
- return_attn_probs,
- )
- def flash_attn_with_kvcache(
- q,
- k_cache,
- v_cache,
- k=None,
- v=None,
- rotary_cos=None,
- rotary_sin=None,
- cache_seqlens: Optional[Union[(int, torch.Tensor)]] = None,
- softmax_scale=None,
- causal=False,
- rotary_interleaved=True,
- num_splits=0,
- ):
- """
- If k and v are not None, k_cache and v_cache will be updated *inplace* with the new values from
- k and v. This is useful for incremental decoding: you can pass in the cached keys/values from
- the previous step, and update them with the new keys/values from the current step, and do
- attention with the updated cache, all in 1 kernel.
- If you pass in k / v, you must make sure that the cache is large enough to hold the new values.
- For example, the KV cache could be pre-allocated with the max sequence length, and you can use
- cache_seqlens to keep track of the current sequence lengths of each sequence in the batch.
- Also apply rotary embedding if rotary_cos and rotary_sin are passed in. The key @k will be rotated
- by rotary_cos and rotary_sin at indices cache_seqlens, cache_seqlens + 1, etc.
- If causal, the query @q will be rotated by rotary_cos and rotary_sin at indices cache_seqlens,
- cache_seqlens + 1, etc. If not causal, the query @q will be rotated by rotary_cos and rotary_sin
- at indices cache_seqlens only (i.e. we consider all tokens in @q to be at position cache_seqlens).
- See tests/test_flash_attn.py::test_flash_attn_kvcache for examples of how to use this function.
- Supports multi-query and grouped-query attention (MQA/GQA) by passing in KV with fewer heads
- than Q. Note that the number of heads in Q must be divisible by the number of heads in KV.
- For example, if Q has 6 heads and K, V have 2 heads, head 0, 1, 2 of Q will attention to head
- 0 of K, V, and head 3, 4, 5 of Q will attention to head 1 of K, V.
- If causal=True, the causal mask is aligned to the bottom right corner of the attention matrix.
- For example, if seqlen_q = 2 and seqlen_k = 5, the causal mask (1 = keep, 0 = masked out) is:
- 1 1 1 1 0
- 1 1 1 1 1
- If seqlen_q = 5 and seqlen_k = 2, the causal mask is:
- 0 0
- 0 0
- 0 0
- 1 0
- 1 1
- If the row of the mask is all zero, the output will be zero.
- Note: Does not support backward pass.
- Arguments:
- q: (batch_size, seqlen, nheads, headdim)
- k_cache: (batch_size, seqlen_cache, nheads_k, headdim)
- v_cache: (batch_size, seqlen_cache, nheads_k, headdim)
- k [optional]: (batch_size, seqlen_new, nheads_k, headdim). If not None, we concatenate
- k with k_cache, starting at the indices specified by cache_seqlens.
- v [optional]: (batch_size, seqlen_new, nheads_k, headdim). Similar to k.
- rotary_cos [optional]: (seqlen_ro, rotary_dim / 2). If not None, we apply rotary embedding
- to k and q. Only applicable if k and v are passed in. rotary_dim must be divisible by 16.
- rotary_sin [optional]: (seqlen_ro, rotary_dim / 2). Similar to rotary_cos.
- cache_seqlens: int, or (batch_size,), dtype torch.int32. The sequence lengths of the
- KV cache.
- softmax_scale: float. The scaling of QK^T before applying softmax.
- Default to 1 / sqrt(headdim).
- causal: bool. Whether to apply causal attention mask (e.g., for auto-regressive modeling).
- rotary_interleaved: bool. Only applicable if rotary_cos and rotary_sin are passed in.
- If True, rotary embedding will combine dimensions 0 & 1, 2 & 3, etc. If False,
- rotary embedding will combine dimensions 0 & rotary_dim / 2, 1 & rotary_dim / 2 + 1
- (i.e. GPT-NeoX style).
- num_splits: int. If > 1, split the key/value into this many chunks along the sequence.
- If num_splits == 1, we don't split the key/value. If num_splits == 0, we use a heuristic
- to automatically determine the number of splits.
- Don't change this unless you know what you are doing.
- Return:
- out: (batch_size, seqlen, nheads, headdim).
- """
- assert k_cache.stride(-1) == 1, "k_cache must have contiguous last dimension"
- assert v_cache.stride(-1) == 1, "v_cache must have contiguous last dimension"
- maybe_contiguous = lambda x: x.contiguous() if x is not None and x.stride(-1) != 1 else x
- q, k, v = [maybe_contiguous(x) for x in (q, k, v)]
- if softmax_scale is None:
- softmax_scale = q.shape[-1] ** (-0.5)
- if cache_seqlens is not None and isinstance(cache_seqlens, int):
- cache_seqlens = torch.full(
- (k_cache.shape[0],), cache_seqlens, dtype=torch.int32, device=k_cache.device
- )
- out, softmax_lse = flash_attn_cuda.fwd_kvcache(
- q,
- k_cache,
- v_cache,
- k,
- v,
- cache_seqlens,
- rotary_cos,
- rotary_sin,
- None,
- softmax_scale,
- causal,
- rotary_interleaved,
- num_splits,
- )
- return out
|