[Kernel] Implement different SEQ Q/KV examples with block sparse #133
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes significant changes to the
examples/flash_attention/example_mha_fwd_bhsd.pyfile and introduces a new fileexamples/seer_attention/block_sparse_attn_tilelang.py. The changes focus on improving the flash attention mechanism and adding support for block sparse attention.Improvements to flash attention:
flashattnfunction to accept separate query and key/value sequence lengths (seq_qandseq_kv) instead of a single sequence length (seq_len).seq_qandseq_kvlengths. [1] [2] [3]Introduction of block sparse attention:
examples/seer_attention/block_sparse_attn_tilelang.pyimplementing block sparse attention using TileLang.blocksparse_flashattnfunction to perform block sparse attention, including the necessary kernel functions and macros.