Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
b649344e
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看板
提交
b649344e
编写于
12月 26, 2019
作者:
L
Liu Yiqun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Optimize the calculate of output dims in fc kernel.
上级
6468cdeb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
22 deletion
+10
-22
lite/kernels/x86/fc_compute.h
lite/kernels/x86/fc_compute.h
+10
-22
未找到文件。
lite/kernels/x86/fc_compute.h
浏览文件 @
b649344e
...
...
@@ -31,20 +31,6 @@ namespace lite {
namespace
kernels
{
namespace
x86
{
inline
void
FCOutputSize
(
const
lite
::
DDim
&
in_dims
,
const
lite
::
DDim
&
w_dims
,
std
::
vector
<
int64_t
>&
out_dims
,
// NOLINT
int
in_num_col_dims
,
bool
padding_weights
)
{
auto
w_dims1
=
padding_weights
?
w_dims
[
1
]
-
4
:
w_dims
[
1
];
out_dims
.
reserve
(
static_cast
<
size_t
>
(
in_num_col_dims
+
1
));
for
(
int
i
=
0
;
i
<
in_num_col_dims
;
++
i
)
{
out_dims
.
push_back
(
in_dims
[
i
]);
}
out_dims
.
push_back
(
w_dims1
);
}
template
<
lite
::
TargetType
Target
,
typename
T
>
class
FCFunctor
{
public:
...
...
@@ -148,18 +134,20 @@ class FcCompute : public KernelLite<TARGET(kX86), PRECISION(kFloat)> {
int
in_num_col_dims
=
param
.
in_num_col_dims
;
bool
with_relu
=
(
param
.
activation_type
==
"relu"
)
?
true
:
false
;
auto
w_dims
=
w
->
dims
();
bool
padding_weights
=
param
.
padding_weights
;
auto
&
w_dims
=
w
->
dims
();
auto
w_dims0
=
padding_weights
?
w_dims
[
0
]
-
4
:
w_dims
[
0
];
auto
w_dims1
=
padding_weights
?
w_dims
[
1
]
-
4
:
w_dims
[
1
];
std
::
vector
<
int64_t
>
output_dims
;
FCOutputSize
(
input
->
dims
(),
w_dims
,
output_dims
,
in_num_col_dims
,
padding_weights
);
output
->
Resize
(
output_dims
);
auto
&
in_dims
=
input
->
dims
();
DDim
out_dims
(
static_cast
<
size_t
>
(
in_num_col_dims
+
1
));
for
(
int
i
=
0
;
i
<
in_num_col_dims
;
++
i
)
{
out_dims
[
i
]
=
in_dims
[
i
];
}
out_dims
[
in_num_col_dims
]
=
w_dims1
;
output
->
Resize
(
out_dims
);
output
->
set_lod
(
input
->
lod
());
auto
out_dims
=
output
->
dims
();
auto
w_dims0
=
padding_weights
?
w_dims
[
0
]
-
4
:
w_dims
[
0
];
auto
w_dims1
=
padding_weights
?
w_dims
[
1
]
-
4
:
w_dims
[
1
];
int
M
=
out_dims
.
production
()
/
w_dims1
;
const
T
*
input_data
=
input
->
data
<
T
>
();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录