Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
Mace
提交
489b091c
Mace
项目概览
慢慢CG
/
Mace
与 Fork 源项目一致
Fork自
Xiaomi / Mace
通知
1
Star
0
Fork
0
代码
文件
提交
分支
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看板
提交
489b091c
编写于
12月 08, 2017
作者:
W
wuchenghui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
revert dsp convert tool to support both nn_graph & nnlib
上级
bc2ed52a
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
29 addition
and
0 deletion
+29
-0
mace/dsp/test/quantized_add_test.cc
mace/dsp/test/quantized_add_test.cc
+5
-0
mace/dsp/test/quantized_maxpool_test.cc
mace/dsp/test/quantized_maxpool_test.cc
+4
-0
mace/dsp/test/quantized_relu_test.cc
mace/dsp/test/quantized_relu_test.cc
+4
-0
mace/dsp/test/quantized_resize_bilinear_test.cc
mace/dsp/test/quantized_resize_bilinear_test.cc
+4
-0
mace/dsp/test/supernode_test.cc
mace/dsp/test/supernode_test.cc
+5
-0
mace/proto/mace.proto
mace/proto/mace.proto
+1
-0
mace/python/tools/tf_dsp_converter_lib.py
mace/python/tools/tf_dsp_converter_lib.py
+6
-0
未找到文件。
mace/dsp/test/quantized_add_test.cc
浏览文件 @
489b091c
...
@@ -17,6 +17,7 @@ static NetDef BuildNetDef() {
...
@@ -17,6 +17,7 @@ static NetDef BuildNetDef() {
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_node_id
(
0
);
input_op
->
set_node_id
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
add_out_max_byte_size
(
1000
);
// add op
// add op
OperatorDef
*
add_op
=
net
.
add_op
();
OperatorDef
*
add_op
=
net
.
add_op
();
...
@@ -58,6 +59,10 @@ static NetDef BuildNetDef() {
...
@@ -58,6 +59,10 @@ static NetDef BuildNetDef() {
input_node_input
->
set_node_id
(
16
);
input_node_input
->
set_node_id
(
16
);
input_node_input
->
set_output_port
(
0
);
input_node_input
->
set_output_port
(
0
);
add_op
->
add_out_max_byte_size
(
1000
);
add_op
->
add_out_max_byte_size
(
1000
);
add_op
->
add_out_max_byte_size
(
1000
);
// output op
// output op
OperatorDef
*
output_op
=
net
.
add_op
();
OperatorDef
*
output_op
=
net
.
add_op
();
output_op
->
set_name
(
"__output__"
);
output_op
->
set_name
(
"__output__"
);
...
...
mace/dsp/test/quantized_maxpool_test.cc
浏览文件 @
489b091c
...
@@ -24,6 +24,7 @@ static NetDef BuildNetDef(const vector<index_t> &input_shape,
...
@@ -24,6 +24,7 @@ static NetDef BuildNetDef(const vector<index_t> &input_shape,
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_node_id
(
0
);
input_op
->
set_node_id
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
add_out_max_byte_size
(
1000
);
// maxpool op
// maxpool op
OperatorDef
*
maxpool_op
=
net
.
add_op
();
OperatorDef
*
maxpool_op
=
net
.
add_op
();
...
@@ -57,6 +58,9 @@ static NetDef BuildNetDef(const vector<index_t> &input_shape,
...
@@ -57,6 +58,9 @@ static NetDef BuildNetDef(const vector<index_t> &input_shape,
input_node_input
=
maxpool_op
->
add_node_input
();
input_node_input
=
maxpool_op
->
add_node_input
();
input_node_input
->
set_node_id
(
13
);
input_node_input
->
set_node_id
(
13
);
input_node_input
->
set_output_port
(
0
);
input_node_input
->
set_output_port
(
0
);
maxpool_op
->
add_out_max_byte_size
(
1000
);
maxpool_op
->
add_out_max_byte_size
(
1000
);
maxpool_op
->
add_out_max_byte_size
(
1000
);
// output op
// output op
OperatorDef
*
output_op
=
net
.
add_op
();
OperatorDef
*
output_op
=
net
.
add_op
();
...
...
mace/dsp/test/quantized_relu_test.cc
浏览文件 @
489b091c
...
@@ -16,6 +16,7 @@ static NetDef BuildNetDef() {
...
@@ -16,6 +16,7 @@ static NetDef BuildNetDef() {
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_node_id
(
0
);
input_op
->
set_node_id
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
add_out_max_byte_size
(
1000
);
// relu op
// relu op
OperatorDef
*
relu_op
=
net
.
add_op
();
OperatorDef
*
relu_op
=
net
.
add_op
();
...
@@ -38,6 +39,9 @@ static NetDef BuildNetDef() {
...
@@ -38,6 +39,9 @@ static NetDef BuildNetDef() {
input_node_input
=
relu_op
->
add_node_input
();
input_node_input
=
relu_op
->
add_node_input
();
input_node_input
->
set_node_id
(
11
);
input_node_input
->
set_node_id
(
11
);
input_node_input
->
set_output_port
(
0
);
input_node_input
->
set_output_port
(
0
);
relu_op
->
add_out_max_byte_size
(
1000
);
relu_op
->
add_out_max_byte_size
(
1000
);
relu_op
->
add_out_max_byte_size
(
1000
);
// output op
// output op
OperatorDef
*
output_op
=
net
.
add_op
();
OperatorDef
*
output_op
=
net
.
add_op
();
...
...
mace/dsp/test/quantized_resize_bilinear_test.cc
浏览文件 @
489b091c
...
@@ -18,6 +18,7 @@ static NetDef BuildNetDef() {
...
@@ -18,6 +18,7 @@ static NetDef BuildNetDef() {
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_node_id
(
0
);
input_op
->
set_node_id
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
add_out_max_byte_size
(
1200
);
// relu op
// relu op
OperatorDef
*
resize_bilinear_op
=
net
.
add_op
();
OperatorDef
*
resize_bilinear_op
=
net
.
add_op
();
...
@@ -45,6 +46,9 @@ static NetDef BuildNetDef() {
...
@@ -45,6 +46,9 @@ static NetDef BuildNetDef() {
input_node_input
=
resize_bilinear_op
->
add_node_input
();
input_node_input
=
resize_bilinear_op
->
add_node_input
();
input_node_input
->
set_node_id
(
12
);
input_node_input
->
set_node_id
(
12
);
input_node_input
->
set_output_port
(
0
);
input_node_input
->
set_output_port
(
0
);
resize_bilinear_op
->
add_out_max_byte_size
(
1200
);
resize_bilinear_op
->
add_out_max_byte_size
(
1000
);
resize_bilinear_op
->
add_out_max_byte_size
(
1000
);
// output op
// output op
OperatorDef
*
output_op
=
net
.
add_op
();
OperatorDef
*
output_op
=
net
.
add_op
();
...
...
mace/dsp/test/supernode_test.cc
浏览文件 @
489b091c
...
@@ -17,6 +17,7 @@ static NetDef BuildNetDef() {
...
@@ -17,6 +17,7 @@ static NetDef BuildNetDef() {
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_type
(
"INPUT"
);
input_op
->
set_node_id
(
0
);
input_op
->
set_node_id
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
set_padding
(
0
);
input_op
->
add_out_max_byte_size
(
1000
);
// add op
// add op
OperatorDef
*
supernode_op
=
net
.
add_op
();
OperatorDef
*
supernode_op
=
net
.
add_op
();
...
@@ -76,6 +77,10 @@ static NetDef BuildNetDef() {
...
@@ -76,6 +77,10 @@ static NetDef BuildNetDef() {
input_node_input
->
set_node_id
(
20
);
input_node_input
->
set_node_id
(
20
);
input_node_input
->
set_output_port
(
0
);
input_node_input
->
set_output_port
(
0
);
supernode_op
->
add_out_max_byte_size
(
1000
);
supernode_op
->
add_out_max_byte_size
(
1000
);
supernode_op
->
add_out_max_byte_size
(
1000
);
// output op
// output op
OperatorDef
*
output_op
=
net
.
add_op
();
OperatorDef
*
output_op
=
net
.
add_op
();
output_op
->
set_name
(
"__output__"
);
output_op
->
set_name
(
"__output__"
);
...
...
mace/proto/mace.proto
浏览文件 @
489b091c
...
@@ -93,6 +93,7 @@ message OperatorDef {
...
@@ -93,6 +93,7 @@ message OperatorDef {
optional
uint32
op_id
=
101
;
optional
uint32
op_id
=
101
;
optional
uint32
padding
=
102
;
optional
uint32
padding
=
102
;
repeated
NodeInput
node_input
=
103
;
repeated
NodeInput
node_input
=
103
;
repeated
int32
out_max_byte_size
=
104
;
// only support 32-bit len
}
}
// for memory optimization
// for memory optimization
...
...
mace/python/tools/tf_dsp_converter_lib.py
浏览文件 @
489b091c
...
@@ -132,6 +132,7 @@ def convert_ops(unresolved_ops, resolved_ops, net_def, output_node, dsp_ops):
...
@@ -132,6 +132,7 @@ def convert_ops(unresolved_ops, resolved_ops, net_def, output_node, dsp_ops):
op_def
.
input
.
append
(
input_tensor
.
name
)
op_def
.
input
.
append
(
input_tensor
.
name
)
op_def
.
input
.
extend
([
t
.
name
for
t
in
s2b_op
.
inputs
[
1
:]])
op_def
.
input
.
extend
([
t
.
name
for
t
in
s2b_op
.
inputs
[
1
:]])
op_def
.
input
.
extend
([
min_tensor
.
name
,
max_tensor
.
name
])
op_def
.
input
.
extend
([
min_tensor
.
name
,
max_tensor
.
name
])
op_def
.
out_max_byte_size
.
extend
([
max_elem_size
(
out
)
for
out
in
quantize_op
.
outputs
])
convert_op_outputs
(
op_def
,
quantize_op
)
convert_op_outputs
(
op_def
,
quantize_op
)
elif
has_padding_and_strides
(
first_op
):
elif
has_padding_and_strides
(
first_op
):
op_def
.
padding
=
padding_mode
[
first_op
.
get_attr
(
'padding'
)]
op_def
.
padding
=
padding_mode
[
first_op
.
get_attr
(
'padding'
)]
...
@@ -143,6 +144,7 @@ def convert_ops(unresolved_ops, resolved_ops, net_def, output_node, dsp_ops):
...
@@ -143,6 +144,7 @@ def convert_ops(unresolved_ops, resolved_ops, net_def, output_node, dsp_ops):
strides
=
first_op
.
get_attr
(
'strides'
)
strides
=
first_op
.
get_attr
(
'strides'
)
strides_tensor
=
add_shape_const_node
(
net_def
,
first_op
,
strides
,
'strides'
)
strides_tensor
=
add_shape_const_node
(
net_def
,
first_op
,
strides
,
'strides'
)
op_def
.
input
.
extend
([
strides_tensor
])
op_def
.
input
.
extend
([
strides_tensor
])
op_def
.
out_max_byte_size
.
extend
([
max_elem_size
(
out
)
for
out
in
first_op
.
outputs
])
convert_op_outputs
(
op_def
,
first_op
)
convert_op_outputs
(
op_def
,
first_op
)
elif
is_node_flatten_reshape
(
first_op
):
elif
is_node_flatten_reshape
(
first_op
):
op_def
.
type
=
'Flatten'
op_def
.
type
=
'Flatten'
...
@@ -150,6 +152,7 @@ def convert_ops(unresolved_ops, resolved_ops, net_def, output_node, dsp_ops):
...
@@ -150,6 +152,7 @@ def convert_ops(unresolved_ops, resolved_ops, net_def, output_node, dsp_ops):
convert_op_outputs
(
op_def
,
first_op
)
convert_op_outputs
(
op_def
,
first_op
)
elif
dsp_ops
.
has_op
(
first_op
.
type
):
elif
dsp_ops
.
has_op
(
first_op
.
type
):
op_def
.
input
.
extend
([
t
.
name
for
t
in
first_op
.
inputs
])
op_def
.
input
.
extend
([
t
.
name
for
t
in
first_op
.
inputs
])
op_def
.
out_max_byte_size
.
extend
([
max_elem_size
(
out
)
for
out
in
first_op
.
outputs
])
convert_op_outputs
(
op_def
,
first_op
)
convert_op_outputs
(
op_def
,
first_op
)
else
:
else
:
raise
Exception
(
'Unsupported op: '
,
first_op
)
raise
Exception
(
'Unsupported op: '
,
first_op
)
...
@@ -201,9 +204,11 @@ def reverse_batch_to_space_and_biasadd(net_def):
...
@@ -201,9 +204,11 @@ def reverse_batch_to_space_and_biasadd(net_def):
new_biasadd_op
.
input
[
0
]
=
get_tensor_name_from_op
(
conv_requantize_op
.
name
,
0
)
new_biasadd_op
.
input
[
0
]
=
get_tensor_name_from_op
(
conv_requantize_op
.
name
,
0
)
new_biasadd_op
.
input
[
2
]
=
get_tensor_name_from_op
(
conv_requantize_op
.
name
,
1
)
new_biasadd_op
.
input
[
2
]
=
get_tensor_name_from_op
(
conv_requantize_op
.
name
,
1
)
new_biasadd_op
.
input
[
3
]
=
get_tensor_name_from_op
(
conv_requantize_op
.
name
,
2
)
new_biasadd_op
.
input
[
3
]
=
get_tensor_name_from_op
(
conv_requantize_op
.
name
,
2
)
new_biasadd_op
.
out_max_byte_size
[
0
]
=
conv_requantize_op
.
out_max_byte_size
[
0
]
*
4
new_biasadd_requantize_op
=
mace_pb2
.
OperatorDef
()
new_biasadd_requantize_op
=
mace_pb2
.
OperatorDef
()
new_biasadd_requantize_op
.
CopyFrom
(
biasadd_requantize_op
)
new_biasadd_requantize_op
.
CopyFrom
(
biasadd_requantize_op
)
new_biasadd_requantize_op
.
out_max_byte_size
[
0
]
=
new_biasadd_op
.
out_max_byte_size
[
0
]
/
4
new_b2s_op
=
mace_pb2
.
OperatorDef
()
new_b2s_op
=
mace_pb2
.
OperatorDef
()
new_b2s_op
.
CopyFrom
(
b2s_op
)
new_b2s_op
.
CopyFrom
(
b2s_op
)
...
@@ -320,6 +325,7 @@ def strip_input_quantize_and_output_dequantize(net_def, input_node, output_node)
...
@@ -320,6 +325,7 @@ def strip_input_quantize_and_output_dequantize(net_def, input_node, output_node)
new_input_op
.
name
=
input_op
.
name
new_input_op
.
name
=
input_op
.
name
new_input_op
.
type
=
input_op
.
type
new_input_op
.
type
=
input_op
.
type
new_input_op
.
padding
=
input_op
.
padding
new_input_op
.
padding
=
input_op
.
padding
new_input_op
.
out_max_byte_size
.
extend
([
input_op
.
out_max_byte_size
[
0
]
/
4
,
4
,
4
])
new_ops
.
append
(
new_input_op
)
new_ops
.
append
(
new_input_op
)
new_input_op
.
output_shape
.
extend
([
input_op
.
output_shape
[
0
],
new_input_op
.
output_shape
.
extend
([
input_op
.
output_shape
[
0
],
minf_op
.
output_shape
[
0
],
minf_op
.
output_shape
[
0
],
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录