-
Notifications
You must be signed in to change notification settings - Fork 766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update flashmask doc #6748
Open
kircle888
wants to merge
13
commits into
PaddlePaddle:develop
Choose a base branch
from
kircle888:flashmask
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+216
−39
Open
update flashmask doc #6748
Changes from 4 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
b921c2b
update flashmask doc
kircle888 5d808d0
update flashmask doc
kircle888 ef7000e
update flashmask doc
kircle888 7eed0aa
update flashmask doc
kircle888 1f39132
update flashmask doc
kircle888 ebe6052
update flashmask doc
kircle888 a4819b2
update flashmask doc
kircle888 8967ab5
update flashmask doc
kircle888 4bd5e66
update flashmask doc
kircle888 e05465d
check englisth doc format
kircle888 b71819a
check englisth doc format
kircle888 a4f2e20
check englisth doc format
kircle888 adacfc7
update
kircle888 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
39 changes: 0 additions & 39 deletions
39
docs/api/paddle/nn/functional/flash_attention_with_sparse_mask_cn.rst
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,59 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
.. _cn_api_paddle_nn_functional_flashmask_attention: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
flashmask_attention | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
------------------------------- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
.. py:function:: paddle.nn.functional.flashmask_attention(query, key, value, startend_row_indices, dropout=0.0, causal=False, return_softmax_lse=False, return_seed_offset=False, fixed_seed_offset=None, rng_name="", training=True, name=None) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
用稀疏的 flashmask 表达的 flash_attention。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
flashmask 将通过参数 `startend_row_indices` 表示作用在 Attention Score 矩阵上的 mask , Attention Score 矩阵指的是 :math:`Q * K^T` ,元素被 mask 指的是将 Score 矩阵中对应位置设置为 :math:`-inf` 。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
下图展示了多种 mask 的示例,图中为 Score 矩阵,灰色区域元素表示被 mask ,上方数字表示 startend_row_indices 的值,一行数字表明 startend_row_indices 的 shape 为 [batch_size, num_heads, seq_len, 1] ,二行数字表明 startend_row_indices 的 shape 为 [batch_size, num_heads, seq_len, 2]。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
.. image:: ../../../../images/flashmask.jpeg | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
:width: 1000px | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
:height: 2000px | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
:align: center | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
.. math:: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
result = softmax(\frac{ Q * K^T }{\sqrt{d}} + mask) * V | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
参数 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
:::::::::::: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **query** (int) - 输入 Query Tensor,shape =[batch_size, seq_len, num_heads, head_dim],数据类型为 float16 或 bfloat16。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **key** (Tensor) - 输入 Key Tensor,shape 以及 dtype 和 query 相同。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **value** (Tensor) - 输入 Value Tensor,shape 以及 dtype 和 query 相同。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **startend_row_indices** (Tensor) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- 稀疏掩码索引,shape 为 [batch_size, num_heads, seq_len, {1, 2, 4}],数据类型为 int32。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
num_heads 为 1 或与 k 的 num_heads 相同,num_heads 取 1 时将被广播到与 k 的 num_heads 相同。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
根据 causal 参数的取值不同,startend_row_indices 可取不同形状并具有不同含义。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- 当 `causal=True` 且 shape 取 [batch_size, num_heads, seq_len, 1] 时, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
startend_row_indices 的值 r 表示 Score 矩阵中左下三角从第 r 行下方(包括)的元素将被 mask | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- 当 `causal=True` 且 shape 取 [batch_size, num_heads, seq_len, 2] 时, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
startend_row_indices 的值 r1,r2 表示 Score 矩阵中左下三角从第 r1 行下方(包括)但在第 r2 行上方(不包括)的元素将被 mask | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- 当 `causal=False` 且 shape 取 [batch_size, num_heads, seq_len, 2] 时, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
startend_row_indices 的值 r1,r2 表示 Score 矩阵中左下三角从第 r1 行下方(包括)的元素将被 mask,右上三角从第 r2 行上方(不包括)的元素将被 mask | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- 当 `causal=False` 且 shape 取 [batch_size, num_heads, seq_len, 4] 时 (尚未支持), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
startend_row_indices 的值 r1,r2,r3,r4 表示 Score 矩阵中左下三角从第 r1 行下方(包括)但在第 r2 行上方(不包括)的元素将被 mask,右上三角从第 r3 行下方(包括)但在第 r4 行上方(不包括)的元素将被 mask | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **dropout** (bool,可选) – dropout 概率值,默认值为 0。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **causal** (bool,可选) - 是否使用 causal 模式,默认值:False。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **return_softmax_lse** (bool,可选) - 是否返回 softmax_lse 的结果。默认值为 False。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **return_seed_offset** (bool,可选) - 是否返回 seed_offset 的结果。默认值为 False。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **fixed_seed_offset** (Tensor,可选) - 固定 Dropout 的 offset seed. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **rng_name** (str,可选) - 随机数生成器名称 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 顺便加个默认的说明 |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **training** (bool,可选) - 指示是否为训练模式。默认值为 True。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
返回 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
:::::::::::: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
`Tensor`,attention 的结果。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
`softmax_lse`,当 return_softmax_lse 为 True 时,返回的 softmax_lse 的值 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
`seed_offset`,当 return_seed_offset 为 True 时,返回的 seed_offset 的值 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
代码示例 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
:::::::::::: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
COPY-FROM: paddle.nn.functional.flashmask_attention |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
可以参考
docs/docs/guides/06_distributed_training/pipeline_parallel_cn.rst
Lines 11 to 14 in c2c24b8