Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
c31386ef
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
c31386ef
编写于
4月 07, 2022
作者:
R
Ruibiao Chen
提交者:
GitHub
4月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add yaml for eye OP (#41476)
上级
516160a4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
22 addition
and
5 deletion
+22
-5
python/paddle/fluid/layers/tensor.py
python/paddle/fluid/layers/tensor.py
+4
-2
python/paddle/fluid/tests/unittests/test_eye_op.py
python/paddle/fluid/tests/unittests/test_eye_op.py
+6
-3
python/paddle/utils/code_gen/api.yaml
python/paddle/utils/code_gen/api.yaml
+12
-0
未找到文件。
python/paddle/fluid/layers/tensor.py
浏览文件 @
c31386ef
...
@@ -1724,10 +1724,12 @@ def eye(num_rows,
...
@@ -1724,10 +1724,12 @@ def eye(num_rows,
else
:
else
:
num_columns
=
num_rows
num_columns
=
num_rows
if
_non_static_mode
():
if
in_dygraph_mode
():
out
=
_C_ops
.
final_state_eye
(
num_rows
,
num_columns
,
dtype
,
_current_expected_place
())
elif
_in_legacy_dygraph
():
out
=
_C_ops
.
eye
(
'dtype'
,
dtype
,
'num_rows'
,
num_rows
,
'num_columns'
,
out
=
_C_ops
.
eye
(
'dtype'
,
dtype
,
'num_rows'
,
num_rows
,
'num_columns'
,
num_columns
)
num_columns
)
else
:
else
:
helper
=
LayerHelper
(
"eye"
,
**
locals
())
helper
=
LayerHelper
(
"eye"
,
**
locals
())
check_dtype
(
dtype
,
'dtype'
,
check_dtype
(
dtype
,
'dtype'
,
...
...
python/paddle/fluid/tests/unittests/test_eye_op.py
浏览文件 @
c31386ef
...
@@ -28,6 +28,7 @@ class TestEyeOp(OpTest):
...
@@ -28,6 +28,7 @@ class TestEyeOp(OpTest):
'''
'''
Test eye op with specified shape
Test eye op with specified shape
'''
'''
self
.
python_api
=
paddle
.
eye
self
.
op_type
=
"eye"
self
.
op_type
=
"eye"
self
.
inputs
=
{}
self
.
inputs
=
{}
...
@@ -39,7 +40,7 @@ class TestEyeOp(OpTest):
...
@@ -39,7 +40,7 @@ class TestEyeOp(OpTest):
self
.
outputs
=
{
'Out'
:
np
.
eye
(
219
,
319
,
dtype
=
np
.
int32
)}
self
.
outputs
=
{
'Out'
:
np
.
eye
(
219
,
319
,
dtype
=
np
.
int32
)}
def
test_check_output
(
self
):
def
test_check_output
(
self
):
self
.
check_output
()
self
.
check_output
(
check_eager
=
True
)
class
TestEyeOp1
(
OpTest
):
class
TestEyeOp1
(
OpTest
):
...
@@ -47,6 +48,7 @@ class TestEyeOp1(OpTest):
...
@@ -47,6 +48,7 @@ class TestEyeOp1(OpTest):
'''
'''
Test eye op with default parameters
Test eye op with default parameters
'''
'''
self
.
python_api
=
paddle
.
eye
self
.
op_type
=
"eye"
self
.
op_type
=
"eye"
self
.
inputs
=
{}
self
.
inputs
=
{}
...
@@ -54,7 +56,7 @@ class TestEyeOp1(OpTest):
...
@@ -54,7 +56,7 @@ class TestEyeOp1(OpTest):
self
.
outputs
=
{
'Out'
:
np
.
eye
(
50
,
dtype
=
float
)}
self
.
outputs
=
{
'Out'
:
np
.
eye
(
50
,
dtype
=
float
)}
def
test_check_output
(
self
):
def
test_check_output
(
self
):
self
.
check_output
()
self
.
check_output
(
check_eager
=
True
)
class
TestEyeOp2
(
OpTest
):
class
TestEyeOp2
(
OpTest
):
...
@@ -62,6 +64,7 @@ class TestEyeOp2(OpTest):
...
@@ -62,6 +64,7 @@ class TestEyeOp2(OpTest):
'''
'''
Test eye op with specified shape
Test eye op with specified shape
'''
'''
self
.
python_api
=
paddle
.
eye
self
.
op_type
=
"eye"
self
.
op_type
=
"eye"
self
.
inputs
=
{}
self
.
inputs
=
{}
...
@@ -69,7 +72,7 @@ class TestEyeOp2(OpTest):
...
@@ -69,7 +72,7 @@ class TestEyeOp2(OpTest):
self
.
outputs
=
{
'Out'
:
np
.
eye
(
99
,
1
,
dtype
=
float
)}
self
.
outputs
=
{
'Out'
:
np
.
eye
(
99
,
1
,
dtype
=
float
)}
def
test_check_output
(
self
):
def
test_check_output
(
self
):
self
.
check_output
()
self
.
check_output
(
check_eager
=
True
)
class
API_TestTensorEye
(
unittest
.
TestCase
):
class
API_TestTensorEye
(
unittest
.
TestCase
):
...
...
python/paddle/utils/code_gen/api.yaml
浏览文件 @
c31386ef
...
@@ -627,6 +627,18 @@
...
@@ -627,6 +627,18 @@
func
:
expm1
func
:
expm1
backward
:
expm1_grad
backward
:
expm1_grad
-
api
:
eye
args
:
(int64_t num_rows, int64_t num_columns, DataType dtype=DataType::FLOAT32, Place place={})
output
:
Tensor(out)
infer_meta
:
func
:
EyeInferMeta
param
:
[
num_rows
,
num_columns
,
dtype
]
kernel
:
func
:
eye
param
:
[
num_rows
,
num_columns
,
dtype
]
data_type
:
dtype
backend
:
place
-
api
:
flatten
-
api
:
flatten
args
:
(Tensor x, int start_axis, int stop_axis)
args
:
(Tensor x, int start_axis, int stop_axis)
output
:
Tensor(out), Tensor(xshape)
output
:
Tensor(out), Tensor(xshape)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录