Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
377b3465
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看板
未验证
提交
377b3465
编写于
8月 03, 2022
作者:
A
Aurelius84
提交者:
GitHub
8月 03, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Yaml] Add ones and zeros for C++ API (#44839)
上级
71cbbdac
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
50 addition
and
1 deletion
+50
-1
paddle/phi/api/yaml/legacy_api.yaml
paddle/phi/api/yaml/legacy_api.yaml
+11
-1
python/paddle/fluid/tests/unittests/test_ones_like.py
python/paddle/fluid/tests/unittests/test_ones_like.py
+19
-0
python/paddle/fluid/tests/unittests/test_zeros_like_op.py
python/paddle/fluid/tests/unittests/test_zeros_like_op.py
+20
-0
未找到文件。
paddle/phi/api/yaml/legacy_api.yaml
浏览文件 @
377b3465
...
...
@@ -319,7 +319,7 @@
func
:
AucInferMeta
kernel
:
func
:
auc
optional
:
ins_tag_weight
optional
:
ins_tag_weight
#average_accumulates
-
api
:
average_accumulates_
...
...
@@ -1785,6 +1785,11 @@
kernel
:
func
:
one_hot
-
api
:
ones
args
:
(IntArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
output
:
Tensor
invoke
:
full(shape, 1, dtype, place)
-
api
:
ones_like
args
:
(Tensor x, DataType dtype=DataType::UNDEFINED, Place place={})
output
:
Tensor
...
...
@@ -2728,6 +2733,11 @@
optional
:
gt_score
backward
:
yolov3_loss_grad
-
api
:
zeros
args
:
(IntArray shape, DataType dtype=DataType::FLOAT32, Place place=CPUPlace())
output
:
Tensor
invoke
:
full(shape, 0, dtype, place)
-
api
:
zeros_like
args
:
(Tensor x, DataType dtype=DataType::UNDEFINED, Place place = {})
output
:
Tensor
...
...
python/paddle/fluid/tests/unittests/test_ones_like.py
浏览文件 @
377b3465
...
...
@@ -18,8 +18,10 @@ import unittest
import
numpy
as
np
import
paddle
import
paddle.fluid
as
fluid
from
paddle
import
_C_ops
from
paddle
import
ones_like
from
paddle.fluid
import
core
,
Program
,
program_guard
from
paddle.fluid.framework
import
convert_np_dtype_to_dtype_
class
TestOnesLikeAPIError
(
unittest
.
TestCase
):
...
...
@@ -79,5 +81,22 @@ class TestOnesLikeImpeartive(unittest.TestCase):
paddle
.
enable_static
()
class
TestOnesAPI
(
unittest
.
TestCase
):
def
test_api
(
self
):
shape
=
[
3
,
4
]
place
=
fluid
.
CUDAPlace
(
0
)
if
core
.
is_compiled_with_cuda
()
else
fluid
.
CPUPlace
()
paddle
.
disable_static
(
place
)
for
dtype
in
[
np
.
float32
,
np
.
float64
,
np
.
int32
,
np
.
int64
]:
out
=
_C_ops
.
final_state_ones
(
shape
,
convert_np_dtype_to_dtype_
(
dtype
),
place
)
self
.
assertEqual
((
out
.
numpy
()
==
np
.
ones
(
shape
,
dtype
)).
all
(),
True
)
paddle
.
enable_static
()
if
__name__
==
"__main__"
:
unittest
.
main
()
python/paddle/fluid/tests/unittests/test_zeros_like_op.py
浏览文件 @
377b3465
...
...
@@ -18,8 +18,10 @@ import numpy as np
import
paddle
import
paddle.fluid
as
fluid
from
paddle
import
zeros_like
from
paddle
import
_C_ops
from
paddle.fluid
import
core
,
Program
,
program_guard
from
paddle.fluid.framework
import
_test_eager_guard
from
paddle.fluid.framework
import
convert_np_dtype_to_dtype_
class
TestZerosLikeAPIError
(
unittest
.
TestCase
):
...
...
@@ -86,5 +88,23 @@ class TestZerosLikeImpeartive(unittest.TestCase):
self
.
test_out
()
class
TestZerosAPI
(
unittest
.
TestCase
):
def
test_api
(
self
):
shape
=
[
3
,
4
]
place
=
fluid
.
CUDAPlace
(
0
)
if
core
.
is_compiled_with_cuda
()
else
fluid
.
CPUPlace
()
paddle
.
disable_static
(
place
)
for
dtype
in
[
np
.
float32
,
np
.
float64
,
np
.
int32
,
np
.
int64
]:
out
=
_C_ops
.
final_state_zeros
(
shape
,
convert_np_dtype_to_dtype_
(
dtype
),
place
)
self
.
assertEqual
((
out
.
numpy
()
==
np
.
zeros
(
shape
,
dtype
)).
all
(),
True
)
paddle
.
enable_static
()
if
(
__name__
==
'__main__'
):
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录