Skip to content
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

fix test_flash_attention.py #63218

Merged
merged 1 commit into from
Apr 8, 2024

Conversation

deepllz
Copy link
Contributor

@deepllz deepllz commented Apr 3, 2024

PR Category

Others

PR Types

Bug fixes

Description

修复test_flash_attention.py运行失败的问题
Pcard-73145

Copy link

paddle-bot bot commented Apr 3, 2024

你的PR提交成功,感谢你对开源项目的贡献!
请关注后续CI自动化测试结果,详情请参考Paddle-CI手册
Your PR has been submitted. Thanks for your contribution!
Please wait for the result of CI firstly. See Paddle CI Manual for details.

Copy link

paddle-bot bot commented Apr 3, 2024

❌ The PR is not created using PR's template. You can refer to this Demo.
Please use PR's template, it helps save our maintainers' time so that more developers get helped.

@@ -51,8 +51,7 @@ def attention_naive(q, k, v, causal=False):
kt = paddle.transpose(k, [0, 2, 1, 3])
vt = paddle.transpose(v, [0, 2, 1, 3])
scale = 1.0 / np.sqrt(q.shape[-1])
s = paddle.matmul(qt, paddle.transpose(kt, [0, 1, 3, 2]))
s = paddle.scale(s, scale)
s = paddle.matmul(qt * scale, paddle.transpose(kt, [0, 1, 3, 2]))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@sneaxiy sneaxiy merged commit 0a5bb76 into PaddlePaddle:develop Apr 8, 2024
30 checks passed
co63oc pushed a commit to co63oc/Paddle that referenced this pull request Apr 8, 2024
co63oc pushed a commit to co63oc/Paddle that referenced this pull request Apr 9, 2024
co63oc pushed a commit to co63oc/Paddle that referenced this pull request Apr 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants