Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
9d397727
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看板
提交
9d397727
编写于
6月 23, 2022
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(traced_module): fix bug of renaming tesnor
GitOrigin-RevId: 468a996bddf5af9820626e207cf18b6420262814
上级
31f31cef
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
31 addition
and
7 deletion
+31
-7
imperative/python/src/module_trace.h
imperative/python/src/module_trace.h
+10
-0
imperative/python/src/tensor.cpp
imperative/python/src/tensor.cpp
+6
-6
imperative/python/test/unit/traced_module/test_trace_module.py
...ative/python/test/unit/traced_module/test_trace_module.py
+15
-1
未找到文件。
imperative/python/src/module_trace.h
浏览文件 @
9d397727
...
...
@@ -30,12 +30,22 @@ private:
}
public:
inline
static
WeakKeyMap
<
ValueWeakRef
,
py
::
object
>
module_trace_info_map
;
ModuleTraceTransformation
(
py
::
function
hook_fn
)
:
m_hook_fn
(
hook_fn
)
{}
ValueRefList
apply_transformation
(
const
Operator
&
op
,
Span
<
ValueRef
>
inputs
)
override
{
if
(
op
.
is
<
ApplyOp
>
()
&&
m_enabled
>
0
)
{
auto
outputs
=
apply_module_trace_hook
(
op
.
cast
<
ApplyOp
>
().
op
(),
inputs
);
return
outputs
;
}
else
if
(
op
.
is
<
RenameValue
>
())
{
auto
outputs
=
imperative
::
apply
(
op
,
inputs
);
if
(
auto
module_trace_info
=
module_trace_info_map
.
try_get
(
inputs
[
0
]))
{
if
(
module_trace_info
->
ptr
())
{
auto
node
=
module_trace_info
.
value
();
module_trace_info_map
[
outputs
[
0
]]
=
module_trace_info
.
value
();
}
}
return
outputs
;
}
else
{
return
imperative
::
apply
(
op
,
inputs
);
}
...
...
imperative/python/src/tensor.cpp
浏览文件 @
9d397727
...
...
@@ -47,10 +47,6 @@ namespace views = ranges::views;
namespace
mgb
::
imperative
::
python
{
namespace
{
WeakKeyMap
<
ValueWeakRef
,
py
::
object
>
module_trace_info_map
;
}
// namespace
interpreter
::
Interpreter
::
Channel
*
interpreter_for_py
=
nullptr
;
PyTypeObject
*
py_tensor_type
=
nullptr
;
PyTypeObject
*
py_varnode_type
=
nullptr
;
...
...
@@ -594,7 +590,9 @@ TensorWrapper::TensorWrapper(PyObject* args, PyObject* kwargs) {
}
PyObject
*
TensorWrapper
::
module_trace_info
()
{
if
(
auto
module_trace_info
=
module_trace_info_map
.
try_get
(
m_tensor
->
data
()))
{
if
(
auto
module_trace_info
=
ModuleTraceTransformation
::
module_trace_info_map
.
try_get
(
m_tensor
->
data
()))
{
if
(
module_trace_info
->
ptr
())
{
return
module_trace_info
->
inc_ref
().
ptr
();
}
...
...
@@ -608,7 +606,8 @@ PyObject* TensorWrapper::module_trace_info() {
void
TensorWrapper
::
set_module_trace_info
(
PyObject
*
obj
)
{
// TODO: erase when obj == nullptr
module_trace_info_map
[
m_tensor
->
data
()]
=
py
::
reinterpret_borrow
<
py
::
object
>
(
obj
);
ModuleTraceTransformation
::
module_trace_info_map
[
m_tensor
->
data
()]
=
py
::
reinterpret_borrow
<
py
::
object
>
(
obj
);
}
void
TensorWrapper
::
_set_format
(
PyObject
*
dest
)
{
...
...
@@ -620,6 +619,7 @@ void TensorWrapper::_set_format(PyObject* dest) {
void
TensorWrapper
::
_set_name
(
PyObject
*
dest
)
{
auto
py_dest
=
py
::
reinterpret_borrow
<
py
::
object
>
(
dest
);
auto
name
=
py_dest
.
cast
<
std
::
string
>
();
m_tensor
->
set_name
(
name
);
}
...
...
imperative/python/test/unit/traced_module/test_trace_module.py
浏览文件 @
9d397727
...
...
@@ -9,7 +9,7 @@ from megengine.core._imperative_rt.core2 import apply
from
megengine.core.ops
import
builtin
from
megengine.module
import
Module
from
megengine.traced_module
import
TracedModule
,
enable_expr_checker
,
trace_module
from
megengine.traced_module.expr
import
Apply
,
CallFunction
,
Constant
from
megengine.traced_module.expr
import
Apply
,
CallFunction
,
C
allMethod
,
C
onstant
class
MyModule1
(
M
.
Module
):
...
...
@@ -59,6 +59,14 @@ class MyModule4(M.Module):
return
self
.
add
(
x
,
y
)
class
MyModule5
(
M
.
Module
):
def
forward
(
self
,
x
):
a
=
x
+
x
b
=
x
*
a
b
.
name
=
"result"
return
b
def
test_trace_module
():
enable_expr_checker
()
x
=
Tensor
(
1
)
...
...
@@ -157,3 +165,9 @@ def test_trace_module_2():
traced_model
.
graph
.
_exprs
[
2
].
opdef
,
builtin
.
Elemwise
)
assert
int
(
traced_model
(
Tensor
([
1
,
2
]))[
0
])
==
3
def
test_rename
():
model
=
MyModule5
()
tm_model
=
trace_module
(
model
,
Tensor
(
1
))
assert
isinstance
(
tm_model
.
graph
.
outputs
[
0
].
expr
,
CallMethod
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录