Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
792d898a
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看板
未验证
提交
792d898a
编写于
10月 14, 2019
作者:
L
lijianshe02
提交者:
GitHub
10月 14, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix asr modle related kernel bugs test=develop (#2179)
* fix asr modle related kernel bugs test=develop
上级
253acb80
变更
12
显示空白变更内容
内联
并排
Showing
12 changed file
with
25 addition
and
21 deletion
+25
-21
cmake/lite.cmake
cmake/lite.cmake
+2
-0
lite/backends/x86/math/blas_impl.h
lite/backends/x86/math/blas_impl.h
+3
-3
lite/kernels/x86/CMakeLists.txt
lite/kernels/x86/CMakeLists.txt
+0
-6
lite/kernels/x86/fill_constant_batch_size_like_compute.cc
lite/kernels/x86/fill_constant_batch_size_like_compute.cc
+1
-1
lite/kernels/x86/fill_constant_batch_size_like_compute.h
lite/kernels/x86/fill_constant_batch_size_like_compute.h
+5
-2
lite/kernels/x86/fill_constant_batch_size_like_compute_test.cc
...kernels/x86/fill_constant_batch_size_like_compute_test.cc
+6
-2
lite/kernels/x86/gru_compute.cc
lite/kernels/x86/gru_compute.cc
+3
-4
lite/kernels/x86/sequence_pool_compute.cc
lite/kernels/x86/sequence_pool_compute.cc
+1
-0
lite/kernels/x86/shape_compute.cc
lite/kernels/x86/shape_compute.cc
+1
-1
lite/operators/fill_constant_batch_size_like_op.cc
lite/operators/fill_constant_batch_size_like_op.cc
+1
-1
lite/operators/op_params.h
lite/operators/op_params.h
+1
-0
lite/utils/any.h
lite/utils/any.h
+1
-1
未找到文件。
cmake/lite.cmake
浏览文件 @
792d898a
...
...
@@ -375,6 +375,8 @@ endfunction()
# Bundle several static libraries into one.
function
(
bundle_static_library tgt_name bundled_tgt_name fake_target
)
list
(
APPEND static_libs
${
tgt_name
}
)
# for x86
add_dependencies
(
lite_compile_deps
${
fake_target
}
)
function
(
_recursively_collect_dependencies input_target
)
set
(
_input_link_libraries LINK_LIBRARIES
)
...
...
lite/backends/x86/math/blas_impl.h
浏览文件 @
792d898a
...
...
@@ -463,9 +463,9 @@ void Blas<Target>::MatMul(const lite::Tensor &mat_a,
auto
dim_out
=
mat_out
->
dims
();
PADDLE_ENFORCE
(
dim_a
.
size
()
==
2
&&
dim_b
.
size
()
==
2
&&
dim_out
.
size
()
==
2
,
"The input and output of matmul be matrix"
);
PADDLE_ENFORCE
(
mat_a
.
target
()
==
mat_b
.
target
()
&&
mat_a
.
target
()
==
mat_out
->
target
(),
"The targets of matrices must be same"
);
//
PADDLE_ENFORCE(
//
mat_a.target() == mat_b.target() && mat_a.target() == mat_out->target(),
//
"The targets of matrices must be same");
int
M
=
dim_out
[
0
];
int
N
=
dim_out
[
1
];
...
...
lite/kernels/x86/CMakeLists.txt
浏览文件 @
792d898a
...
...
@@ -4,17 +4,13 @@ add_kernel(activation_compute_x86 X86 basic SRCS activation_compute.cc DEPS ${li
# lite_cc_library(sgd_compute_x86 SRCS sgd_compute.cc DEPS ${lite_kernel_deps})
# lite_cc_library(fc_compute_x86 SRCS fc_compute.cc DEPS ${lite_kernel_deps})
# lite_cc_library(mul_compute_x86 SRCS mul_compute.cc DEPS ${lite_kernel_deps})
# lite_cc_library(relu_compute_x86 SRCS relu_compute.cc DEPS ${lite_kernel_deps})
add_kernel
(
scale_compute_x86 X86 basic SRCS scale_compute.cc DEPS
${
lite_kernel_deps
}
)
add_kernel
(
slice_compute_x86 X86 basic SRCS slice_compute.cc DEPS
${
lite_kernel_deps
}
)
add_kernel
(
squeeze_compute_x86 X86 basic SRCS squeeze_compute.cc DEPS
${
lite_kernel_deps
}
)
add_kernel
(
fill_constant_batch_size_like_compute_x86 X86 basic SRCS fill_constant_batch_size_like_compute.cc DEPS
${
lite_kernel_deps
}
math_function
)
add_kernel
(
reshape_compute_x86 X86 basic SRCS reshape_compute.cc DEPS
${
lite_kernel_deps
}
reshape_op
)
# lite_cc_library(elementwise_compute_x86 SRCS elementwise_compute.cc DEPS ${lite_kernel_deps} elementwise_sub_op elementwise_add_op)
# lite_cc_library(softmax_compute_x86 SRCS softmax_compute.cc DEPS ${lite_kernel_deps} softmax)
# lite_cc_library(dropout_compute_x86 SRCS dropout_compute.cc DEPS ${lite_kernel_deps} )
# lite_cc_library(concat_compute_x86 SRCS concat_compute.cc DEPS ${lite_kernel_deps} )
# lite_cc_library(conv_compute_x86 SRCS conv_compute.cc DEPS ${lite_kernel_deps} blas im2col vol2col)
# lite_cc_library(pool_compute_x86 SRCS pool_compute.cc DEPS ${lite_kernel_deps} pooling)
# lite_cc_library(batch_norm_compute_x86 SRCS batch_norm_compute.cc DEPS ${lite_kernel_deps})
...
...
@@ -26,8 +22,6 @@ add_kernel(sequence_expand_as_compute_x86 X86 basic SRCS sequence_expand_as_comp
# lite_cc_test(test_fc_compute_x86 SRCS fc_compute_test.cc DEPS fc_compute_x86)
# lite_cc_test(test_conv2d_compute_x86 SRCS conv_compute_test.cc DEPS conv_compute_x86)
# lite_cc_test(test_pool2d_compute_x86 SRCS pool_compute_test.cc DEPS pool_compute_x86)
# lite_cc_test(test_softmax_compute_x86 SRCS softmax_compute_test.cc DEPS softmax_compute_x86)
# lite_cc_test(test_elementwise_compute_x86 SRCS elementwise_compute_test.cc DEPS elementwise_compute_x86)
# lite_cc_test(test_scale_compute_x86 SRCS scale_compute_test.cc DEPS scale_compute_x86)
# lite_cc_test(test_dropout_compute_x86 SRCS dropout_compute_test.cc DEPS dropout_compute_x86)
# lite_cc_test(test_batch_norm_compute_x86 SRCS batch_norm_compute_test.cc DEPS batch_norm_compute_x86)
...
...
lite/kernels/x86/fill_constant_batch_size_like_compute.cc
浏览文件 @
792d898a
...
...
@@ -21,6 +21,6 @@ REGISTER_LITE_KERNEL(
kNCHW
,
paddle
::
lite
::
kernels
::
x86
::
FillConstantBatchSizeLikeCompute
<
float
>
,
def
)
.
BindInput
(
"
X
"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindInput
(
"
Input
"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"Out"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
Finalize
();
lite/kernels/x86/fill_constant_batch_size_like_compute.h
浏览文件 @
792d898a
...
...
@@ -33,6 +33,7 @@ class FillConstantBatchSizeLikeCompute
void
Run
()
override
{
auto
&
param
=
*
param_
.
get_mutable
<
param_t
>
();
auto
&
ctx
=
ctx_
->
As
<
X86Context
>
();
auto
*
out
=
param
.
Out
;
auto
*
in
=
param
.
Input
;
if
(
in
->
lod
().
size
()
&&
param
.
input_dim_idx
==
0
)
{
...
...
@@ -40,11 +41,13 @@ class FillConstantBatchSizeLikeCompute
auto
odims
=
out
->
dims
();
int
output_dim_idx
=
param
.
output_dim_idx
;
odims
[
output_dim_idx
]
=
static_cast
<
int
>
(
in
->
lod
().
back
().
size
())
-
1
;
out
->
Resize
(
odims
);
// out->mutable_data<T>();
}
out
->
mutable_data
<
T
>
();
auto
value
=
param
.
value
;
paddle
::
lite
::
x86
::
math
::
SetConstant
<
TargetType
::
kX86
,
T
>
setter
;
Context
<
TargetType
::
kX86
>
ctx
;
paddle
::
lite
::
x86
::
math
::
SetConstant
<
lite
::
TargetType
::
kX86
,
T
>
setter
;
setter
(
ctx
,
out
,
static_cast
<
T
>
(
value
));
}
...
...
lite/kernels/x86/fill_constant_batch_size_like_compute_test.cc
浏览文件 @
792d898a
...
...
@@ -45,6 +45,7 @@ TEST(fill_constant_batch_size_like_x86, run_test) {
std
::
vector
<
int64_t
>
input_shape
{
219
,
232
};
input
.
Resize
(
input_shape
);
std
::
vector
<
int64_t
>
out_shape
{
219
,
132
,
7
};
out
.
Resize
(
out_shape
);
auto
input_data
=
input
.
mutable_data
<
float
>
();
auto
out_data
=
out
.
mutable_data
<
float
>
();
...
...
@@ -64,11 +65,14 @@ TEST(fill_constant_batch_size_like_x86, run_test) {
std
::
unique_ptr
<
KernelContext
>
ctx
(
new
KernelContext
);
ctx
->
As
<
X86Context
>
();
fill_constant_batch_size_like
.
SetContext
(
std
::
move
(
ctx
));
fill_constant_batch_size_like
.
SetParam
(
param
);
fill_constant_batch_size_like
.
Run
();
for
(
int
i
=
0
;
i
<
out
.
dims
().
production
();
i
++
)
{
LOG
(
INFO
)
<<
out_data
[
i
];
std
::
vector
<
float
>
ref_results
{
3.5
,
3.5
,
3.5
,
3.5
,
3.5
,
3.5
,
3.5
,
3.5
,
3.5
,
3.5
};
for
(
int
i
=
0
;
i
<
ref_results
.
size
();
i
++
)
{
EXPECT_NEAR
(
out_data
[
i
],
ref_results
[
i
],
1e-3
);
}
}
...
...
lite/kernels/x86/gru_compute.cc
浏览文件 @
792d898a
...
...
@@ -28,9 +28,8 @@ REGISTER_LITE_KERNEL(gru,
.
BindInput
(
"H0"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindInput
(
"Weight"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindInput
(
"Bias"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"Batch_gate"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"Batch_reset_hidden_prev"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"Batch_hidden"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"BatchGate"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"BatchResetHiddenPrev"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"BatchHidden"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"Hidden"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
Finalize
();
lite/kernels/x86/sequence_pool_compute.cc
浏览文件 @
792d898a
...
...
@@ -22,4 +22,5 @@ REGISTER_LITE_KERNEL(sequence_pool,
def
)
.
BindInput
(
"X"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"Out"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"MaxIndex"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
Finalize
();
lite/kernels/x86/shape_compute.cc
浏览文件 @
792d898a
...
...
@@ -20,6 +20,6 @@ REGISTER_LITE_KERNEL(shape,
kNCHW
,
paddle
::
lite
::
kernels
::
x86
::
ShapeCompute
<
float
>
,
def
)
.
BindInput
(
"
X
"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindInput
(
"
Input
"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
BindOutput
(
"Out"
,
{
LiteType
::
GetTensorTy
(
TARGET
(
kX86
))})
.
Finalize
();
lite/operators/fill_constant_batch_size_like_op.cc
浏览文件 @
792d898a
...
...
@@ -46,7 +46,7 @@ bool FillConstantBatchSizeLikeOp::InferShape() const {
bool
FillConstantBatchSizeLikeOp
::
AttachImpl
(
const
cpp
::
OpDesc
&
op_desc
,
lite
::
Scope
*
scope
)
{
auto
Input
=
op_desc
.
Input
(
"
X
"
).
front
();
auto
Input
=
op_desc
.
Input
(
"
Input
"
).
front
();
auto
Out
=
op_desc
.
Output
(
"Out"
).
front
();
param_
.
Input
=
scope
->
FindVar
(
Input
)
->
GetMutable
<
lite
::
Tensor
>
();
param_
.
Out
=
scope
->
FindVar
(
Out
)
->
GetMutable
<
lite
::
Tensor
>
();
...
...
lite/operators/op_params.h
浏览文件 @
792d898a
...
...
@@ -685,6 +685,7 @@ struct SequencePoolParam {
std
::
string
pool_type
{
"AVERAGE"
};
#ifdef LITE_WITH_X86
float
pad_value
{
0.0
};
lite
::
Tensor
*
MaxIndex
{};
#endif
};
...
...
lite/utils/any.h
浏览文件 @
792d898a
...
...
@@ -52,7 +52,7 @@ class Any {
return
static_cast
<
T
*>
(
data_
);
}
bool
valid
()
const
{
return
data_
;
}
bool
valid
()
const
{
return
(
data_
!=
nullptr
)
;
}
// ~Any() {
// if (valid()) {
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录