Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
fbf12239
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看板
提交
fbf12239
编写于
6月 06, 2018
作者:
H
Haipeng Wang
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'upstream/develop' into develop
上级
fa1547ae
2d8ea098
变更
20
隐藏空白更改
内联
并排
Showing
20 changed file
with
34 addition
and
39 deletion
+34
-39
CMakeLists.txt
CMakeLists.txt
+9
-4
src/io/io.cpp
src/io/io.cpp
+0
-0
src/io/io.h
src/io/io.h
+0
-0
test/executor_for_test.h
test/executor_for_test.h
+1
-1
test/framework/test_load.cpp
test/framework/test_load.cpp
+1
-1
test/framework/test_optimize.cpp
test/framework/test_optimize.cpp
+1
-1
test/operators/test_concat_op.cpp
test/operators/test_concat_op.cpp
+0
-1
test/operators/test_cov_op.cpp
test/operators/test_cov_op.cpp
+1
-1
test/operators/test_depthwise_conv_op.cpp
test/operators/test_depthwise_conv_op.cpp
+0
-1
test/operators/test_elementwise_add_op.cpp
test/operators/test_elementwise_add_op.cpp
+0
-1
test/operators/test_lrn_op.cpp
test/operators/test_lrn_op.cpp
+0
-1
test/operators/test_mul_op.cpp
test/operators/test_mul_op.cpp
+0
-1
test/operators/test_pool_op.cpp
test/operators/test_pool_op.cpp
+2
-3
test/operators/test_relu_op.cpp
test/operators/test_relu_op.cpp
+0
-1
test/operators/test_reshape_op.cpp
test/operators/test_reshape_op.cpp
+2
-3
test/operators/test_sigmoid_op.cpp
test/operators/test_sigmoid_op.cpp
+1
-1
test/operators/test_softmax_op.cpp
test/operators/test_softmax_op.cpp
+3
-3
test/operators/test_transpose_op.cpp
test/operators/test_transpose_op.cpp
+2
-3
test/test_include.h
test/test_include.h
+2
-1
tools/build.sh
tools/build.sh
+9
-11
未找到文件。
CMakeLists.txt
浏览文件 @
fbf12239
...
...
@@ -3,10 +3,15 @@ project(paddle-mobile)
add_definitions
(
-DPADDLE_MOBILE_DEBUG
)
add_definitions
(
-DENABLE_EXCEPTION
)
#add_definitions(-DARMV7)
#add_definitions(-DARMV8)
#add_definitions(-DIOS)
add_definitions
(
-DX86
)
if
(
IS_MAC
)
add_definitions
(
-DX86
)
elseif
(
IS_IOS
)
add_definitions
(
-DIOS
)
elseif
(
V7
)
add_definitions
(
-DARMV7
)
elseif
(
V8
)
add_definitions
(
-DARMV8
)
endif
(
IS_MAC
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-std=c++11"
)
set
(
CMAKE_BUILD_TYPE RelWithDebInfo
)
...
...
src/io.cpp
→
src/io
/io
.cpp
浏览文件 @
fbf12239
文件已移动
src/io.h
→
src/io
/io
.h
浏览文件 @
fbf12239
文件已移动
test/executor_for_test.h
浏览文件 @
fbf12239
...
...
@@ -19,7 +19,7 @@ limitations under the License. */
#include "common/log.h"
#include "framework/op_registry.h"
#include "io.h"
#include "io
/io
.h"
#include "operators/conv_op.h"
#include "operators/elementwise_add_op.h"
#include "operators/pool_op.h"
...
...
test/framework/test_load.cpp
浏览文件 @
fbf12239
...
...
@@ -13,7 +13,7 @@ See the License for the specific language governing permissions and
limitations under the License. */
#include "../test_helper.h"
#include "io.h"
#include "io
/io
.h"
int
main
()
{
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
...
...
test/framework/test_optimize.cpp
浏览文件 @
fbf12239
...
...
@@ -15,7 +15,7 @@ limitations under the License. */
#include "../test_helper.h"
#include "framework/program/program-optimize/node.h"
#include "framework/program/program-optimize/program_optimize.h"
#include "io.h"
#include "io
/io
.h"
int
main
()
{
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
...
...
test/operators/test_concat_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,7 +12,6 @@ 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 "../executor_for_test.h"
#include "../test_include.h"
#include "operators/concat_op.h"
...
...
test/operators/test_cov_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,8 +12,8 @@ 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 "../executor_for_test.h"
#include "../test_include.h"
#include "operators/conv_op.h"
int
main
()
{
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
...
...
test/operators/test_depthwise_conv_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,7 +12,6 @@ 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 "../executor_for_test.h"
#include "../test_include.h"
#include "operators/depthwise_conv_op.h"
...
...
test/operators/test_elementwise_add_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,7 +12,6 @@ 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 "../executor_for_test.h"
#include "../test_include.h"
int
main
()
{
...
...
test/operators/test_lrn_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,7 +12,6 @@ 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 "../executor_for_test.h"
#include "../test_include.h"
#include "operators/lrn_op.h"
...
...
test/operators/test_mul_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,7 +12,6 @@ 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 "../executor_for_test.h"
#include "../test_include.h"
#include "operators/mul_op.h"
...
...
test/operators/test_pool_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,9 +12,8 @@ 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 "../executor_for_test.h"
#include "../test_helper.h"
#include "io.h"
#include "../test_include.h"
#include "operators/pool_op.h"
int
main
()
{
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
...
...
test/operators/test_relu_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,7 +12,6 @@ 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 "../executor_for_test.h"
#include "../test_include.h"
#include "operators/relu_op.h"
...
...
test/operators/test_reshape_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,9 +12,8 @@ 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 "../executor_for_test.h"
#include "../test_helper.h"
#include "io.h"
#include "../test_include.h"
#include "operators/reshape_op.h"
int
main
()
{
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
...
...
test/operators/test_sigmoid_op.cpp
浏览文件 @
fbf12239
...
...
@@ -14,7 +14,7 @@ limitations under the License. */
#include "../../src/operators/kernel/sigmoid_kernel.h"
#include "../test_helper.h"
#include "io.h"
#include "io
/io
.h"
int
main
()
{
paddle_mobile
::
framework
::
Tensor
input
;
...
...
test/operators/test_softmax_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,9 +12,9 @@ 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 "../
executor_for_test
.h"
#include "../test_helper.h"
#include "
io
.h"
#include "../
test_include
.h"
#include "
operators/softmax_op
.h"
int
main
()
{
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
...
...
test/operators/test_transpose_op.cpp
浏览文件 @
fbf12239
...
...
@@ -12,10 +12,9 @@ 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 "../executor_for_test.h"
#include "../test_helper.h"
#include "
io
.h"
#include "
../test_include
.h"
#include "operators/transpose_op.h"
int
main
()
{
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
auto
program
=
loader
.
Load
(
std
::
string
(
g_mobilenet_ssd
));
...
...
test/test_include.h
浏览文件 @
fbf12239
...
...
@@ -21,6 +21,7 @@ limitations under the License. */
#include "./test_helper.h"
#include "common/enforce.h"
#include "common/log.h"
#include "executor_for_test.h"
#include "framework/lod_tensor.h"
#include "framework/operator.h"
#include "framework/program/block_desc.h"
...
...
@@ -29,4 +30,4 @@ limitations under the License. */
#include "framework/scope.h"
#include "framework/tensor.h"
#include "framework/variable.h"
#include "io.h"
#include "io
/io
.h"
build.sh
→
tools/
build.sh
浏览文件 @
fbf12239
...
...
@@ -16,13 +16,13 @@ build_for_mac() {
PLATFORM
=
"x86"
MODE
=
"Release"
CXX_FLAGS
=
"-std=c++11 -O3 -s"
BUILD_DIR
=
build/release/
"
${
PLATFORM
}
"
BUILD_DIR
=
../
build/release/
"
${
PLATFORM
}
"
mkdir
-p
${
BUILD_DIR
}
/build
mkdir
-p
${
BUILD_DIR
}
/test
cp
-r
test
/models
${
BUILD_DIR
}
/test/models
cp
-r
../
test/models
${
BUILD_DIR
}
/test/models
cmake
.
\
cmake .
.
\
-B
"
${
BUILD_DIR
}
"
\
-DCMAKE_BUILD_TYPE
=
"
${
MODE
}
"
\
-DCMAKE_CXX_FLAGS
=
"
${
CXX_FLAGS
}
"
\
...
...
@@ -33,8 +33,6 @@ build_for_mac() {
}
build_for_android
()
{
if
[
-z
"
${
ANDROID_NDK
}
"
]
;
then
echo
"ANDROID_NDK not found!"
exit
-1
...
...
@@ -77,8 +75,8 @@ build_for_android() {
-D
"
${
ARM_PLATFORM
}
"
=
true
else
cmake
.
\
-B
"build/release/
${
PLATFORM
}
"
\
cmake .
.
\
-B
"
../
build/release/
${
PLATFORM
}
"
\
-DANDROID_ABI
=
"
${
ABI
}
"
\
-DCMAKE_BUILD_TYPE
=
"
${
MODE
}
"
\
-DCMAKE_TOOLCHAIN_FILE
=
"
${
TOOLCHAIN_FILE
}
"
\
...
...
@@ -88,7 +86,7 @@ build_for_android() {
-DANDROID
=
true
\
-D
"
${
ARM_PLATFORM
}
"
=
true
fi
cd
"./build/release/
${
PLATFORM
}
"
cd
".
.
/build/release/
${
PLATFORM
}
"
make
-j
8
}
...
...
@@ -96,13 +94,13 @@ build_for_android() {
build_for_ios
()
{
PLATFORM
=
"ios"
MODE
=
"Release"
BUILD_DIR
=
build/release/
"
${
PLATFORM
}
"
BUILD_DIR
=
../
build/release/
"
${
PLATFORM
}
"
TOOLCHAIN_FILE
=
"./tools/ios-cmake/ios.toolchain.cmake"
C_FLAGS
=
"-fobjc-abi-version=2 -fobjc-arc -isysroot
${
CMAKE_OSX_SYSROOT
}
"
CXX_FLAGS
=
"-fobjc-abi-version=2 -fobjc-arc -std=gnu++11 -stdlib=libc++ -isysroot
${
CMAKE_OSX_SYSROOT
}
"
mkdir
-p
"
${
BUILD_DIR
}
"
cmake
.
\
cmake .
.
\
-B
"
${
BUILD_DIR
}
"
\
-DCMAKE_BUILD_TYPE
=
"
${
MODE
}
"
\
-DCMAKE_TOOLCHAIN_FILE
=
"
${
TOOLCHAIN_FILE
}
"
\
...
...
@@ -125,7 +123,7 @@ if [ $# -lt 1 ]; then
echo
"sample usage: ./build.sh mac"
else
if
[
$#
-eq
2
]
;
then
if
[[
$2
!=
"googlenet"
]]
-a
[[
$2
!=
"mobilenet"
]]
-a
[[
$2
!=
"yolo"
]]
-a
[[
$2
!=
"squeezenet"
]]
-a
[[
$2
!=
"resnet"
]]
;
then
if
[
$1
=
"mac"
]
;
then
build_for_mac
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录