Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
55e5ab82
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
未验证
提交
55e5ab82
编写于
7月 21, 2022
作者:
W
wanghuancoder
提交者:
GitHub
7月 21, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Eager] bilinear_tensor_product yaml (#44459)
* bilinear_tensor_product yaml
上级
78b5c103
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
26 addition
and
3 deletion
+26
-3
paddle/phi/api/yaml/legacy_api.yaml
paddle/phi/api/yaml/legacy_api.yaml
+10
-0
paddle/phi/api/yaml/legacy_backward.yaml
paddle/phi/api/yaml/legacy_backward.yaml
+9
-0
python/paddle/fluid/tests/unittests/test_bilinear_tensor_product_op.py
.../fluid/tests/unittests/test_bilinear_tensor_product_op.py
+4
-2
python/paddle/nn/functional/common.py
python/paddle/nn/functional/common.py
+3
-1
未找到文件。
paddle/phi/api/yaml/legacy_api.yaml
浏览文件 @
55e5ab82
...
...
@@ -280,6 +280,16 @@
func
:
bce_loss
backward
:
bce_loss_grad
-
api
:
bilinear_tensor_product
args
:
(Tensor x, Tensor y, Tensor weight, Tensor bias)
output
:
Tensor
infer_meta
:
func
:
BilinearTensorProductInferMeta
kernel
:
func
:
bilinear_tensor_product
optional
:
bias
backward
:
bilinear_tensor_product_grad
# bitwise_and
-
api
:
bitwise_and
args
:
(Tensor x, Tensor y)
...
...
paddle/phi/api/yaml/legacy_backward.yaml
浏览文件 @
55e5ab82
...
...
@@ -251,6 +251,15 @@
func
:
bce_loss_grad
inplace
:
(out_grad -> input_grad)
-
backward_api
:
bilinear_tensor_product_grad
forward
:
bilinear_tensor_product (Tensor x, Tensor y, Tensor weight, Tensor bias) -> Tensor(out)
args
:
(Tensor x, Tensor y, Tensor weight, Tensor out_grad)
output
:
Tensor(x_grad), Tensor(y_grad), Tensor(weight_grad), Tensor(bias_grad)
infer_meta
:
func
:
BilinearTensorProductGradInferMeta
kernel
:
func
:
bilinear_tensor_product_grad
-
backward_api
:
brelu_grad
forward
:
brelu (Tensor x, float t_min, float t_max) -> Tensor(out)
args
:
(Tensor x, Tensor out_grad, float t_min, float t_max)
...
...
python/paddle/fluid/tests/unittests/test_bilinear_tensor_product_op.py
浏览文件 @
55e5ab82
...
...
@@ -18,6 +18,7 @@ import unittest
import
numpy
as
np
import
paddle.fluid
as
fluid
from
op_test
import
OpTest
import
paddle
class
TestDygraphBilinearTensorProductAPIError
(
unittest
.
TestCase
):
...
...
@@ -41,6 +42,7 @@ class TestBilinearTensorProductOp(OpTest):
def
setUp
(
self
):
self
.
op_type
=
"bilinear_tensor_product"
self
.
python_api
=
paddle
.
nn
.
functional
.
bilinear
batch_size
=
6
size0
=
5
size1
=
4
...
...
@@ -63,10 +65,10 @@ class TestBilinearTensorProductOp(OpTest):
self
.
outputs
=
{
'Out'
:
output
+
bias
}
def
test_check_output
(
self
):
self
.
check_output
()
self
.
check_output
(
check_eager
=
True
)
def
test_check_grad_normal
(
self
):
self
.
check_grad
([
'X'
,
'Y'
,
'Weight'
,
'Bias'
],
'Out'
)
self
.
check_grad
([
'X'
,
'Y'
,
'Weight'
,
'Bias'
],
'Out'
,
check_eager
=
True
)
if
__name__
==
"__main__"
:
...
...
python/paddle/nn/functional/common.py
浏览文件 @
55e5ab82
...
...
@@ -850,7 +850,9 @@ def bilinear(x1, x2, weight, bias=None, name=None):
"""
if
in_dynamic_mode
():
if
in_dygraph_mode
():
return
_C_ops
.
final_state_bilinear_tensor_product
(
x1
,
x2
,
weight
,
bias
)
elif
_non_static_mode
():
return
_C_ops
.
bilinear_tensor_product
(
x1
,
x2
,
weight
,
bias
)
check_variable_and_dtype
(
x1
,
'x1'
,
[
'float32'
,
'float64'
],
'bilinear'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录