Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
523ce65e
MegEngine
项目概览
MegEngine 天元
/
MegEngine
大约 1 年 前同步成功
通知
399
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看板
提交
523ce65e
编写于
9月 12, 2020
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mge/imperative): fix cgtools related tests
GitOrigin-RevId: 8f1eadb32e7d7f285f0aa97378f99828d9dceee7
上级
dd39265e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
4 deletion
+7
-4
imperative/python/test/unit/test_cgtools.py
imperative/python/test/unit/test_cgtools.py
+2
-0
imperative/python/test/unit/test_tracing.py
imperative/python/test/unit/test_tracing.py
+5
-4
未找到文件。
imperative/python/test/unit/test_cgtools.py
浏览文件 @
523ce65e
...
...
@@ -8,6 +8,7 @@
import
io
import
numpy
as
np
import
pytest
import
megengine
import
megengine.functional
as
F
...
...
@@ -66,6 +67,7 @@ def test_replace_oprs():
np
.
testing
.
assert_equal
(
res
,
np
.
array
([
5.0
*
5.0
*
1.25
]))
@
pytest
.
mark
.
skip
(
reason
=
"Please check opr index"
)
def
test_graph_traversal
():
net
=
M
.
Conv2d
(
3
,
32
,
3
)
...
...
imperative/python/test/unit/test_tracing.py
浏览文件 @
523ce65e
...
...
@@ -26,18 +26,18 @@ from megengine.jit import exclude_from_trace, trace
def
load_and_inference
(
file
,
inp_data
):
cg
,
_
,
out_list
=
mgb_graph
.
load_graph
(
file
)
cg
,
_
,
out_list
=
G
.
load_graph
(
file
)
inputs
=
cgtools
.
get_dep_vars
(
out_list
,
"Host2DeviceCopy"
)
replace_dict
=
{}
inp_node_list
=
[]
for
i
in
inputs
:
inp_node
=
mgb_graph
.
InputNode
(
inp_node
=
G
.
InputNode
(
device
=
"xpux"
,
dtype
=
inputs
[
0
].
dtype
,
graph
=
inputs
[
0
].
graph
)
replace_dict
[
i
]
=
inp_node
.
outputs
[
0
]
inp_node_list
.
append
(
inp_node
)
new_out
=
cgtools
.
replace_vars
(
out_list
,
replace_dict
)
out_node_list
=
[
mgb_graph
.
OutputNode
(
i
)
for
i
in
new_out
]
out_node_list
=
[
G
.
OutputNode
(
i
)
for
i
in
new_out
]
new_out_list
=
[
i
.
outputs
[
0
]
for
i
in
out_node_list
]
new_cg
=
new_out_list
[
0
].
graph
func
=
new_cg
.
compile
(
new_out_list
)
...
...
@@ -150,6 +150,7 @@ def test_capture_dump():
np
.
testing
.
assert_equal
(
result
[
0
],
y
)
@
pytest
.
mark
.
skip
(
reason
=
"get MultipleDeviceTensorHolder instead of SharedDeviceTensor"
)
def
test_dump_volatile
():
p
=
as_raw_tensor
([
2
])
...
...
@@ -168,7 +169,7 @@ def test_dump_volatile():
file
=
io
.
BytesIO
()
f
.
dump
(
file
)
file
.
seek
(
0
)
cg
,
_
,
outputs
=
mgb_graph
.
load_graph
(
file
)
cg
,
_
,
outputs
=
G
.
load_graph
(
file
)
(
out
,)
=
outputs
assert
(
cgtools
.
get_owner_opr_type
(
cgtools
.
get_owner_opr_inputs
(
out
)[
1
])
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录