Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
4485e780
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
403
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4485e780
编写于
2月 01, 2021
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mge/functional): fix linspace device and open other trace tests
GitOrigin-RevId: 4667c4adec0867f09cd4c030c457e0174fa6f908
上级
334eda87
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
27 addition
and
23 deletion
+27
-23
imperative/python/megengine/functional/tensor.py
imperative/python/megengine/functional/tensor.py
+15
-4
imperative/python/test/unit/functional/test_functional.py
imperative/python/test/unit/functional/test_functional.py
+1
-7
imperative/python/test/unit/functional/test_tensor.py
imperative/python/test/unit/functional/test_tensor.py
+11
-12
未找到文件。
imperative/python/megengine/functional/tensor.py
浏览文件 @
4485e780
...
...
@@ -910,7 +910,7 @@ def linspace(
import numpy as np
import megengine.functional as F
a = F.linspace(3,
10,
5)
a = F.linspace(3,
10,
5)
print(a.numpy())
Outputs:
...
...
@@ -920,9 +920,20 @@ def linspace(
[ 3. 4.75 6.5 8.25 10. ]
"""
start
=
Tensor
(
start
,
device
=
device
)
stop
=
Tensor
(
stop
,
device
=
device
)
num
=
Tensor
(
num
,
device
=
device
)
for
item
in
(
start
,
stop
,
num
):
cur_device
=
getattr
(
item
,
"device"
,
None
)
if
device
is
None
:
device
=
cur_device
else
:
if
not
(
cur_device
is
None
or
device
==
cur_device
):
raise
(
"ambiguous device for linspace opr"
)
if
not
isinstance
(
start
,
Tensor
):
start
=
Tensor
(
start
,
device
=
device
)
if
not
isinstance
(
stop
,
Tensor
):
stop
=
Tensor
(
stop
,
device
=
device
)
if
not
isinstance
(
num
,
Tensor
):
num
=
Tensor
(
num
,
device
=
device
)
op
=
builtin
.
Linspace
(
comp_node
=
device
)
(
result
,)
=
apply
(
op
,
start
,
stop
,
num
)
...
...
imperative/python/test/unit/functional/test_functional.py
浏览文件 @
4485e780
...
...
@@ -114,18 +114,12 @@ def test_matmul():
{
"input"
:
[
data3
,
data4
]},
{
"input"
:
[
data4
,
data5
]},
]
for
_
in
range
(
0
,
batch_size
):
# FIXME: remove test_trace=False in the future
opr_test
(
cases
,
F
.
matmul
,
test_trace
=
False
,
ref_fn
=
np
.
matmul
,
)
opr_test
(
cases
,
F
.
matmul
,
ref_fn
=
np
.
matmul
)
# FIXME: remove test_trace=False in the future
opr_test
(
[{
"input"
:
[
data1
,
data4
]}],
F
.
matmul
,
ref_fn
=
lambda
x
,
y
:
np
.
matmul
(
x
,
y
.
transpose
(
0
,
1
,
3
,
2
)),
test_trace
=
False
,
transpose_b
=
True
,
)
...
...
imperative/python/test/unit/functional/test_tensor.py
浏览文件 @
4485e780
...
...
@@ -162,24 +162,30 @@ def test_linspace():
{
"input"
:
[
1
,
9
,
9
]},
{
"input"
:
[
3
,
10
,
8
]},
]
# FIXME: remove test_trace=False in the future
opr_test
(
cases
,
F
.
linspace
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
linspace
(
start
,
end
,
step
,
dtype
=
np
.
float32
),
test_trace
=
False
,
)
cases
=
[
{
"input"
:
[
9
,
1
,
9
]},
{
"input"
:
[
10
,
3
,
8
]},
]
# FIXME: remove test_trace=False in the future
opr_test
(
cases
,
F
.
linspace
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
linspace
(
start
,
end
,
step
,
dtype
=
np
.
float32
),
test_trace
=
False
,
)
cases
=
[
{
"input"
:
[
1
,
tensor
(
9
),
9
]},
{
"input"
:
[
tensor
(
1
),
9
,
tensor
(
9
)]},
]
opr_test
(
cases
,
F
.
linspace
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
linspace
(
1
,
9
,
9
,
dtype
=
np
.
float32
),
)
...
...
@@ -188,36 +194,30 @@ def test_arange():
{
"input"
:
[
1
,
9
,
1
]},
{
"input"
:
[
2
,
10
,
2
]},
]
# FIXME: remove test_trace=False in the future
opr_test
(
cases
,
F
.
arange
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
arange
(
start
,
end
,
step
,
dtype
=
np
.
float32
),
test_trace
=
False
,
)
cases
=
[
{
"input"
:
[
9
,
1
,
-
1
]},
{
"input"
:
[
10
,
2
,
-
2
]},
]
# FIXME: remove test_trace=False in the future
opr_test
(
cases
,
F
.
arange
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
arange
(
start
,
end
,
step
,
dtype
=
np
.
float32
),
test_trace
=
False
,
)
cases
=
[
{
"input"
:
[
9.3
,
1.2
,
-
0.5
]},
{
"input"
:
[
10.3
,
2.1
,
-
1.7
]},
]
# FIXME: remove test_trace=False in the future
opr_test
(
cases
,
F
.
arange
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
arange
(
start
,
end
,
step
,
dtype
=
np
.
float32
),
test_trace
=
False
,
)
...
...
@@ -289,8 +289,7 @@ def test_broadcast():
{
"input"
:
[
data1
,
output1_shape
],
"output"
:
output1_shape
},
{
"input"
:
[
data2
,
output2_shape
],
"output"
:
output2_shape
},
]
# FIXME: remove test_trace=False in the future
opr_test
(
cases
,
F
.
broadcast_to
,
compare_fn
=
compare_fn
,
test_trace
=
False
)
opr_test
(
cases
,
F
.
broadcast_to
,
compare_fn
=
compare_fn
)
x
=
F
.
ones
((
2
,
1
,
3
))
with
pytest
.
raises
(
RuntimeError
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录