Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
e4dabf84
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看板
提交
e4dabf84
编写于
9月 29, 2018
作者:
L
liuruilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update cl image
上级
ae4beda3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
22 addition
and
2 deletion
+22
-2
src/framework/cl/cl_image.h
src/framework/cl/cl_image.h
+7
-2
src/framework/op_registry.h
src/framework/op_registry.h
+5
-0
src/operators/conv_op.cpp
src/operators/conv_op.cpp
+4
-0
src/operators/conv_op.h
src/operators/conv_op.h
+6
-0
未找到文件。
src/framework/cl/cl_image.h
浏览文件 @
e4dabf84
...
@@ -32,8 +32,13 @@ class CLImage {
...
@@ -32,8 +32,13 @@ class CLImage {
}
}
const
DDim
&
TensorDim
()
{
inline
CLImage
&
Resize
(
const
DDim
&
dims
)
{
return
tensorDims_
;
tensorDims_
=
dims
;
return
*
this
;
}
const
DDim
&
dims
()
const
{
return
DDim
();
}
}
std
::
vector
<
size_t
>
DefaultWorkSize
()
{
std
::
vector
<
size_t
>
DefaultWorkSize
()
{
...
...
src/framework/op_registry.h
浏览文件 @
e4dabf84
...
@@ -122,6 +122,9 @@ class OpRegistry {
...
@@ -122,6 +122,9 @@ class OpRegistry {
#define REGISTER_OPERATOR_FPGA(op_type, op_class) \
#define REGISTER_OPERATOR_FPGA(op_type, op_class) \
REGISTER_OPERATOR(op_type, op_class, fpga, paddle_mobile::FPGA);
REGISTER_OPERATOR(op_type, op_class, fpga, paddle_mobile::FPGA);
#define REGISTER_OPERATOR_CL(op_type, op_class) \
REGISTER_OPERATOR(op_type, op_class, cl, paddle_mobile::GPU_CL);
#define USE_OP(op_type, device_name) \
#define USE_OP(op_type, device_name) \
extern int TouchOpRegistrar_##op_type##_##device_name(); \
extern int TouchOpRegistrar_##op_type##_##device_name(); \
static int use_op_itself_##op_type##_##device_name __attribute__((unused)) = \
static int use_op_itself_##op_type##_##device_name __attribute__((unused)) = \
...
@@ -133,5 +136,7 @@ class OpRegistry {
...
@@ -133,5 +136,7 @@ class OpRegistry {
#define USE_OP_FPGA(op_type) USE_OP(op_type, fpga);
#define USE_OP_FPGA(op_type) USE_OP(op_type, fpga);
#define USE_OP_CL(op_type) USE_OP(op_type, cl);
}
// namespace framework
}
// namespace framework
}
// namespace paddle_mobile
}
// namespace paddle_mobile
src/operators/conv_op.cpp
浏览文件 @
e4dabf84
...
@@ -62,4 +62,8 @@ REGISTER_OPERATOR_MALI_GPU(conv2d, ops::ConvOp);
...
@@ -62,4 +62,8 @@ REGISTER_OPERATOR_MALI_GPU(conv2d, ops::ConvOp);
REGISTER_OPERATOR_FPGA
(
conv2d
,
ops
::
ConvOp
);
REGISTER_OPERATOR_FPGA
(
conv2d
,
ops
::
ConvOp
);
#endif
#endif
#ifdef PADDLE_MOBILE_CL
REGISTER_OPERATOR_CL
(
conv2d
,
ops
::
ConvOp
);
#endif
#endif
#endif
src/operators/conv_op.h
浏览文件 @
e4dabf84
...
@@ -45,11 +45,17 @@ class ConvOp : public framework::OperatorWithKernel<
...
@@ -45,11 +45,17 @@ class ConvOp : public framework::OperatorWithKernel<
#ifdef PADDLE_MOBILE_CPU
#ifdef PADDLE_MOBILE_CPU
USE_OP_CPU
(
conv2d
);
USE_OP_CPU
(
conv2d
);
#endif
#endif
#ifdef PADDLE_MOBILE_MALI_GPU
#ifdef PADDLE_MOBILE_MALI_GPU
USE_OP_MALI_GPU
(
conv2d
);
USE_OP_MALI_GPU
(
conv2d
);
#endif
#endif
#ifdef PADDLE_MOBILE_FPGA
#ifdef PADDLE_MOBILE_FPGA
USE_OP_FPGA
(
conv2d
);
USE_OP_FPGA
(
conv2d
);
#endif
#endif
#ifdef PADDLE_MOBILE_CL
USE_OP_CL
(
conv2d
);
#endif
#endif
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录