Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
69a04209
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看板
未验证
提交
69a04209
编写于
2月 23, 2022
作者:
Z
zhangxiaoci
提交者:
GitHub
2月 23, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor range unittest for kunlun (#39800)
*test=kunlun
上级
b089e7cd
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
48 addition
and
35 deletion
+48
-35
python/paddle/fluid/tests/unittests/xpu/test_range_xpu.py
python/paddle/fluid/tests/unittests/xpu/test_range_xpu.py
+48
-35
未找到文件。
python/paddle/fluid/tests/unittests/xpu/test_range_xpu.py
浏览文件 @
69a04209
...
...
@@ -20,57 +20,70 @@ import numpy as np
import
sys
sys
.
path
.
append
(
".."
)
from
op_test_xpu
import
XPUOpTest
from
xpu.get_test_cover_info
import
create_test_class
,
get_xpu_op_support_types
,
XPUOpTestWrapper
paddle
.
enable_static
()
class
TestRangeOp
(
XPUOpTest
):
def
setUp
(
self
):
self
.
op_type
=
"range"
self
.
init_config
()
self
.
inputs
=
{
'Start'
:
np
.
array
([
self
.
case
[
0
]]).
astype
(
self
.
dtype
),
'End'
:
np
.
array
([
self
.
case
[
1
]]).
astype
(
self
.
dtype
),
'Step'
:
np
.
array
([
self
.
case
[
2
]]).
astype
(
self
.
dtype
)
}
class
XPUTestRangeOp
(
XPUOpTestWrapper
):
def
__init__
(
self
):
self
.
op_name
=
"range"
self
.
use_dynamic_create_class
=
False
self
.
outputs
=
{
'Out'
:
np
.
arange
(
self
.
case
[
0
],
self
.
case
[
1
],
self
.
case
[
2
]).
astype
(
self
.
dtype
)
}
class
TestRangeOp
(
XPUOpTest
):
def
setUp
(
self
):
self
.
set_xpu
()
self
.
op_type
=
"range"
self
.
init_dtype
()
self
.
init_config
()
self
.
inputs
=
{
'Start'
:
np
.
array
([
self
.
case
[
0
]]).
astype
(
self
.
dtype
),
'End'
:
np
.
array
([
self
.
case
[
1
]]).
astype
(
self
.
dtype
),
'Step'
:
np
.
array
([
self
.
case
[
2
]]).
astype
(
self
.
dtype
)
}
def
init_config
(
self
):
self
.
dtype
=
np
.
float32
self
.
case
=
(
0
,
1
,
0.2
)
self
.
outputs
=
{
'Out'
:
np
.
arange
(
self
.
case
[
0
],
self
.
case
[
1
],
self
.
case
[
2
]).
astype
(
self
.
dtype
)
}
def
test_check_output
(
self
):
place
=
paddle
.
XPUPlace
(
0
)
self
.
check_output_with_place
(
place
,
check_dygraph
=
False
)
def
set_xpu
(
self
):
self
.
__class__
.
no_need_check_grad
=
True
def
init_dtype
(
self
):
self
.
dtype
=
self
.
in_type
class
TestFloatRangeOpCase0
(
TestRangeOp
):
def
init_config
(
self
):
self
.
dtype
=
np
.
float32
self
.
case
=
(
0
,
5
,
1
)
def
init_config
(
self
):
self
.
case
=
(
0
,
1
,
0.2
)
if
self
.
dtype
==
np
.
float32
else
(
0
,
5
,
1
)
def
test_check_output
(
self
):
place
=
paddle
.
XPUPlace
(
0
)
self
.
check_output_with_place
(
place
,
check_dygraph
=
False
)
class
TestInt32RangeOpCase0
(
TestRangeOp
):
def
init_config
(
self
):
self
.
dtype
=
np
.
int32
self
.
case
=
(
0
,
5
,
2
)
class
TestRangeOpCase0
(
TestRangeOp
):
def
init_config
(
self
):
self
.
case
=
(
0
,
5
,
1
)
class
TestRangeOpCase1
(
TestRangeOp
):
def
init_config
(
self
):
self
.
case
=
(
0
,
5
,
2
)
class
TestInt32RangeOpCase1
(
TestRangeOp
):
def
init_config
(
self
):
self
.
dtype
=
np
.
int32
self
.
case
=
(
10
,
1
,
-
2
)
class
TestRangeOpCase2
(
TestRangeOp
):
def
init_config
(
self
):
self
.
case
=
(
10
,
1
,
-
2
)
class
TestRangeOpCase3
(
TestRangeOp
):
def
init_config
(
self
):
self
.
case
=
(
-
1
,
-
10
,
-
2
)
class
TestInt32RangeOpCase2
(
TestRangeOp
):
def
init_config
(
self
):
self
.
dtype
=
np
.
int32
self
.
case
=
(
-
1
,
-
10
,
-
2
)
class
TestRangeOpCase4
(
TestRangeOp
):
def
init_config
(
self
):
self
.
case
=
(
10
,
-
10
,
-
11
)
support_types
=
get_xpu_op_support_types
(
"range"
)
for
stype
in
support_types
:
create_test_class
(
globals
(),
XPUTestRangeOp
,
stype
)
if
__name__
==
"__main__"
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录