Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
d63ba688
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看板
未验证
提交
d63ba688
编写于
4月 23, 2019
作者:
H
Houjiang Chen
提交者:
GitHub
4月 23, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix compilation on Raspberry PI3, and fix some code style (#1566)
上级
94fb88b4
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
48 addition
and
43 deletion
+48
-43
src/operators/kernel/arm/beam_search_decode_kernel.cpp
src/operators/kernel/arm/beam_search_decode_kernel.cpp
+1
-0
src/operators/kernel/arm/beam_search_kernel.cpp
src/operators/kernel/arm/beam_search_kernel.cpp
+1
-0
src/operators/math/pooling.h
src/operators/math/pooling.h
+12
-17
test/net/test_benchmark.cpp
test/net/test_benchmark.cpp
+1
-1
test/net/test_googlenet.cpp
test/net/test_googlenet.cpp
+30
-14
tools/build.sh
tools/build.sh
+2
-1
tools/ci_build.sh
tools/ci_build.sh
+0
-8
tools/toolchains/arm-linux-gnueabihf.cmake
tools/toolchains/arm-linux-gnueabihf.cmake
+1
-2
未找到文件。
src/operators/kernel/arm/beam_search_decode_kernel.cpp
浏览文件 @
d63ba688
...
...
@@ -15,6 +15,7 @@ limitations under the License. */
#ifdef BEAM_SEARCH_DECODE_OP
#include "operators/kernel/beam_search_decode_kernel.h"
#include <algorithm>
#include "framework/data_type.h"
namespace
paddle_mobile
{
...
...
src/operators/kernel/arm/beam_search_kernel.cpp
浏览文件 @
d63ba688
...
...
@@ -15,6 +15,7 @@ limitations under the License. */
#ifdef BEAM_SEARCH_OP
#include "operators/kernel/beam_search_kernel.h"
#include <cmath>
#include <numeric>
namespace
paddle_mobile
{
...
...
src/operators/math/pooling.h
浏览文件 @
d63ba688
...
...
@@ -157,39 +157,34 @@ inline float PoolPost<AVG>(const float &x, const float &post) {
template
<
PoolingType
P
>
struct
Pooling
{
inline
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
kernel_size
,
const
std
::
vector
<
int
>
&
strides
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
kernel_size
,
const
std
::
vector
<
int
>
&
strides
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
};
template
<
PoolingType
P
,
int
Stride
>
struct
Pooling2x2
{
inline
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
};
template
<
PoolingType
P
,
int
Stride
>
struct
Pooling3x3
{
inline
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
};
template
<
PoolingType
P
,
int
Stride
>
struct
Pooling5x5
{
inline
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
};
template
<
PoolingType
P
,
int
Stride
>
struct
Pooling7x7
{
inline
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
void
operator
()(
const
framework
::
Tensor
&
input
,
const
std
::
vector
<
int
>
&
paddings
,
framework
::
Tensor
*
output
);
};
}
// namespace math
...
...
test/net/test_benchmark.cpp
浏览文件 @
d63ba688
...
...
@@ -46,7 +46,7 @@ int main(int argc, char* argv[]) {
std
::
shared_ptr
<
paddle_mobile
::
framework
::
Tensor
>
output
;
std
::
vector
<
int64_t
>
dims
{
1
,
3
,
224
,
224
};
if
(
feed_shape
)
{
sscanf
(
feed_shape
,
"%l
d,%ld,%ld,%
ld"
,
&
dims
[
0
],
&
dims
[
1
],
&
dims
[
2
],
sscanf
(
feed_shape
,
"%l
ld,%lld,%lld,%l
ld"
,
&
dims
[
0
],
&
dims
[
1
],
&
dims
[
2
],
&
dims
[
3
]);
}
std
::
cout
<<
"feed shape: ["
<<
dims
[
0
]
<<
", "
<<
dims
[
1
]
<<
", "
...
...
test/net/test_googlenet.cpp
浏览文件 @
d63ba688
...
...
@@ -13,25 +13,31 @@ See the License for the specific language governing permissions and
limitations under the License. */
#include <iostream>
#include <sstream>
#include "../test_helper.h"
#include "../test_include.h"
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
argc
<
2
)
{
std
::
cout
<<
"Usage: ./test_benchmark feed_shape [thread_num] [use_fuse]
\n
"
<<
"feed_shape: input tensor shape, such as 3,224,224.
\n
"
<<
"thread_num: optional int, threads count, default is 1.
\n
"
<<
"use_fuse: optional bool, default is 0.
\n
"
;
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
argc
<
4
)
{
std
::
cout
<<
"Usage: ./test_googlenet fluid-model input-image image-shape "
"[thread-num] [fusion]
\n
"
<<
" fluid-model: fluid model path.
\n
"
<<
" input-image: input raw image path.
\n
"
<<
" image-shape: input tensor shape, such as 1,3,224,224.
\n
"
<<
" thread-num: optional int, threads count, default is 1.
\n
"
<<
" fusion: optional bool, default is 0.
\n
"
;
return
1
;
}
int
thread_num
=
1
;
bool
optimize
=
false
;
char
*
feed_shape
=
argv
[
1
];
if
(
argc
>=
3
)
{
thread_num
=
atoi
(
argv
[
2
]);
char
*
fluid_model
=
argv
[
1
];
char
*
input_img
=
argv
[
2
];
char
*
feed_shape
=
argv
[
3
];
if
(
argc
>=
5
)
{
thread_num
=
atoi
(
argv
[
4
]);
}
if
(
argc
>=
4
)
{
optimize
=
atoi
(
argv
[
3
]);
if
(
argc
>=
6
)
{
optimize
=
atoi
(
argv
[
5
]);
}
#ifdef PADDLE_MOBILE_FPGA
paddle_mobile
::
PaddleMobile
<
paddle_mobile
::
FPGA
>
paddle_mobile
;
...
...
@@ -42,18 +48,21 @@ int main(int argc, char* argv[]) {
paddle_mobile
.
SetThreadNum
(
thread_num
);
auto
time1
=
time
();
std
::
vector
<
float
>
output
;
if
(
paddle_mobile
.
Load
(
g_googlenet
,
optimize
,
false
,
1
,
true
))
{
if
(
paddle_mobile
.
Load
(
fluid_model
,
optimize
,
false
,
1
,
true
))
{
auto
time2
=
paddle_mobile
::
time
();
std
::
cout
<<
"load cost :"
<<
paddle_mobile
::
time_diff
(
time1
,
time2
)
<<
"ms"
<<
std
::
endl
;
std
::
vector
<
float
>
input
;
std
::
vector
<
int64_t
>
dims
{
1
,
3
,
224
,
224
};
if
(
feed_shape
)
{
sscanf
(
feed_shape
,
"%d,%d,%d"
,
&
dims
[
1
],
&
dims
[
2
],
&
dims
[
3
]);
sscanf
(
feed_shape
,
"%lld,%lld,%lld,%lld"
,
&
dims
[
0
],
&
dims
[
1
],
&
dims
[
2
],
&
dims
[
3
]);
}
std
::
cout
<<
"feed shape: ["
<<
dims
[
0
]
<<
", "
<<
dims
[
1
]
<<
", "
<<
dims
[
2
]
<<
", "
<<
dims
[
3
]
<<
"]"
<<
std
::
endl
;
GetInput
<
float
>
(
g_test_image_1x3x224x224
,
&
input
,
dims
);
GetInput
<
float
>
(
input_img
,
&
input
,
dims
);
// warmup
for
(
int
i
=
0
;
i
<
10
;
++
i
)
{
output
=
paddle_mobile
.
Predict
(
input
,
dims
);
...
...
@@ -64,6 +73,13 @@ int main(int argc, char* argv[]) {
}
auto
time4
=
time
();
std
::
cout
<<
"predict cost: "
<<
time_diff
(
time3
,
time4
)
/
10
<<
"ms
\n
"
;
std
::
ostringstream
os
;
os
<<
output
[
0
];
for
(
int
i
=
1
;
i
<
output
.
size
();
++
i
)
{
os
<<
", "
<<
output
[
i
];
}
DLOG
<<
os
.
str
();
}
return
0
;
}
tools/build.sh
浏览文件 @
d63ba688
...
...
@@ -118,7 +118,8 @@ build_for_arm_linux() {
fi
cd
"../build/release/arm-linux"
make
-j
8
make
-j
2
cd
"../../../test/"
DIRECTORY
=
"models"
if
[
"
`
ls
-A
$DIRECTORY
`
"
=
""
]
;
then
...
...
tools/ci_build.sh
浏览文件 @
d63ba688
...
...
@@ -75,7 +75,6 @@ function build_android_armv7_cpu_only() {
-DANDROID
=
true
\
-DWITH_LOGGING
=
OFF
\
-DCPU
=
ON
\
-DGPU_MALI
=
OFF
\
-DGPU_CL
=
OFF
\
-DFPGA
=
OFF
...
...
@@ -95,7 +94,6 @@ function build_android_armv7_gpu() {
-DANDROID
=
true
\
-DWITH_LOGGING
=
OFF
\
-DCPU
=
ON
\
-DGPU_MALI
=
ON
\
-DGPU_CL
=
ON
\
-DFPGA
=
OFF
...
...
@@ -115,7 +113,6 @@ function build_android_armv8_cpu_only() {
-DANDROID
=
true
\
-DWITH_LOGGING
=
OFF
\
-DCPU
=
ON
\
-DGPU_MALI
=
OFF
\
-DGPU_CL
=
OFF
\
-DFPGA
=
OFF
...
...
@@ -135,7 +132,6 @@ function build_android_armv8_gpu() {
-DANDROID
=
true
\
-DWITH_LOGGING
=
OFF
\
-DCPU
=
ON
\
-DGPU_MALI
=
ON
\
-DGPU_CL
=
ON
\
-DFPGA
=
OFF
...
...
@@ -154,7 +150,6 @@ function build_ios_armv8_cpu_only() {
-DIS_IOS
=
true
\
-DUSE_OPENMP
=
OFF
\
-DCPU
=
ON
\
-DGPU_MALI
=
OFF
\
-DGPU_CL
=
OFF
\
-DFPGA
=
OFF
...
...
@@ -173,7 +168,6 @@ function build_ios_armv8_gpu() {
-DIS_IOS
=
true
\
-DUSE_OPENMP
=
OFF
\
-DCPU
=
ON
\
-DGPU_MALI
=
OFF
\
-DGPU_CL
=
ON
\
-DFPGA
=
OFF
...
...
@@ -188,7 +182,6 @@ function build_linux_armv7_cpu_only() {
-DCMAKE_BUILD_TYPE
=
"MinSizeRel"
\
-DCMAKE_TOOLCHAIN_FILE
=
"./tools/toolchains/arm-linux-gnueabihf.cmake"
\
-DCPU
=
ON
\
-DGPU_MALI
=
OFF
\
-DGPU_CL
=
OFF
\
-DFPGA
=
OFF
...
...
@@ -203,7 +196,6 @@ function build_linux_armv7_gpu() {
-DCMAKE_BUILD_TYPE
=
"MinSizeRel"
\
-DCMAKE_TOOLCHAIN_FILE
=
"./tools/toolchains/arm-linux-gnueabihf.cmake"
\
-DCPU
=
ON
\
-DGPU_MALI
=
ON
\
-DGPU_CL
=
ON
\
-DFPGA
=
OFF
...
...
tools/toolchains/arm-linux-gnueabihf.cmake
浏览文件 @
d63ba688
...
...
@@ -4,8 +4,7 @@ set(CMAKE_SYSTEM_NAME Linux)
set
(
CMAKE_SYSTEM_PROCESSOR arm
)
set
(
CMAKE_SYSTEM_VERSION 1
)
message
(
"if U build on platform . this is right."
)
set
(
CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER
)
set
(
CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY
)
set
(
CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY
)
set
(
CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY
)
\ No newline at end of file
set
(
CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录