Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
78de085a
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看板
提交
78de085a
编写于
9月 29, 2018
作者:
L
liuruilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
use image in param
上级
05286f5b
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
26 addition
and
12 deletion
+26
-12
src/framework/cl/cl_helper.h
src/framework/cl/cl_helper.h
+0
-3
src/framework/cl/cl_image.h
src/framework/cl/cl_image.h
+10
-8
src/io/executor.cpp
src/io/executor.cpp
+2
-0
src/operators/kernel/cl/conv_kernel.cpp
src/operators/kernel/cl/conv_kernel.cpp
+0
-1
src/operators/op_param.h
src/operators/op_param.h
+14
-0
未找到文件。
src/framework/cl/cl_helper.h
浏览文件 @
78de085a
...
...
@@ -47,9 +47,6 @@ class CLHelper {
return
scope_
->
Context
();
}
private:
CLScope
*
scope_
;
std
::
vector
<
std
::
unique_ptr
<
_cl_kernel
,
CLKernelDeleter
>>
kernels
;
...
...
src/framework/cl/cl_image.h
浏览文件 @
78de085a
...
...
@@ -32,7 +32,9 @@ class CLImage {
}
const
DDim
&
TensorDim
();
const
DDim
&
TensorDim
()
{
return
tensorDims_
;
}
std
::
vector
<
size_t
>
DefaultWorkSize
()
{
return
{};
...
...
@@ -45,13 +47,13 @@ class CLImage {
cl_context
context_
;
};
void
TensorToCLImage
(
Tensor
*
tensor
,
CLImage
*
image
)
{
}
void
CLImageToTensor
(
CLImage
*
image
,
Tensor
*
tensor
)
{
}
//
void TensorToCLImage(Tensor *tensor, CLImage *image) {
//
//
}
//
//
void CLImageToTensor(CLImage *image, Tensor *tensor) {
//
//
}
}
}
\ No newline at end of file
src/io/executor.cpp
浏览文件 @
78de085a
...
...
@@ -16,6 +16,7 @@ limitations under the License. */
#include <operators/math/gemm.h>
#include <algorithm>
#include <vector>
#include <framework/cl/cl_image.h>
#include "common/enforce.h"
#include "common/log.h"
#include "framework/framework.pb-c.h"
...
...
@@ -233,6 +234,7 @@ void Executor<Dtype, P>::InitMemory() {
Get_binary_data
(
program_
.
model_path
+
"/"
+
var_desc
->
Name
());
char
*
data
=
origin_data
;
LoadMemory
(
*
var_desc
,
tensor
,
&
data
);
delete
origin_data
;
}
else
{
if
(
var_desc
->
Type
()
==
framework
::
VARTYPE_TYPE_LOD_TENSOR
)
{
...
...
src/operators/kernel/cl/conv_kernel.cpp
浏览文件 @
78de085a
...
...
@@ -31,7 +31,6 @@ void ConvKernel<GPU_CL, float>::Compute(const ConvParam<GPU_CL> ¶m) {
auto
kernel
=
this
->
cl_helper_
.
KernelAt
(
0
);
size_t
global_work_size
[
3
]
=
{
1
,
2
,
3
};
clEnqueueNDRangeKernel
(
this
->
cl_helper_
.
CLCommandQueue
(),
kernel
,
3
,
NULL
,
global_work_size
,
NULL
,
0
,
NULL
,
NULL
);
}
template
class
ConvKernel
<
GPU_CL
,
float
>;
...
...
src/operators/op_param.h
浏览文件 @
78de085a
...
...
@@ -27,6 +27,10 @@ limitations under the License. */
#include "fpga/api.h"
#endif
#ifdef PADDLE_MOBILE_CL
#include "framework/cl/cl_image.h"
#endif
namespace
paddle_mobile
{
namespace
operators
{
...
...
@@ -71,6 +75,16 @@ struct DtypeTensorTrait<GPU_MALI> {
typedef
framework
::
Tensor
rtype
;
};
template
<
>
struct
DtypeTensorTrait
<
GPU_CL
>
{
// This is the type we obtained in variable.
typedef
framework
::
CLImage
gtype
;
// This type will be the parent class type
// or the same type.
typedef
framework
::
CLImage
rtype
;
};
class
OpParam
{
protected:
template
<
typename
T
>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录