Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
9844aafb
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
Star
20931
Fork
5422
代码
文件
提交
分支
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看板
未验证
提交
9844aafb
编写于
4月 08, 2022
作者:
C
Chen Weihang
提交者:
GitHub
4月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Phi] Add swish yaml and final state api (#41479)
* add swish yaml and final state api * skip mkldnn test * fix grad mkldnn test
上级
b3bcebbe
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
36 addition
and
3 deletion
+36
-3
python/paddle/fluid/tests/unittests/mkldnn/test_activation_mkldnn_op.py
...fluid/tests/unittests/mkldnn/test_activation_mkldnn_op.py
+2
-0
python/paddle/fluid/tests/unittests/test_activation_op.py
python/paddle/fluid/tests/unittests/test_activation_op.py
+10
-1
python/paddle/nn/functional/activation.py
python/paddle/nn/functional/activation.py
+3
-2
python/paddle/utils/code_gen/api.yaml
python/paddle/utils/code_gen/api.yaml
+11
-0
python/paddle/utils/code_gen/backward.yaml
python/paddle/utils/code_gen/backward.yaml
+10
-0
未找到文件。
python/paddle/fluid/tests/unittests/mkldnn/test_activation_mkldnn_op.py
浏览文件 @
9844aafb
...
...
@@ -113,6 +113,7 @@ class TestMKLDNNSwishDim2(TestSwish):
super
(
TestMKLDNNSwishDim2
,
self
).
setUp
()
self
.
attrs
[
"use_mkldnn"
]
=
True
self
.
check_eager
=
False
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float32
...
...
@@ -284,6 +285,7 @@ class TestMKLDNNSwishDim4(TestSwish):
self
.
inputs
=
{
'X'
:
OpTest
.
np_dtype_to_fluid_dtype
(
x
)}
self
.
outputs
=
{
'Out'
:
out
}
self
.
attrs
=
{
"use_mkldnn"
:
True
,
"beta"
:
beta
}
self
.
check_eager
=
False
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float32
...
...
python/paddle/fluid/tests/unittests/test_activation_op.py
浏览文件 @
9844aafb
...
...
@@ -2940,7 +2940,9 @@ def ref_swish(x):
class
TestSwish
(
TestActivation
):
def
setUp
(
self
):
self
.
op_type
=
"swish"
self
.
python_api
=
paddle
.
nn
.
functional
.
swish
self
.
init_dtype
()
self
.
check_eager
=
True
np
.
random
.
seed
(
1024
)
x
=
np
.
random
.
uniform
(
-
1
,
1
,
[
10
,
12
]).
astype
(
self
.
dtype
)
...
...
@@ -2952,7 +2954,10 @@ class TestSwish(TestActivation):
def
test_check_grad
(
self
):
if
self
.
dtype
==
np
.
float16
:
return
self
.
check_grad
([
'X'
],
'Out'
)
check_eager
=
False
if
hasattr
(
self
,
'check_eager'
):
check_eager
=
self
.
check_eager
self
.
check_grad
([
'X'
],
'Out'
,
check_eager
=
check_eager
)
class
TestSwishAPI
(
unittest
.
TestCase
):
...
...
@@ -2987,6 +2992,10 @@ class TestSwishAPI(unittest.TestCase):
self
.
assertEqual
(
np
.
allclose
(
out_ref
,
r
.
numpy
()),
True
)
paddle
.
enable_static
()
def
test_dygraph_final_state_api
(
self
):
with
_test_eager_guard
():
self
.
test_dygraph_api
()
def
test_fluid_api
(
self
):
paddle
.
enable_static
()
with
fluid
.
program_guard
(
fluid
.
Program
()):
...
...
python/paddle/nn/functional/activation.py
浏览文件 @
9844aafb
...
...
@@ -1181,8 +1181,9 @@ def swish(x, name=None):
x = paddle.to_tensor(np.array([-2., 0., 1.]))
out = F.swish(x) # [-0.238406, 0., 0.731059]
"""
if
in_dynamic_mode
():
if
in_dygraph_mode
():
return
_C_ops
.
final_state_swish
(
x
,
1.0
)
if
_in_legacy_dygraph
():
return
_C_ops
.
swish
(
x
,
'beta'
,
1.0
)
check_variable_and_dtype
(
x
,
'x'
,
[
'float16'
,
'float32'
,
'float64'
],
'swish'
)
...
...
python/paddle/utils/code_gen/api.yaml
浏览文件 @
9844aafb
...
...
@@ -1876,6 +1876,17 @@
data_type
:
x
backward
:
sum_grad
# The python API paddle.nn.functional.swish has no `bete` argument, it may be removed later
-
api
:
swish
args
:
(Tensor x, float beta=1.0)
output
:
Tensor(out)
infer_meta
:
func
:
UnchangedInferMeta
param
:
[
x
]
kernel
:
func
:
swish
backward
:
swish_grad
# take_along_axis
-
api
:
take_along_axis
args
:
(Tensor x, Tensor index, int axis)
...
...
python/paddle/utils/code_gen/backward.yaml
浏览文件 @
9844aafb
...
...
@@ -1410,6 +1410,16 @@
kernel
:
func
:
sum_grad
-
backward_api
:
swish_grad
forward
:
swish (Tensor x, float beta=1.0) -> Tensor(out)
args
:
(Tensor x, Tensor out_grad, float bete=1.0)
output
:
Tensor(x_grad)
infer_meta
:
func
:
GeneralUnaryGradInferMeta
param
:
[
x
]
kernel
:
func
:
swish_grad
-
backward_api
:
take_along_axis_grad
forward
:
take_along_axis (Tensor x, Tensor index, int axis) -> Tensor(out)
args
:
(Tensor x, Tensor index, Tensor out_grad, int axis)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录