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

Scs trans match #7307

Merged
merged 17 commits into from
Oct 19, 2021
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
f1d55df
Merge pull request #1 from PaddlePaddle/develop
newway Dec 16, 2020
12f9e79
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Jul 16, 2021
4c1b79f
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Jul 23, 2021
7ef902e
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Jul 26, 2021
d8a0426
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Jul 27, 2021
2950d7f
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Jul 29, 2021
96bdcbe
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Jul 29, 2021
d7315df
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Jul 30, 2021
08a0257
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Jul 30, 2021
dff74c0
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Aug 11, 2021
4110285
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Sep 3, 2021
1e95f20
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Sep 27, 2021
5569a46
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Oct 14, 2021
2a4e4a0
[xpu] support qkv-fused weight reuse in scs_tran_match; test=develop
newway Oct 18, 2021
4ecffe2
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Oct 18, 2021
fed8218
[xpu] fix qkv-fused bias check; test=develop
newway Oct 18, 2021
054390c
Merge branch 'develop' of /~https://github.com/PaddlePaddle/Paddle-Lite…
newway Oct 19, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ class XPUMultiEncoderFuser {
int bias_q_len = bias_q->numel();
int bias_k_len = bias_k->numel();
int bias_v_len = bias_v->numel();
if (bias_q_len == (3 * bias_q_len)) {
if (bias_q_len == (3 * bias_k_len) && (bias_k_len == bias_v_len)) {
VLOG(3) << "qkv-fused bias " << i
<< " already be updated, dims:" << bias_q_dims;
continue;
Expand Down