| |
| |
| |
|
|
| #pragma once |
|
|
| #include "namespace_config.h" |
|
|
| #include <cuda.h> |
| #include <vector> |
|
|
| #include <ATen/cuda/CUDAGeneratorImpl.h> |
|
|
| namespace FLASH_NAMESPACE { |
| constexpr int TOTAL_DIM = 0; |
| constexpr int H_DIM = 1; |
| constexpr int D_DIM = 2; |
|
|
| |
|
|
| struct Qkv_params { |
| using index_t = int64_t; |
| |
| void *__restrict__ q_ptr; |
| void *__restrict__ k_ptr; |
| void *__restrict__ v_ptr; |
|
|
| |
| index_t q_batch_stride; |
| index_t k_batch_stride; |
| index_t v_batch_stride; |
| index_t q_row_stride; |
| index_t k_row_stride; |
| index_t v_row_stride; |
| index_t q_head_stride; |
| index_t k_head_stride; |
| index_t v_head_stride; |
|
|
| |
| int h, h_k; |
| |
| |
| int h_h_k_ratio; |
| }; |
|
|
| |
|
|
| struct Flash_fwd_params : public Qkv_params { |
|
|
| |
| void * __restrict__ o_ptr; |
| void * __restrict__ oaccum_ptr; |
|
|
| |
| index_t o_batch_stride; |
| index_t o_row_stride; |
| index_t o_head_stride; |
|
|
| |
| void * __restrict__ p_ptr; |
|
|
| |
| void * __restrict__ softmax_lse_ptr; |
| void * __restrict__ softmax_lseaccum_ptr; |
|
|
| |
| int b, seqlen_q, seqlen_k, seqlen_knew, d, seqlen_q_rounded, seqlen_k_rounded, d_rounded, rotary_dim, total_q; |
|
|
| |
| float scale_softmax; |
| float scale_softmax_log2; |
|
|
| |
| int * __restrict__ cu_seqlens_q; |
| int * __restrict__ cu_seqlens_k; |
| int * __restrict__ leftpad_k; |
|
|
| |
| int * __restrict__ seqused_k; |
|
|
| int *__restrict__ blockmask; |
|
|
| |
| void * __restrict__ knew_ptr; |
| void * __restrict__ vnew_ptr; |
|
|
| |
| index_t knew_batch_stride; |
| index_t vnew_batch_stride; |
| index_t knew_row_stride; |
| index_t vnew_row_stride; |
| index_t knew_head_stride; |
| index_t vnew_head_stride; |
|
|
| |
| void * __restrict__ rotary_cos_ptr; |
| void * __restrict__ rotary_sin_ptr; |
|
|
| |
| int * __restrict__ cache_batch_idx; |
|
|
| |
| int * __restrict__ block_table; |
| index_t block_table_batch_stride; |
| int page_block_size; |
|
|
| |
| float p_dropout; |
| |
| |
| uint8_t p_dropout_in_uint8_t; |
|
|
| |
| float rp_dropout; |
| float scale_softmax_rp_dropout; |
|
|
| |
| int window_size_left, window_size_right; |
| float softcap; |
|
|
| |
| at::PhiloxCudaState philox_args; |
|
|
| |
| uint64_t * rng_state; |
|
|
| bool is_bf16; |
| bool is_causal; |
|
|
| |
| |
| bool is_seqlens_k_cumulative; |
|
|
| bool is_rotary_interleaved; |
|
|
| int num_splits; |
|
|
| void * __restrict__ alibi_slopes_ptr; |
| index_t alibi_slopes_batch_stride; |
|
|
| bool unpadded_lse; |
| bool seqlenq_ngroups_swapped; |
| }; |
|
|
| |
|
|
| struct Flash_bwd_params : public Flash_fwd_params { |
|
|
| |
| void *__restrict__ do_ptr; |
| void *__restrict__ dq_ptr; |
| void *__restrict__ dk_ptr; |
| void *__restrict__ dv_ptr; |
|
|
| |
| void *__restrict__ dq_accum_ptr; |
| void *__restrict__ dk_accum_ptr; |
| void *__restrict__ dv_accum_ptr; |
|
|
| |
| |
| |
|
|
| |
| |
| |
| index_t do_batch_stride; |
| index_t do_row_stride; |
| index_t do_head_stride; |
| index_t dq_batch_stride; |
| index_t dk_batch_stride; |
| index_t dv_batch_stride; |
| index_t dq_row_stride; |
| index_t dk_row_stride; |
| index_t dv_row_stride; |
| index_t dq_head_stride; |
| index_t dk_head_stride; |
| index_t dv_head_stride; |
|
|
| |
| void *__restrict__ dsoftmax_sum; |
|
|
| bool deterministic; |
| index_t dq_accum_split_stride; |
| }; |
|
|
| |
|
|
| template<typename T, int Headdim, bool Is_causal> void run_mha_fwd_(Flash_fwd_params ¶ms, cudaStream_t stream); |
| template<typename T, int Headdim, bool Is_causal> void run_mha_fwd_splitkv_dispatch(Flash_fwd_params ¶ms, cudaStream_t stream); |
|
|
| template<typename T, int Headdim, bool Is_causal> void run_mha_bwd_(Flash_bwd_params ¶ms, cudaStream_t stream); |
|
|
| } |
|
|