Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
8447f876
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
8447f876
编写于
1月 13, 2023
作者:
W
Weilong Wu
提交者:
GitHub
1月 13, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PHI] rrelu add yaml (#49779)
* [PHI] rrelu add yaml * polish * polish
上级
163c6a9e
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
38 addition
and
6 deletion
+38
-6
paddle/phi/api/yaml/legacy_backward.yaml
paddle/phi/api/yaml/legacy_backward.yaml
+11
-0
paddle/phi/api/yaml/legacy_ops.yaml
paddle/phi/api/yaml/legacy_ops.yaml
+11
-0
python/paddle/fluid/tests/unittests/test_rrelu_op.py
python/paddle/fluid/tests/unittests/test_rrelu_op.py
+14
-2
python/paddle/fluid/tests/unittests/white_list/no_check_set_white_list.py
...uid/tests/unittests/white_list/no_check_set_white_list.py
+1
-0
python/paddle/nn/functional/activation.py
python/paddle/nn/functional/activation.py
+1
-4
未找到文件。
paddle/phi/api/yaml/legacy_backward.yaml
浏览文件 @
8447f876
...
...
@@ -1151,6 +1151,17 @@
data_type
:
x
optional
:
boxes_num
-
backward_op
:
rrelu_grad
forward
:
rrelu (Tensor x, float lower, float upper, bool is_test) -> Tensor(out), Tensor(noise)
args
:
(Tensor x, Tensor noise, Tensor out_grad)
output
:
Tensor(x_grad)
infer_meta
:
func
:
RReluGradInferMeta
param
:
[
out_grad
,
noise
]
kernel
:
func
:
rrelu_grad
data_type
:
x
-
backward_op
:
scale_grad
forward
:
scale (Tensor x, Scalar scale, float bias, bool bias_after_scale) -> Tensor(out)
args
:
(Tensor out_grad, Scalar scale=1.0, bool bias_after_scale=true)
...
...
paddle/phi/api/yaml/legacy_ops.yaml
浏览文件 @
8447f876
...
...
@@ -1537,6 +1537,17 @@
intermediate
:
arg_max
backward
:
roi_pool_grad
-
op
:
rrelu
args
:
(Tensor x, float lower, float upper, bool is_test)
output
:
Tensor(out), Tensor(noise)
infer_meta
:
func
:
RReluInferMeta
kernel
:
func
:
rrelu
data_type
:
x
intermediate
:
noise
backward
:
rrelu_grad
-
op
:
scale
args
:
(Tensor x, Scalar scale, float bias, bool bias_after_scale)
output
:
Tensor(out)
...
...
python/paddle/fluid/tests/unittests/test_rrelu_op.py
浏览文件 @
8447f876
...
...
@@ -311,6 +311,10 @@ class TestFunctionalRReluAPI(unittest.TestCase):
self
.
assertRaises
(
ValueError
,
error_lower_upper
)
def
rrelu
(
x
,
lower
,
upper
,
training
):
return
paddle
.
nn
.
functional
.
rrelu
(
x
,
lower
,
upper
,
training
=
not
training
)
class
RReluTest
(
OpTest
):
def
setUp
(
self
):
self
.
op_type
=
"rrelu"
...
...
@@ -318,6 +322,10 @@ class RReluTest(OpTest):
self
.
upper
=
0.3
self
.
is_test
=
True
self
.
init_params
()
self
.
python_api
=
rrelu
self
.
python_out_sig
=
[
"Out"
]
# python out sig is customized output signature.
def
init_params
(
self
):
self
.
dtype
=
"float64"
...
...
@@ -337,10 +345,10 @@ class RReluTest(OpTest):
}
def
test_check_output
(
self
):
self
.
check_output
()
self
.
check_output
(
no_check_set
=
[
'Noise'
],
check_eager
=
True
)
def
test_check_grad
(
self
):
self
.
check_grad
([
'X'
],
'Out'
)
self
.
check_grad
([
'X'
],
'Out'
,
check_eager
=
True
)
class
RReluTrainingTest
(
RReluTest
):
...
...
@@ -350,6 +358,10 @@ class RReluTrainingTest(RReluTest):
self
.
upper
=
0.300000009
self
.
is_test
=
False
self
.
init_params
()
self
.
python_api
=
rrelu
self
.
python_out_sig
=
[
"Out"
]
# python out sig is customized output signature.
if
__name__
==
"__main__"
:
...
...
python/paddle/fluid/tests/unittests/white_list/no_check_set_white_list.py
浏览文件 @
8447f876
...
...
@@ -37,4 +37,5 @@ no_check_set_white_list = [
'class_center_sample'
,
'einsum'
,
'rmsprop'
,
'rrelu'
,
]
python/paddle/nn/functional/activation.py
浏览文件 @
8447f876
...
...
@@ -654,10 +654,7 @@ def rrelu(x, lower=1.0 / 8.0, upper=1.0 / 3.0, training=True, name=None):
is_test
=
not
training
if
in_dygraph_mode
():
out
,
noise
=
_legacy_C_ops
.
rrelu
(
x
,
'lower'
,
lower
,
'upper'
,
upper
,
'is_test'
,
is_test
)
return
out
return
_C_ops
.
rrelu
(
x
,
lower
,
upper
,
is_test
)
else
:
check_variable_and_dtype
(
x
,
'X'
,
[
'float16'
,
'float32'
,
'float64'
],
'rrelu'
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录