Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
b10b899c
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2305
Star
20932
Fork
5423
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
b10b899c
编写于
7月 24, 2023
作者:
H
houj04
提交者:
GitHub
7月 24, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PHI] add fused_softmax_mask and fused_softmax_mask_grad for CPU. (#55616)
上级
81bd57c7
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
125 addition
and
8 deletion
+125
-8
paddle/phi/kernels/fusion/cpu/fused_softmax_mask_grad_kernel.cc
.../phi/kernels/fusion/cpu/fused_softmax_mask_grad_kernel.cc
+39
-0
paddle/phi/kernels/fusion/cpu/fused_softmax_mask_kernel.cc
paddle/phi/kernels/fusion/cpu/fused_softmax_mask_kernel.cc
+84
-0
test/legacy_test/test_softmax_mask_fuse_op.py
test/legacy_test/test_softmax_mask_fuse_op.py
+2
-8
未找到文件。
paddle/phi/kernels/fusion/cpu/fused_softmax_mask_grad_kernel.cc
0 → 100644
浏览文件 @
b10b899c
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/softmax_grad_kernel.h"
namespace
phi
{
namespace
fusion
{
template
<
typename
T
,
typename
Context
>
void
FusedSoftmaxMaskGradKernel
(
const
Context
&
dev_ctx
,
const
DenseTensor
&
out
,
const
DenseTensor
&
out_grad
,
DenseTensor
*
x_grad
)
{
dev_ctx
.
template
Alloc
<
T
>(
x_grad
);
SoftmaxGradKernel
<
T
,
Context
>
(
dev_ctx
,
out
,
out_grad
,
3
,
x_grad
);
// axis for softmax
}
}
// namespace fusion
}
// namespace phi
PD_REGISTER_KERNEL
(
fused_softmax_mask_grad
,
CPU
,
ALL_LAYOUT
,
phi
::
fusion
::
FusedSoftmaxMaskGradKernel
,
float
,
double
)
{}
paddle/phi/kernels/fusion/cpu/fused_softmax_mask_kernel.cc
0 → 100644
浏览文件 @
b10b899c
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/elementwise_add_kernel.h"
#include "paddle/phi/kernels/softmax_kernel.h"
namespace
phi
{
namespace
fusion
{
template
<
typename
T
,
typename
Context
>
void
FusedSoftmaxMaskKernel
(
const
Context
&
dev_ctx
,
const
DenseTensor
&
x
,
const
DenseTensor
&
mask
,
DenseTensor
*
out
)
{
auto
x_dim
=
x
.
dims
();
auto
mask_dim
=
mask
.
dims
();
auto
query_seq_len
=
x_dim
[
2
];
auto
key_seq_len
=
x_dim
[
3
];
PADDLE_ENFORCE_GT
(
query_seq_len
,
1
,
phi
::
errors
::
InvalidArgument
(
"Input x's second last dim must be large than 1 but "
"received the second last dimension of x is %d"
,
query_seq_len
));
PADDLE_ENFORCE_EQ
(
key_seq_len
>=
32
&&
key_seq_len
<
8192
,
true
,
phi
::
errors
::
InvalidArgument
(
"Input x's last dim must be between [32, 8192) "
"received the last dimension of x is %d"
,
key_seq_len
));
PADDLE_ENFORCE_EQ
(
mask_dim
[
1
],
1
,
phi
::
errors
::
InvalidArgument
(
"Input mask's second dim must be 1 "
"received the second dimension of mask is %d"
,
mask_dim
[
1
]));
// dim of x and mask must be equal
for
(
size_t
idx
=
0
;
idx
<
4
;
++
idx
)
{
if
(
idx
==
1
)
continue
;
PADDLE_ENFORCE_EQ
(
x_dim
[
idx
],
mask_dim
[
idx
],
phi
::
errors
::
InvalidArgument
(
"Input x's %dth dim should be equal with input mask's %dth dim "
"but "
"received the %dth dimension of x and mask are not equal "
"the %dth dim of x is %d, while the %dth dim of mask is %d."
,
idx
,
idx
,
idx
,
idx
,
x_dim
[
idx
],
idx
,
mask_dim
[
idx
]));
}
DenseTensor
t
=
phi
::
Add
<
T
,
Context
>
(
dev_ctx
,
x
,
mask
);
SoftmaxKernel
<
T
,
Context
>
(
dev_ctx
,
t
,
3
,
out
);
// axis for softmax
}
}
// namespace fusion
}
// namespace phi
PD_REGISTER_KERNEL
(
fused_softmax_mask
,
CPU
,
ALL_LAYOUT
,
phi
::
fusion
::
FusedSoftmaxMaskKernel
,
float
,
double
)
{}
test/legacy_test/test_softmax_mask_fuse_op.py
浏览文件 @
b10b899c
...
...
@@ -51,16 +51,10 @@ class TestSoftmaxMaskFuseOp(OpTest):
self
.
outputs
=
{
'Out'
:
rst
}
def
test_check_output
(
self
):
try
:
self
.
check_output_with_place
(
core
.
CPUPlace
())
except
NotImplementedError
:
pass
self
.
check_output_with_place
(
core
.
CPUPlace
())
def
test_check_grad
(
self
):
try
:
self
.
check_grad_with_place
(
core
.
CPUPlace
(),
[
"X"
],
"Out"
)
except
NotImplementedError
:
pass
self
.
check_grad_with_place
(
core
.
CPUPlace
(),
[
"X"
],
"Out"
)
@
unittest
.
skipIf
(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录