Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
354b478c
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看板
提交
354b478c
编写于
9月 09, 2020
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(opr): remove constant value infer for const SharedDeviceTensor
GitOrigin-RevId: 8fa47b35adbeb8935038b494f6bb2b55df7dd152
上级
78d7d400
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
19 addition
and
41 deletion
+19
-41
src/opr/impl/dnn/convolution.cpp
src/opr/impl/dnn/convolution.cpp
+15
-5
src/opr/impl/io.cpp
src/opr/impl/io.cpp
+0
-32
src/opr/include/megbrain/opr/io.h
src/opr/include/megbrain/opr/io.h
+4
-4
未找到文件。
src/opr/impl/dnn/convolution.cpp
浏览文件 @
354b478c
...
...
@@ -963,11 +963,21 @@ void mixin::WeightPreprocessExecutor::record_preprocessed_weight(
bool
mixin
::
WeightPreprocessExecutor
::
mixin_allow_weight_preprocess
(
const
cg
::
OperatorNodeBase
&
opr
)
const
{
bool
param_merged
=
opr
.
input
(
1
)
->
owner_opr
()
->
same_type
<
opr
::
MultipleDeviceTensorHolder
>
();
return
opr
.
input
(
1
)
->
contain_flag
(
VarNode
::
Flag
::
PERSISTENT_DEVICE_VALUE
)
&&
(
cg
::
is_const_var_value
(
opr
.
input
(
1
))
||
param_merged
);
if
(
!
opr
.
input
(
1
)
->
contain_flag
(
VarNode
::
Flag
::
PERSISTENT_DEVICE_VALUE
))
return
false
;
if
(
cg
::
is_const_var_value
(
opr
.
input
(
1
)))
return
true
;
auto
*
input_opr
=
opr
.
input
(
1
)
->
owner_opr
();
if
(
input_opr
->
same_type
<
opr
::
MultipleDeviceTensorHolder
>
()
||
input_opr
->
same_type
<
opr
::
MultipleDeviceTensorWithFormatHolder
>
())
return
true
;
auto
*
sdt
=
input_opr
->
try_cast_final
<
opr
::
SharedDeviceTensor
>
();
if
(
sdt
&&
sdt
->
const_value
())
return
true
;
auto
*
sdtf
=
input_opr
->
try_cast_final
<
opr
::
SharedDeviceTensorWithFormat
>
();
if
(
sdtf
&&
sdtf
->
const_value
())
return
true
;
return
false
;
}
/* ==================== ConvolutionForward ==================== */
...
...
src/opr/impl/io.cpp
浏览文件 @
354b478c
...
...
@@ -307,20 +307,6 @@ void intl::SharedDeviceTensorBase::init_output_comp_node() {
comp_node
(
m_dev_data
->
comp_node
());
}
bool
intl
::
SharedDeviceTensorBase
::
fill_in_static_infer
(
DeviceTensorND
*
dest
)
{
if
(
m_const_value
)
{
if
(
dest
)
{
if
(
m_static_infer
.
empty
())
{
m_static_infer
.
comp_node
(
CompNode
::
default_cpu
())
.
copy_from
(
*
m_dev_data
);
}
*
dest
=
m_static_infer
;
}
return
true
;
}
return
false
;
}
cg
::
static_infer
::
SourceType
SharedDeviceTensor
::
static_infer_src_type
()
const
{
return
cg
::
static_infer
::
SourceType
::
CONSTANT
;
}
...
...
@@ -886,24 +872,6 @@ void intl::MultipleDeviceTensorHolderBase::init_output_static_infer_desc() {
};
mgr
.
register_shape_infer
(
output
(
i
),
{
SourceType
::
CONSTANT
,
{},
infer_shp
});
auto
infer_val
=
[
this
,
i
](
DeviceTensorND
&
dest
,
const
InpVal
&
)
{
if
(
m_host_values
.
empty
())
{
m_host_values
.
resize
(
m_values
.
size
());
}
if
(
m_host_values
[
i
].
empty
())
{
m_host_values
[
i
]
.
comp_node
(
CompNode
::
default_cpu
())
.
copy_from
(
*
m_values
[
i
]);
}
if
(
!
m_host_values
[
i
].
empty
())
{
dest
=
m_host_values
[
i
];
return
true
;
}
return
false
;
};
mgr
.
register_value_infer
(
output
(
i
),
{
SourceType
::
CONSTANT
,
{},
infer_val
});
}
}
...
...
src/opr/include/megbrain/opr/io.h
浏览文件 @
354b478c
...
...
@@ -75,12 +75,14 @@ class DeviceTensorHolder: public HostIONodeBase {
*/
MGB_DEFINE_CLS_WITH_SUPER
(
SharedDeviceTensorBase
,
DeviceTensorHolder
)
// {
std
::
shared_ptr
<
DeviceTensorND
>
m_dev_data
;
DeviceTensorND
m_static_infer
;
bool
m_const_value
;
const
TensorShape
&
get_output_shape
()
override
;
bool
fill_in_static_infer
(
DeviceTensorND
*
dest
)
override
;
bool
fill_in_static_infer
(
DeviceTensorND
*
dest
)
override
{
MGB_MARK_USED_VAR
(
dest
);
return
false
;
}
void
init_output_comp_node
()
override
;
...
...
@@ -131,8 +133,6 @@ private:
void
init_output_comp_node
()
override
;
void
init_output_static_infer_desc
()
override
;
NodeProp
*
do_make_node_prop
()
const
override
;
SmallVector
<
DeviceTensorND
>
m_host_values
;
};
}
// namespace intl
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录