Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
95e0497f
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看板
未验证
提交
95e0497f
编写于
10月 26, 2018
作者:
S
suiyang
提交者:
GitHub
10月 26, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1214 from Eclipsess/develop
fix
#1213
add test-eng
上级
2c67fee1
53bd7a34
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
10 addition
and
9 deletion
+10
-9
src/operators/kernel/central-arm-func/fusion_fc_arm_func.h
src/operators/kernel/central-arm-func/fusion_fc_arm_func.h
+1
-2
src/operators/kernel/central-arm-func/pool_arm_func.h
src/operators/kernel/central-arm-func/pool_arm_func.h
+1
-0
src/operators/kernel/central-arm-func/softmax_arm_func.h
src/operators/kernel/central-arm-func/softmax_arm_func.h
+1
-0
src/operators/op_param.h
src/operators/op_param.h
+4
-4
test/net/test_eng.cpp
test/net/test_eng.cpp
+3
-3
未找到文件。
src/operators/kernel/central-arm-func/fusion_fc_arm_func.h
浏览文件 @
95e0497f
...
...
@@ -29,10 +29,9 @@ void FusionFcCompute(const FusionFcParam<CPU> ¶m) {
auto
*
input_z_data
=
input_z
->
data
<
float
>
();
int
axis
=
param
.
Axis
();
Tensor
*
out
=
param
.
Out
();
auto
*
out_data
=
out
->
mutable_data
<
float
>
();
// int m = out->dims()[0];
// int n = out->dims()[1];
auto
*
out_data
=
out
->
mutable_data
<
float
>
();
const
Tensor
x_matrix
=
input_x
->
dims
().
size
()
>
2
?
framework
::
ReshapeToMatrix
(
*
input_x
,
param
.
XNumColDims
())
...
...
src/operators/kernel/central-arm-func/pool_arm_func.h
浏览文件 @
95e0497f
...
...
@@ -83,6 +83,7 @@ void PoolCompute(const PoolParam<CPU> ¶m) {
#if __aarch64__
PoolBasic
(
pooling_type
,
ksize
,
strides
,
paddings
,
in_x
,
out
);
#else
/// todo: fix bug in Pool2x2
if
(
pooling_type
==
"max"
)
{
math
::
Pool2x2Maxs2p0
(
strides
,
paddings
,
in_x
,
out
);
}
else
if
(
pooling_type
==
"avg"
)
{
...
...
src/operators/kernel/central-arm-func/softmax_arm_func.h
浏览文件 @
95e0497f
...
...
@@ -24,6 +24,7 @@ void SoftmaxCompute(const SoftmaxParam<CPU> ¶m) {
Tensor
*
out
=
param
.
Out
();
auto
x_dims
=
in_x
->
dims
();
out
->
Resize
(
x_dims
);
out
->
mutable_data
<
float
>
();
math
::
SoftmaxFuntor
<
CPU
,
float
>
()(
in_x
,
out
);
}
}
// namespace operators
...
...
src/operators/op_param.h
浏览文件 @
95e0497f
...
...
@@ -2147,9 +2147,9 @@ class Im2SequenceParam : public OpParam {
paddings_
=
GetAttr
<
vector
<
int
>>
(
"paddings"
,
attrs
);
}
const
R
Type
*
Input
()
const
{
return
input_x_
;
}
const
G
Type
*
Input
()
const
{
return
input_x_
;
}
R
Type
*
Output
()
const
{
return
out_
;
}
G
Type
*
Output
()
const
{
return
out_
;
}
const
vector
<
int
>
&
Kernels
()
const
{
return
kernels_
;
}
...
...
@@ -2158,8 +2158,8 @@ class Im2SequenceParam : public OpParam {
const
vector
<
int
>
&
Paddings
()
const
{
return
paddings_
;
}
private:
R
Type
*
input_x_
;
R
Type
*
out_
;
G
Type
*
input_x_
;
G
Type
*
out_
;
vector
<
int
>
kernels_
;
vector
<
int
>
strides_
;
vector
<
int
>
paddings_
;
...
...
test/net/test_eng.cpp
浏览文件 @
95e0497f
...
...
@@ -23,13 +23,13 @@ int main() {
// paddle_mobile.SetThreadNum(4);
auto
time1
=
time
();
if
(
paddle_mobile
.
Load
(
std
::
string
(
g_eng
)
+
"/model"
,
std
::
string
(
g_eng
)
+
"/params"
,
fals
e
,
false
,
1
,
std
::
string
(
g_eng
)
+
"/params"
,
tru
e
,
false
,
1
,
true
))
{
auto
time2
=
time
();
std
::
cout
<<
"load cost :"
<<
time_diff
(
time1
,
time1
)
<<
"ms"
<<
std
::
endl
;
std
::
vector
<
int64_t
>
dims
{
1
,
1
,
48
,
512
};
std
::
vector
<
int64_t
>
dims
{
1
,
1
,
48
,
400
};
LoDTensor
input_tensor
;
SetupTensor
<
float
>
(
&
input_tensor
,
{
1
,
1
,
48
,
512
},
static_cast
<
float
>
(
0
),
SetupTensor
<
float
>
(
&
input_tensor
,
{
1
,
1
,
48
,
400
},
static_cast
<
float
>
(
0
),
static_cast
<
float
>
(
1
));
std
::
vector
<
float
>
input
(
input_tensor
.
data
<
float
>
(),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录