Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
Mace
提交
a1d3bd26
Mace
项目概览
Xiaomi
/
Mace
通知
107
Star
40
Fork
27
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Mace
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a1d3bd26
编写于
5月 06, 2019
作者:
L
liuqi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix some bugs.
1. Bug in operator source template. 2. Output shapes of Op with data format may be not 4D.
上级
3e9bb73e
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
10 addition
and
10 deletion
+10
-10
mace/core/net_def_adapter.cc
mace/core/net_def_adapter.cc
+8
-9
mace/python/tools/operator.jinja2
mace/python/tools/operator.jinja2
+2
-1
未找到文件。
mace/core/net_def_adapter.cc
浏览文件 @
a1d3bd26
...
@@ -381,9 +381,7 @@ MaceStatus NetDefAdapter::AdaptDataFormat(
...
@@ -381,9 +381,7 @@ MaceStatus NetDefAdapter::AdaptDataFormat(
int
output_shape_size
=
op_def
->
output_shape_size
();
int
output_shape_size
=
op_def
->
output_shape_size
();
for
(
int
i
=
0
;
i
<
output_shape_size
;
++
i
)
{
for
(
int
i
=
0
;
i
<
output_shape_size
;
++
i
)
{
auto
output_shape
=
op_def
->
mutable_output_shape
(
i
);
auto
output_shape
=
op_def
->
mutable_output_shape
(
i
);
MACE_CHECK
(
output_shape
->
dims_size
()
==
4
,
if
(
output_shape
->
dims_size
()
==
4
)
{
"Output shape should be 4D if the of has data format. "
,
op_def
->
name
());
// transpose output shape format from NHWC to NCHW
// transpose output shape format from NHWC to NCHW
int64_t
height
=
output_shape
->
dims
(
1
);
int64_t
height
=
output_shape
->
dims
(
1
);
int64_t
width
=
output_shape
->
dims
(
2
);
int64_t
width
=
output_shape
->
dims
(
2
);
...
@@ -393,6 +391,7 @@ MaceStatus NetDefAdapter::AdaptDataFormat(
...
@@ -393,6 +391,7 @@ MaceStatus NetDefAdapter::AdaptDataFormat(
}
}
}
}
}
}
}
*
op_output_df
=
op_data_format
;
*
op_output_df
=
op_data_format
;
// the output memory type of transpose op is based on the consumer op's device
// the output memory type of transpose op is based on the consumer op's device
...
...
mace/python/tools/operator.jinja2
浏览文件 @
a1d3bd26
...
@@ -96,9 +96,10 @@ void CreateOperator{{i}}(mace::OperatorDef *op) {
...
@@ -96,9 +96,10 @@ void CreateOperator{{i}}(mace::OperatorDef *op) {
{% if net.op[i].output_shape|length > 0 %}
{% if net.op[i].output_shape|length > 0 %}
op->mutable_output_shape()->Reserve({{ net.op[i].output_shape|length }});
op->mutable_output_shape()->Reserve({{ net.op[i].output_shape|length }});
mace::OutputShape * output_shape = nullptr;
{% for shape in net.op[i].output_shape %}
{% for shape in net.op[i].output_shape %}
{% if shape.dims|length > 0 %}
{% if shape.dims|length > 0 %}
mace::OutputShape *
output_shape = op->add_output_shape();
output_shape = op->add_output_shape();
output_shape->mutable_dims()->Reserve({{ shape.dims|length }});
output_shape->mutable_dims()->Reserve({{ shape.dims|length }});
{% for dim in shape.dims %}
{% for dim in shape.dims %}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录