Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
7080e22b
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7080e22b
编写于
10月 17, 2018
作者:
H
hjchen2
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add int8 conv3x3 implementation copied from wangzhen31
上级
b41c7a95
变更
2
展开全部
显示空白变更内容
内联
并排
Showing
2 changed file
with
1130 addition
and
5 deletion
+1130
-5
src/operators/kernel/central-arm-func/conv3x3_arm_int8.cpp
src/operators/kernel/central-arm-func/conv3x3_arm_int8.cpp
+1117
-1
test/operators/test_int8_conv_op.cpp
test/operators/test_int8_conv_op.cpp
+13
-4
未找到文件。
src/operators/kernel/central-arm-func/conv3x3_arm_int8.cpp
浏览文件 @
7080e22b
此差异已折叠。
点击以展开。
test/operators/test_int8_conv_op.cpp
浏览文件 @
7080e22b
...
...
@@ -143,7 +143,7 @@ int TestConvOp() {
int
input_c
=
3
;
int
input_h
=
100
;
int
input_w
=
100
;
int
output_c
=
32
;
int
output_c
=
8
;
framework
::
DDim
input_shape
=
framework
::
make_ddim
({
batch_size
,
input_c
,
input_h
,
input_w
});
framework
::
DDim
filter_shape
=
...
...
@@ -158,11 +158,11 @@ int TestConvOp() {
auto
input_var
=
scope
.
get
()
->
Var
(
"input"
);
auto
input
=
input_var
->
template
GetMutable
<
framework
::
LoDTensor
>();
SetupTensor
<
Itype
>
(
input
,
input_shape
,
-
127
,
12
7
);
SetupTensor
<
Itype
>
(
input
,
input_shape
,
-
7
,
7
);
auto
filter_var
=
scope
.
get
()
->
Var
(
"filter"
);
auto
filter
=
filter_var
->
template
GetMutable
<
framework
::
LoDTensor
>();
SetupTensor
<
Itype
>
(
filter
,
filter_shape
,
-
127
,
12
7
);
SetupTensor
<
Itype
>
(
filter
,
filter_shape
,
-
7
,
7
);
auto
output_var
=
scope
.
get
()
->
Var
(
"output"
);
framework
::
AttributeMap
attrs
;
...
...
@@ -202,4 +202,13 @@ int TestConvOp() {
}
// namespace paddle_mobile
int
main
()
{
return
paddle_mobile
::
TestConvOp
<
int8_t
,
int32_t
,
5
,
2
,
1
>
();
}
int
main
()
{
// kernel = 3, pad = 0, stride = 1
paddle_mobile
::
TestConvOp
<
int8_t
,
int32_t
,
3
,
0
,
1
>
();
// kernel = 3, pad = 1, stride = 1
paddle_mobile
::
TestConvOp
<
int8_t
,
int32_t
,
3
,
1
,
1
>
();
// kernel = 5, pad = 0, stride = 1
paddle_mobile
::
TestConvOp
<
int8_t
,
int32_t
,
5
,
0
,
1
>
();
// kernel = 5, pad = 2, stride = 1
paddle_mobile
::
TestConvOp
<
int8_t
,
int32_t
,
5
,
2
,
1
>
();
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录