Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
5d04a130
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看板
提交
5d04a130
编写于
6月 08, 2018
作者:
W
wangliu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add jni interface
上级
1fb683a8
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
180 addition
and
4 deletion
+180
-4
CMakeLists.txt
CMakeLists.txt
+14
-4
src/common/log.h
src/common/log.h
+22
-0
src/jni/paddle_mobile_jni.cpp
src/jni/paddle_mobile_jni.cpp
+93
-0
src/jni/paddle_mobile_jni.h
src/jni/paddle_mobile_jni.h
+51
-0
未找到文件。
CMakeLists.txt
浏览文件 @
5d04a130
cmake_minimum_required
(
VERSION 3.0
)
project
(
paddle-mobile
)
option
(
DEBUGING
"enable debug mode"
O
FF
)
option
(
DEBUGING
"enable debug mode"
O
N
)
option
(
USE_OPENMP
"openmp support"
OFF
)
option
(
USE_EXCEPTION
"use std exception"
OFF
)
...
...
@@ -11,10 +11,13 @@ else()
set
(
CMAKE_BUILD_TYPE Release
)
endif
()
if
(
DEBUGING
)
message
(
STATUS
"debuging"
)
add_definitions
(
-DPADDLE_MOBILE_DEBUG
)
if
(
ANDROID
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-llog"
)
endif
()
else
()
message
(
STATUS
"releasing"
)
add_definitions
(
-fvisibility=hidden -fvisibility-inlines-hidden
)
...
...
@@ -49,6 +52,12 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY build)
file
(
GLOB_RECURSE PADDLE_MOBILE_CC src/*.cc src/*.cpp src/*.c
)
file
(
GLOB_RECURSE PADDLE_MOBILE_H src/*.h
)
if
(
NOT ANDROID
)
list
(
REMOVE_ITEM PADDLE_MOBILE_CC
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/jni/*.cpp
)
list
(
REMOVE_ITEM PADDLE_MOBILE_CC
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/jni/*.h
)
list
(
REMOVE_ITEM PADDLE_MOBILE_CC
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/operators/math/math_func_neon.h
)
endif
()
include_directories
(
src/
)
if
(
USE_OPENMP
)
...
...
@@ -118,10 +127,11 @@ else ()
add_definitions
(
-DTRANSPOSE_OP
)
endif
()
add_library
(
paddle-mobile SHARED
${
PADDLE_MOBILE_CC
}
${
PADDLE_MOBILE_H
}
)
if
(
DEBUGING
)
#
if(DEBUGING)
add_subdirectory
(
test
)
endif
()
#
endif()
src/common/log.h
浏览文件 @
5d04a130
...
...
@@ -20,11 +20,33 @@ limitations under the License. */
#include <sstream>
#include <string>
#endif
#ifdef ANDROID
#include <android/log.h>
#endif
namespace
paddle_mobile
{
#ifdef PADDLE_MOBILE_DEBUG
#ifdef ANDROID
extern
const
char
*
ANDROID_LOG_TAG
;
#define LOGI(...) \
__android_log_print(ANDROID_LOG_INFO, ANDROID_LOG_TAG, __VA_ARGS__); \
printf(__VA_ARGS__)
#define LOGW(...) \
__android_log_print(ANDROID_LOG_WARNING, ANDROID_LOG_TAG, __VA_ARGS__); \
printf(__VA_ARGS__)
#define LOGD(...) \
__android_log_print(ANDROID_LOG_DEBUG, ANDROID_LOG_TAG, __VA_ARGS__); \
printf(__VA_ARGS__)
#define LOGE(...) \
__android_log_print(ANDROID_LOG_ERROR, ANDROID_LOG_TAG, __VA_ARGS__); \
printf(__VA_ARGS__)
#endif
enum
LogLevel
{
kNO_LOG
,
kLOG_ERROR
,
...
...
src/jni/paddle_mobile_jni.cpp
0 → 100644
浏览文件 @
5d04a130
/* 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. */
#ifdef ANDROID
#include "paddle_mobile_jni.h"
#ifdef __cplusplus
extern
"C"
{
#endif
namespace
paddle_mobile
{
namespace
jni
{
using
framework
::
DDim
;
using
framework
::
Program
;
using
framework
::
Tensor
;
using
paddle_mobile
::
CPU
;
using
std
::
string
;
extern
const
char
*
ANDROID_LOG_TAG
=
"paddle_mobile LOG built on "
__DATE__
" "
__TIME__
;
static
Executor
<
CPU
>
*
shared_executor_instance
=
nullptr
;
// toDo mutex lock
// static std::mutex shared_mutex;
Executor
<
CPU
>
*
getExecutorInstance
(
const
Program
<
CPU
>
p
,
int
batch_size
,
bool
use_optimize
)
{
if
(
nullptr
==
shared_executor_instance
)
{
shared_executor_instance
=
new
Executor
<
CPU
>
(
p
,
batch_size
,
use_optimize
);
}
return
shared_executor_instance
;
}
string
jstring2cppstring
(
JNIEnv
*
env
,
jstring
jstr
)
{
const
char
*
cstr
=
env
->
GetStringUTFChars
(
jstr
,
0
);
string
cppstr
(
cstr
);
env
->
ReleaseStringUTFChars
(
jstr
,
cstr
);
return
cppstr
;
}
JNIEXPORT
jboolean
JNICALL
Java_com_baidu_paddle_PML_load
(
JNIEnv
*
env
,
jclass
thiz
,
jstring
modelPath
)
{
paddle_mobile
::
Loader
<
paddle_mobile
::
CPU
>
loader
;
bool
optimize
=
true
;
auto
program
=
loader
.
Load
(
jstring2cppstring
(
env
,
modelPath
),
optimize
);
shared_executor_instance
=
getExecutorInstance
(
program
,
1
,
optimize
);
return
shared_executor_instance
!=
nullptr
?
JNI_TRUE
:
JNI_FALSE
;
}
JNIEXPORT
jfloatArray
JNICALL
Java_com_baidu_paddle_PML_predictImage
(
JNIEnv
*
env
,
jclass
thiz
,
jfloatArray
buf
)
{
jfloatArray
result
=
NULL
;
int
count
=
0
;
float
*
dataPointer
=
nullptr
;
if
(
nullptr
!=
buf
)
{
dataPointer
=
env
->
GetFloatArrayElements
(
buf
,
NULL
);
}
framework
::
Tensor
input
;
framework
::
DDim
ddim
=
framework
::
make_ddim
({
1
,
3
,
224
,
224
});
input
.
Resize
(
ddim
);
auto
input_ptr
=
input
.
mutable_data
<
float
>
();
for
(
int
i
=
0
;
i
<
framework
::
product
(
ddim
);
i
++
)
{
input_ptr
[
i
]
=
dataPointer
[
i
];
}
auto
output
=
shared_executor_instance
->
Predict
(
input
);
count
=
output
->
numel
();
result
=
env
->
NewFloatArray
(
count
);
env
->
SetFloatArrayRegion
(
result
,
0
,
count
,
output
->
data
<
float
>
());
return
result
;
}
JNIEXPORT
void
JNICALL
Java_com_baidu_paddle_PML_clear
(
JNIEnv
*
env
,
jclass
thiz
)
{}
}
// namespace jni
}
// namespace paddle_mobile
#ifdef __cplusplus
}
#endif
#endif
src/jni/paddle_mobile_jni.h
0 → 100644
浏览文件 @
5d04a130
/* 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
#ifdef ANDROID
#include <jni.h>
#include "common/log.h"
#include "framework/tensor.h"
#include "io/io.h"
#ifdef __cplusplus
extern
"C"
{
#endif
namespace
paddle_mobile
{
namespace
jni
{
/**
* load model & params of the net for android
*/
JNIEXPORT
jboolean
JNICALL
Java_com_baidu_paddle_PML_load
(
JNIEnv
*
env
,
jclass
thiz
,
jstring
modelPath
);
/**
* object detection for anroid
*/
JNIEXPORT
jfloatArray
JNICALL
Java_com_baidu_paddle_PML_predictImage
(
JNIEnv
*
env
,
jclass
thiz
,
jfloatArray
buf
);
/**
* clear data of the net when destroy for android
*/
JNIEXPORT
void
JNICALL
Java_com_baidu_paddle_PMLL_clear
(
JNIEnv
*
env
,
jclass
thiz
);
}
// namespace jni
}
// namespace paddle_mobile
#ifdef __cplusplus
}
#endif
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录