Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
05dd5e63
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看板
提交
05dd5e63
编写于
9月 29, 2018
作者:
L
liuruilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
complie success
上级
0575e7d7
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
22 addition
and
5 deletion
+22
-5
CMakeLists.txt
CMakeLists.txt
+4
-1
src/framework/operator.h
src/framework/operator.h
+18
-4
未找到文件。
CMakeLists.txt
浏览文件 @
05dd5e63
...
...
@@ -72,6 +72,10 @@ endif()
if
(
GPU_CL
)
add_definitions
(
-DPADDLE_MOBILE_CL
)
# opencl version
add_definitions
(
-DCL_TARGET_OPENCL_VERSION=220
)
link_libraries
(
/Users/liuruilong/GitHub/paddle-mobile/third_party/opencl/libOpenCL.so
)
include_directories
(
third_party/opencl/OpenCL-Headers
)
else
()
...
...
@@ -82,7 +86,6 @@ else()
file
(
GLOB_RECURSE _tmp_list_h src/framework/cl/*.h
)
foreach
(
f
${
_tmp_list_h
}
)
message
(
STATUS
${
f
}
)
list
(
REMOVE_ITEM PADDLE_MOBILE_H
${
f
}
)
endforeach
()
endif
()
...
...
src/framework/operator.h
浏览文件 @
05dd5e63
...
...
@@ -115,7 +115,11 @@ class OperatorWithKernel : public OperatorBase<Dtype> {
const
VariableNameMap
&
outputs
,
const
AttributeMap
&
attrs
,
std
::
shared_ptr
<
Scope
>
scope
)
:
OperatorBase
<
Dtype
>
(
type
,
inputs
,
outputs
,
attrs
,
scope
),
param_
(
inputs
,
outputs
,
attrs
,
*
scope
)
{}
param_
(
inputs
,
outputs
,
attrs
,
*
scope
)
{
#ifdef PADDLE_MOBILE_CL
kernel_
.
InitCLHelper
(
scope
->
GetCLScpoe
());
#endif
}
virtual
void
RunImpl
()
{
this
->
kernel_
.
Compute
(
this
->
param_
);
}
...
...
@@ -126,6 +130,8 @@ class OperatorWithKernel : public OperatorBase<Dtype> {
// DLOG << i.first;
// DLOG << i.second;
// }
PADDLE_MOBILE_ENFORCE
(
kernel_
.
Init
(
&
param_
),
" %s kernel init failed"
,
this
->
type_
.
c_str
());
}
...
...
@@ -141,10 +147,16 @@ class OperatorWithKernel : public OperatorBase<Dtype> {
template
<
typename
Dtype
,
typename
P
>
class
OpKernelBase
{
public:
OpKernelBase
()
=
default
;
// OpKernelBase(CLScope *clscope): cl_helper_(CLHelper(clscope)) {
// }
#ifdef PADDLE_MOBILE_CL
virtual
void
InitCLHelper
(
CLScope
*
clScope
)
{
cl_helper_
=
CLHelper
(
clScope
);
}
#endif
/*
* @b 所有kernel 需实现 Compute 方法
...
...
@@ -163,7 +175,9 @@ class OpKernelBase {
virtual
~
OpKernelBase
()
=
default
;
protected:
// CLHelper cl_helper_;
#ifdef PADDLE_MOBILE_CL
CLHelper
cl_helper_
;
#endif
private:
#ifdef PADDLE_MOBILE_MALI_GPU
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录