Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
b1a7eddf
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看板
提交
b1a7eddf
编写于
5月 28, 2018
作者:
E
eclipsycn
提交者:
GitHub
5月 28, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #304 from Eclipsess/develop
fix
#303
add fushion fc
上级
a24a7b35
c255a92a
变更
12
显示空白变更内容
内联
并排
Showing
12 changed file
with
375 addition
and
10 deletion
+375
-10
src/io.cpp
src/io.cpp
+1
-1
src/operators/fusion_conv_add_relu_op.h
src/operators/fusion_conv_add_relu_op.h
+2
-2
src/operators/fusion_fc_op.cpp
src/operators/fusion_fc_op.cpp
+42
-1
src/operators/fusion_fc_op.h
src/operators/fusion_fc_op.h
+21
-2
src/operators/kernel/arm/elementwise_add_kernel.cpp
src/operators/kernel/arm/elementwise_add_kernel.cpp
+1
-1
src/operators/kernel/arm/fushion_fc_kernel.cpp
src/operators/kernel/arm/fushion_fc_kernel.cpp
+67
-0
src/operators/kernel/fushion_fc_kernel.h
src/operators/kernel/fushion_fc_kernel.h
+31
-0
src/operators/math/math_function.cpp
src/operators/math/math_function.cpp
+2
-2
src/operators/op_param.h
src/operators/op_param.h
+42
-0
test/CMakeLists.txt
test/CMakeLists.txt
+5
-0
test/framework/test_optimize.cpp
test/framework/test_optimize.cpp
+1
-1
test/operators/test_fushion_fc_op.cpp
test/operators/test_fushion_fc_op.cpp
+160
-0
未找到文件。
src/io.cpp
浏览文件 @
b1a7eddf
...
@@ -218,7 +218,7 @@ const framework::Program<Dtype, P> Loader<Dtype, P>::Load(
...
@@ -218,7 +218,7 @@ const framework::Program<Dtype, P> Loader<Dtype, P>::Load(
}
}
}
}
originProgramDesc
->
Description
(
"program: "
);
//
originProgramDesc->Description("program: ");
paddle_mobile__framework__proto__program_desc__free_unpacked
(
c_program
,
NULL
);
paddle_mobile__framework__proto__program_desc__free_unpacked
(
c_program
,
NULL
);
return
program
;
return
program
;
...
...
src/operators/fusion_conv_add_relu_op.h
浏览文件 @
b1a7eddf
...
@@ -42,8 +42,8 @@ class FusionFcOp {
...
@@ -42,8 +42,8 @@ class FusionFcOp {
private:
private:
};
};
static
framework
::
FusionOpRegistrar
fc_registrar
(
//
static framework::FusionOpRegistrar fc_registrar(
new
FushionConvAddReluOpMatcher
());
//
new FushionConvAddReluOpMatcher());
}
// namespace operators
}
// namespace operators
}
// namespace paddle_mobile
}
// namespace paddle_mobile
src/operators/fusion_fc_op.cpp
浏览文件 @
b1a7eddf
...
@@ -12,4 +12,45 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
...
@@ -12,4 +12,45 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
See the License for the specific language governing permissions and
limitations under the License. */
limitations under the License. */
#include "fusion_fc_op.h"
#include "operators/fusion_fc_op.h"
namespace
paddle_mobile
{
namespace
operators
{
template
<
typename
Dtype
,
typename
T
>
void
FushionFcOp
<
Dtype
,
T
>::
InferShape
()
const
{
auto
x_dims
=
param_
.
InputX
()
->
dims
();
auto
y_dims
=
param_
.
InputY
()
->
dims
();
int
x_num_col_dims
=
param_
.
XNumColDims
();
int
y_num_col_dims
=
param_
.
YNumColDims
();
assert
(
x_dims
.
size
()
>
x_num_col_dims
);
assert
(
y_dims
.
size
()
>
y_num_col_dims
);
/// (1,2,3,4) , x_num_col_dims = 2 -> (2,12)
auto
x_mat_dims
=
framework
::
flatten_to_2d
(
x_dims
,
x_num_col_dims
);
auto
y_mat_dims
=
framework
::
flatten_to_2d
(
y_dims
,
y_num_col_dims
);
assert
(
x_mat_dims
[
1
]
==
y_mat_dims
[
0
]);
std
::
vector
<
int64_t
>
output_dims
;
output_dims
.
reserve
(
static_cast
<
size_t
>
(
x_num_col_dims
+
y_dims
.
size
()
-
y_num_col_dims
));
for
(
int
i
=
0
;
i
<
x_num_col_dims
;
++
i
)
{
output_dims
.
push_back
(
x_dims
[
i
]);
}
for
(
int
i
=
y_num_col_dims
;
i
<
y_dims
.
size
();
++
i
)
{
output_dims
.
push_back
(
y_dims
[
i
]);
}
framework
::
DDim
ddim
=
framework
::
make_ddim
(
output_dims
);
param_
.
Out
()
->
Resize
(
ddim
);
}
template
class
FushionFcOp
<
CPU
,
float
>;
}
// namespace operators
}
// namespace paddle_mobile
namespace
ops
=
paddle_mobile
::
operators
;
USE_OP
(
fc
);
REGISTER_OPERATOR
(
fc
,
ops
::
FushionFcOp
);
src/operators/fusion_fc_op.h
浏览文件 @
b1a7eddf
...
@@ -18,6 +18,7 @@ limitations under the License. */
...
@@ -18,6 +18,7 @@ limitations under the License. */
#include "framework/operator.h"
#include "framework/operator.h"
#include "framework/program/program-optimize/fusion_op_register.h"
#include "framework/program/program-optimize/fusion_op_register.h"
#include "operators/kernel/fushion_fc_kernel.h"
namespace
paddle_mobile
{
namespace
paddle_mobile
{
namespace
operators
{
namespace
operators
{
...
@@ -38,9 +39,27 @@ class FusionFcMatcher : public framework::FusionOpMatcher {
...
@@ -38,9 +39,27 @@ class FusionFcMatcher : public framework::FusionOpMatcher {
std
::
string
Type
()
{
return
"fc"
;
}
std
::
string
Type
()
{
return
"fc"
;
}
};
};
class
FusionFcOp
{
template
<
typename
DeviceType
,
typename
T
>
class
FushionFcOp
:
public
framework
::
OperatorWithKernel
<
DeviceType
>
{
public:
public:
private:
FushionFcOp
(
const
std
::
string
&
type
,
const
VariableNameMap
&
inputs
,
const
VariableNameMap
&
outputs
,
const
framework
::
AttributeMap
attrs
,
std
::
shared_ptr
<
framework
::
Scope
>
scope
)
:
framework
::
OperatorWithKernel
<
DeviceType
>
(
type
,
inputs
,
outputs
,
attrs
,
scope
),
param_
(
inputs
,
outputs
,
attrs
,
*
scope
)
{}
void
Run
()
const
{
operators
::
FushionFcKernel
<
DeviceType
,
T
>
kernel
;
kernel
.
Compute
(
param_
);
}
using
framework
::
OperatorWithKernel
<
DeviceType
>::
OperatorWithKernel
;
void
InferShape
()
const
override
;
protected:
FushionFcParam
param_
;
};
};
static
framework
::
FusionOpRegistrar
fc_registrar
(
new
FusionFcMatcher
());
static
framework
::
FusionOpRegistrar
fc_registrar
(
new
FusionFcMatcher
());
...
...
src/operators/kernel/arm/elementwise_add_kernel.cpp
浏览文件 @
b1a7eddf
...
@@ -31,7 +31,7 @@ void ElementwiseAddKernel<CPU, float>::Compute(
...
@@ -31,7 +31,7 @@ void ElementwiseAddKernel<CPU, float>::Compute(
const
Tensor
*
input_y
=
param
.
InputY
();
const
Tensor
*
input_y
=
param
.
InputY
();
Tensor
*
Out
=
param
.
Out
();
Tensor
*
Out
=
param
.
Out
();
Out
->
mutable_data
<
float
>
();
Out
->
mutable_data
<
float
>
();
const
int
axis
=
param
.
Axis
();
int
axis
=
param
.
Axis
();
ElementwiseComputeEx
<
AddFunctor
<
float
>
,
float
>
(
input_x
,
input_y
,
axis
,
ElementwiseComputeEx
<
AddFunctor
<
float
>
,
float
>
(
input_x
,
input_y
,
axis
,
AddFunctor
<
float
>
(),
Out
);
AddFunctor
<
float
>
(),
Out
);
}
}
...
...
src/operators/kernel/arm/fushion_fc_kernel.cpp
0 → 100644
浏览文件 @
b1a7eddf
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#pragma once
#include "operators/kernel/fushion_fc_kernel.h"
namespace
paddle_mobile
{
namespace
operators
{
template
<
>
void
FushionFcKernel
<
CPU
,
float
>::
Compute
(
const
FushionFcParam
&
param
)
const
{
const
Tensor
*
input_x
=
param
.
InputX
();
const
Tensor
*
input_y
=
param
.
InputY
();
const
Tensor
*
input_z
=
param
.
InputZ
();
auto
*
input_z_data
=
input_z
->
data
<
float
>
();
int
axis
=
param
.
Axis
();
Tensor
*
out
=
param
.
Out
();
auto
*
out_data
=
out
->
mutable_data
<
float
>
();
const
Tensor
x_matrix
=
input_x
->
dims
().
size
()
>
2
?
framework
::
ReshapeToMatrix
(
*
input_x
,
param
.
XNumColDims
())
:
*
input_x
;
const
Tensor
y_matrix
=
input_y
->
dims
().
size
()
>
2
?
framework
::
ReshapeToMatrix
(
*
input_y
,
param
.
YNumColDims
())
:
*
input_y
;
auto
out_dim
=
out
->
dims
();
if
(
out_dim
.
size
()
!=
2
)
{
out
->
Resize
({
x_matrix
.
dims
()[
0
],
y_matrix
.
dims
()[
1
]});
}
PADDLE_MOBILE_ENFORCE
(
out_dim
.
size
()
==
2
,
" out_dim.size must be 2."
);
PADDLE_MOBILE_ENFORCE
(
input_z
->
dims
().
size
()
==
1
,
"inpu_z size must be 1"
);
PADDLE_MOBILE_ENFORCE
(
out_dim
[
1
]
==
input_z
->
dims
()[
0
],
" out_dim.size must be 2."
);
axis
=
(
axis
==
-
1
?
out_dim
.
size
()
-
input_z
->
dims
().
size
()
:
axis
);
PADDLE_MOBILE_ENFORCE
(
axis
==
1
,
" to fit broadcast, axis = 1. "
)
int64_t
classes
=
input_z
->
numel
();
for
(
int
i
=
0
;
i
<
out_dim
[
0
];
i
++
)
{
memory
::
Copy
(
out_data
+
i
*
classes
,
input_z_data
,
sizeof
(
float
)
*
classes
);
}
for
(
int
i
=
0
;
i
<
out
->
numel
();
i
++
)
{
DLOG
<<
out_data
[
i
];
}
math
::
matmul
<
float
>
(
x_matrix
,
false
,
y_matrix
,
false
,
static_cast
<
float
>
(
1
),
out
,
static_cast
<
float
>
(
1
));
PADDLE_MOBILE_ENFORCE
(
out_dim
.
size
()
==
2
,
" out_dim.size must be 2."
);
// if (out_dim.size() != 2) {
// out->Resize(out_dim);
// }
}
}
// namespace operators
}
// namespace paddle_mobile
src/operators/kernel/fushion_fc_kernel.h
0 → 100644
浏览文件 @
b1a7eddf
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#include "framework/operator.h"
#include "operators/math/math_function.h"
#include "operators/op_param.h"
#pragma once;
namespace
paddle_mobile
{
namespace
operators
{
template
<
typename
DeviceType
,
typename
T
>
class
FushionFcKernel
:
public
framework
::
OpKernelBase
<
DeviceType
,
FushionFcParam
>
{
public:
void
Compute
(
const
FushionFcParam
&
param
)
const
;
};
}
// namespace operators
}
// namespace paddle_mobile
src/operators/math/math_function.cpp
浏览文件 @
b1a7eddf
...
@@ -41,8 +41,8 @@ void matmul<float>(const framework::Tensor &matrix_a, bool trans_a,
...
@@ -41,8 +41,8 @@ void matmul<float>(const framework::Tensor &matrix_a, bool trans_a,
int
N
=
dim_out
[
1
];
int
N
=
dim_out
[
1
];
int
K
=
(
trans_a
==
false
)
?
dim_a
[
1
]
:
dim_a
[
0
];
int
K
=
(
trans_a
==
false
)
?
dim_a
[
1
]
:
dim_a
[
0
];
sgemm
(
M
,
N
,
K
,
1
,
matrix_a
.
data
<
float
>
(),
K
,
matrix_b
.
data
<
float
>
(),
N
,
0
,
sgemm
(
M
,
N
,
K
,
alpha
,
matrix_a
.
data
<
float
>
(),
K
,
matrix_b
.
data
<
float
>
(),
N
,
matrix_out
->
data
<
float
>
(),
N
);
beta
,
matrix_out
->
data
<
float
>
(),
N
);
}
}
template
<
>
template
<
>
...
...
src/operators/op_param.h
浏览文件 @
b1a7eddf
...
@@ -51,6 +51,11 @@ class OpParam : PaddleMobileObject {
...
@@ -51,6 +51,11 @@ class OpParam : PaddleMobileObject {
return
GetVarValue
<
T
>
(
"Y"
,
inputs
,
scope
);
return
GetVarValue
<
T
>
(
"Y"
,
inputs
,
scope
);
}
}
template
<
typename
T
>
static
T
*
InputZFrom
(
const
VariableNameMap
&
inputs
,
const
Scope
&
scope
)
{
return
GetVarValue
<
T
>
(
"Z"
,
inputs
,
scope
);
}
template
<
typename
T
>
template
<
typename
T
>
static
T
*
InputBiasFrom
(
const
VariableNameMap
&
inputs
,
const
Scope
&
scope
)
{
static
T
*
InputBiasFrom
(
const
VariableNameMap
&
inputs
,
const
Scope
&
scope
)
{
return
GetVarValue
<
T
>
(
"Bias"
,
inputs
,
scope
);
return
GetVarValue
<
T
>
(
"Bias"
,
inputs
,
scope
);
...
@@ -703,5 +708,42 @@ class ReluParam : public OpParam {
...
@@ -703,5 +708,42 @@ class ReluParam : public OpParam {
Tensor
*
out_
;
Tensor
*
out_
;
};
};
class
FushionFcParam
:
public
OpParam
{
public:
FushionFcParam
(
const
VariableNameMap
&
inputs
,
const
VariableNameMap
&
outputs
,
const
AttributeMap
&
attrs
,
const
Scope
&
scope
)
{
input_x_
=
InputXFrom
<
Tensor
>
(
inputs
,
scope
);
input_y_
=
InputYFrom
<
Tensor
>
(
inputs
,
scope
);
input_z_
=
InputZFrom
<
Tensor
>
(
inputs
,
scope
);
out_
=
OutFrom
<
Tensor
>
(
outputs
,
scope
);
x_num_col_dims_
=
GetAttr
<
int
>
(
"x_num_col_dims"
,
attrs
);
y_num_col_dims_
=
GetAttr
<
int
>
(
"y_num_col_dims"
,
attrs
);
axis_
=
GetAttr
<
int
>
(
"axis"
,
attrs
);
}
const
Tensor
*
InputX
()
const
{
return
input_x_
;
}
const
Tensor
*
InputY
()
const
{
return
input_y_
;
}
const
Tensor
*
InputZ
()
const
{
return
input_z_
;
}
Tensor
*
Out
()
const
{
return
out_
;
}
const
int
&
XNumColDims
()
const
{
return
x_num_col_dims_
;
}
const
int
&
YNumColDims
()
const
{
return
y_num_col_dims_
;
}
const
int
&
Axis
()
const
{
return
axis_
;
}
private:
Tensor
*
input_x_
;
Tensor
*
input_y_
;
Tensor
*
input_z_
;
Tensor
*
out_
;
int
x_num_col_dims_
;
int
y_num_col_dims_
;
int
axis_
;
};
}
// namespace operators
}
// namespace operators
}
// namespace paddle_mobile
}
// namespace paddle_mobile
test/CMakeLists.txt
浏览文件 @
b1a7eddf
...
@@ -45,10 +45,15 @@ target_link_libraries(test-multiclassnms-op paddle-mobile)
...
@@ -45,10 +45,15 @@ target_link_libraries(test-multiclassnms-op paddle-mobile)
# gen test
# gen test
ADD_EXECUTABLE
(
test-reshape-op operators/test_reshape_op.cpp test_helper.h test_include.h
)
ADD_EXECUTABLE
(
test-reshape-op operators/test_reshape_op.cpp test_helper.h test_include.h
)
target_link_libraries
(
test-reshape-op paddle-mobile
)
target_link_libraries
(
test-reshape-op paddle-mobile
)
# gen test
# gen test
ADD_EXECUTABLE
(
test-relu-op operators/test_relu_op.cpp test_helper.h test_include.h
)
ADD_EXECUTABLE
(
test-relu-op operators/test_relu_op.cpp test_helper.h test_include.h
)
target_link_libraries
(
test-relu-op paddle-mobile
)
target_link_libraries
(
test-relu-op paddle-mobile
)
# gen test
ADD_EXECUTABLE
(
test-fc-op operators/test_fushion_fc_op.cpp test_helper.h test_include.h
)
target_link_libraries
(
test-fc-op paddle-mobile
)
# gen test log
# gen test log
ADD_EXECUTABLE
(
test-log common/test_log.cpp
)
ADD_EXECUTABLE
(
test-log common/test_log.cpp
)
target_link_libraries
(
test-log paddle-mobile
)
target_link_libraries
(
test-log paddle-mobile
)
...
...
test/framework/test_optimize.cpp
浏览文件 @
b1a7eddf
...
@@ -24,7 +24,7 @@ int main() {
...
@@ -24,7 +24,7 @@ int main() {
// program.originProgram->Description("origin");
// program.originProgram->Description("origin");
auto
optimize_program
=
optimize
.
FushionOptimize
(
program
.
originProgram
);
auto
optimize_program
=
optimize
.
FushionOptimize
(
program
.
originProgram
);
if
(
optimize_program
!=
nullptr
)
{
if
(
optimize_program
!=
nullptr
)
{
//
optimize_program->Description("optimize");
optimize_program
->
Description
(
"optimize"
);
}
else
{
}
else
{
LOG
(
paddle_mobile
::
kLOG_ERROR
)
<<
"optimize_program is null"
;
LOG
(
paddle_mobile
::
kLOG_ERROR
)
<<
"optimize_program is null"
;
}
}
...
...
test/operators/test_fushion_fc_op.cpp
0 → 100644
浏览文件 @
b1a7eddf
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#pragma once
#include <framework/program/program-optimize/program_optimize.h>
#include "../test_include.h"
#include "operators/fusion_fc_op.h"
namespace
paddle_mobile
{
namespace
framework
{
template
<
typename
Dtype
>
class
TestFcOp
{
public:
explicit
TestFcOp
(
const
Program
<
Dtype
>
p
)
:
program_
(
p
)
{
use_optimize_
=
true
;
if
(
use_optimize_
)
{
to_predict_program_
=
program_
.
optimizeProgram
;
}
else
{
to_predict_program_
=
program_
.
originProgram
;
}
const
std
::
vector
<
std
::
shared_ptr
<
BlockDesc
>>
blocks
=
to_predict_program_
->
Blocks
();
// DLOG << " **block size " << blocks.size();
for
(
int
i
=
0
;
i
<
blocks
.
size
();
++
i
)
{
std
::
shared_ptr
<
BlockDesc
>
block_desc
=
blocks
[
i
];
std
::
vector
<
std
::
shared_ptr
<
OpDesc
>>
ops
=
block_desc
->
Ops
();
// DLOG << " ops " << ops.size();
for
(
int
j
=
0
;
j
<
ops
.
size
();
++
j
)
{
std
::
shared_ptr
<
OpDesc
>
op
=
ops
[
j
];
if
(
op
->
Type
()
==
"fc"
&&
op
->
Input
(
"X"
)[
0
]
==
"pool2d_13.tmp_0"
)
{
DLOG
<<
" fc attr size: "
<<
op
->
GetAttrMap
().
size
();
DLOG
<<
" inputs size: "
<<
op
->
GetInputs
().
size
();
DLOG
<<
" outputs size: "
<<
op
->
GetOutputs
().
size
();
DLOG
<<
" Input X is : "
<<
op
->
Input
(
"X"
)[
0
];
DLOG
<<
" Input Y is : "
<<
op
->
Input
(
"Y"
)[
0
];
DLOG
<<
" Input Y is : "
<<
op
->
Input
(
"Z"
)[
0
];
DLOG
<<
" Output Out is : "
<<
op
->
Output
(
"Out"
)[
0
];
std
::
shared_ptr
<
operators
::
FushionFcOp
<
Dtype
,
float
>>
testOp
=
std
::
make_shared
<
operators
::
FushionFcOp
<
Dtype
,
float
>>
(
op
->
Type
(),
op
->
GetInputs
(),
op
->
GetOutputs
(),
op
->
GetAttrMap
(),
program_
.
scope
);
ops_of_block_
[
*
block_desc
.
get
()].
push_back
(
testOp
);
}
}
}
}
std
::
shared_ptr
<
Tensor
>
predict
(
const
Tensor
&
t1
,
const
Tensor
&
t2
,
const
Tensor
&
t3
)
{
// feed
auto
scope
=
program_
.
scope
;
Variable
*
x_feed_value
=
scope
->
Var
(
"pool2d_13.tmp_0"
);
auto
tensor_x
=
x_feed_value
->
GetMutable
<
Tensor
>
();
tensor_x
->
ShareDataWith
(
t1
);
Variable
*
y_feed_value
=
scope
->
Var
(
"loss3_classifier-loc_weights"
);
auto
tensor_y
=
y_feed_value
->
GetMutable
<
Tensor
>
();
tensor_y
->
ShareDataWith
(
t2
);
Variable
*
z_feed_value
=
scope
->
Var
(
"loss3_classifier-loc_biases"
);
auto
tensor_z
=
z_feed_value
->
GetMutable
<
Tensor
>
();
tensor_z
->
ShareDataWith
(
t3
);
Variable
*
con_output
=
scope
->
Var
(
"loss3_classifier-loc.tmp_1"
);
auto
*
output_tensor
=
con_output
->
GetMutable
<
Tensor
>
();
output_tensor
->
mutable_data
<
float
>
({
3
,
10
});
// DLOG << typeid(output_tensor).name();
// DLOG << "output_tensor dims: " << output_tensor->dims();
std
::
shared_ptr
<
Tensor
>
out_tensor
=
std
::
make_shared
<
LoDTensor
>
();
out_tensor
.
reset
(
output_tensor
);
predict
(
t1
,
t2
,
t3
,
0
);
return
out_tensor
;
}
private:
const
framework
::
Program
<
Dtype
>
program_
;
std
::
shared_ptr
<
ProgramDesc
>
to_predict_program_
;
std
::
map
<
framework
::
BlockDesc
,
std
::
vector
<
std
::
shared_ptr
<
OperatorBase
<
Dtype
>>>>
ops_of_block_
;
bool
use_optimize_
=
false
;
void
predict
(
const
Tensor
&
t1
,
const
Tensor
&
t2
,
const
Tensor
&
t3
,
int
block_id
)
{
std
::
shared_ptr
<
BlockDesc
>
to_predict_block
=
to_predict_program_
->
Block
(
block_id
);
for
(
int
j
=
0
;
j
<
ops_of_block_
[
*
to_predict_block
.
get
()].
size
();
++
j
)
{
auto
op
=
ops_of_block_
[
*
to_predict_block
.
get
()][
j
];
DLOG
<<
"op -> run()"
;
op
->
Run
();
}
}
};
template
class
TestFcOp
<
CPU
>;
}
// namespace framework
}
// namespace paddle_mobile
int
main
()
{
DLOG
<<
"----------**********----------"
;
DLOG
<<
"begin to run Fc Test"
;
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
// "../../../test/models/googlenet"
auto
program
=
loader
.
Load
(
"../models/googlenet"
);
paddle_mobile
::
framework
::
ProgramOptimize
optimize
;
// program.originProgram->Description("origin");
auto
optimize_program
=
optimize
.
FushionOptimize
(
program
.
originProgram
);
program
.
optimizeProgram
=
optimize_program
;
if
(
optimize_program
!=
nullptr
)
{
optimize_program
->
Description
(
"optimize"
);
}
else
{
LOG
(
paddle_mobile
::
kLOG_ERROR
)
<<
"optimize_program is null"
;
}
/// input x (1,3,224,224)
paddle_mobile
::
framework
::
Tensor
inputx
;
SetupTensor
<
float
>
(
&
inputx
,
{
3
,
64
,
1
,
1
},
static_cast
<
float
>
(
1
),
static_cast
<
float
>
(
1
));
auto
*
inputx_ptr
=
inputx
.
data
<
float
>
();
/// input y (224,)
paddle_mobile
::
framework
::
Tensor
inputy
;
SetupTensor
<
float
>
(
&
inputy
,
{
64
,
10
},
static_cast
<
float
>
(
1.5
),
static_cast
<
float
>
(
1.5
));
auto
*
inputy_ptr
=
inputy
.
data
<
float
>
();
paddle_mobile
::
framework
::
Tensor
inputz
;
SetupTensor
<
float
>
(
&
inputz
,
{
10
},
static_cast
<
float
>
(
0
),
static_cast
<
float
>
(
1
));
auto
*
inputz_ptr
=
inputz
.
data
<
float
>
();
paddle_mobile
::
framework
::
TestFcOp
<
paddle_mobile
::
CPU
>
testFcOp
(
program
);
auto
output
=
testFcOp
.
predict
(
inputx
,
inputy
,
inputz
);
auto
*
output_ptr
=
output
->
data
<
float
>
();
for
(
int
j
=
0
;
j
<
output
->
numel
();
++
j
)
{
DLOG
<<
"value of output: "
<<
output_ptr
[
j
];
}
DLOG
<<
"1 (3,64) * 2 (64,10) = 96(3,10)"
;
DLOG
<<
"output : 96(3,10) + bias(10)"
;
return
0
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录