Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
ce969f68
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看板
提交
ce969f68
编写于
12月 06, 2018
作者:
xiebaiyuan
提交者:
GitHub
12月 06, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1333 from yangfei963158659/develop
imp dropout op kernel for gpu
上级
59bc1423
3ec4031f
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
142 addition
and
0 deletion
+142
-0
src/operators/dropout_op.cpp
src/operators/dropout_op.cpp
+3
-0
src/operators/kernel/cl/cl_kernel/dropout_kernel.cl
src/operators/kernel/cl/cl_kernel/dropout_kernel.cl
+42
-0
src/operators/kernel/cl/dropout_kernel.cpp
src/operators/kernel/cl/dropout_kernel.cpp
+59
-0
src/operators/kernel/cl/mul_kernel.cpp
src/operators/kernel/cl/mul_kernel.cpp
+35
-0
src/operators/mul_op.cpp
src/operators/mul_op.cpp
+3
-0
未找到文件。
src/operators/dropout_op.cpp
浏览文件 @
ce969f68
...
...
@@ -30,6 +30,9 @@ namespace ops = paddle_mobile::operators;
#ifdef PADDLE_MOBILE_CPU
REGISTER_OPERATOR_CPU
(
dropout
,
ops
::
DropoutOp
);
#endif
#ifdef PADDLE_MOBILE_CL
REGISTER_OPERATOR_CL
(
dropout
,
ops
::
DropoutOp
);
#endif
#ifdef PADDLE_MOBILE_FPGA
REGISTER_OPERATOR_FPGA
(
dropout
,
ops
::
DropoutOp
);
#endif
...
...
src/operators/kernel/cl/cl_kernel/dropout_kernel.cl
0 → 100644
浏览文件 @
ce969f68
/*
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
OPENCL
EXTENSION
cl_khr_fp16
:
enable
__kernel
void
dropout
(
__read_only
image2d_t
input_image,
__write_only
image2d_t
output_image,
__private
const
int
out_W,
__private
const
float
dropoutPro
)
{
const
int
out_c
=
get_global_id
(
0
)
;
const
int
out_w
=
get_global_id
(
1
)
;
const
int
out_nh
=
get_global_id
(
2
)
;
int2
output_pos
;
output_pos.x
=
out_c
*
out_W
+
out_w
;
output_pos.y
=
out_nh
;
const
sampler_t
sampler
=
CLK_NORMALIZED_COORDS_TRUE
|
CLK_ADDRESS_CLAMP |
CLK_FILTER_NEAREST
;
half4
input
;
half4
output
;
input
=
read_imageh
(
input_image,
sampler,output_pos
)
;
half4
dropout
=
(
half4
)(
1
-
dropoutPro
)
;
output
=
dropout
*
input
;
write_imageh
(
output_image,
output_pos,
output
)
;
}
src/operators/kernel/cl/dropout_kernel.cpp
0 → 100644
浏览文件 @
ce969f68
/* 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 DROPOUT_OP
#include "operators/kernel/dropout_kernel.h"
namespace
paddle_mobile
{
namespace
operators
{
template
<
>
bool
DropoutKernel
<
GPU_CL
,
float
>::
Init
(
DropoutParam
<
GPU_CL
>
*
param
)
{
this
->
cl_helper_
.
AddKernel
(
"dropout"
,
"dropout_kernel.cl"
);
return
true
;
}
template
<
>
void
DropoutKernel
<
GPU_CL
,
float
>::
Compute
(
const
DropoutParam
<
GPU_CL
>
&
param
)
{
auto
kernel
=
this
->
cl_helper_
.
KernelAt
(
0
);
auto
default_work_size
=
this
->
cl_helper_
.
DefaultWorkSize
(
*
(
param
.
Out
()));
auto
*
input_image
=
param
.
InputX
()
->
GetCLImage
();
auto
*
output_image
=
param
.
Out
()
->
GetCLImage
();
const
float
dropoutProb
=
param
.
DropoutProb
();
const
auto
&
inputDim
=
param
.
InputX
()
->
dims
();
int
input_dims
[
4
]
=
{
1
,
1
,
1
,
1
};
// 1 1000 1 1
for
(
int
i
=
0
;
i
<
inputDim
.
size
();
i
++
)
{
input_dims
[
4
-
inputDim
.
size
()
+
i
]
=
inputDim
[
i
];
}
int
out_W
=
input_dims
[
1
];
cl_int
status
;
status
=
clSetKernelArg
(
kernel
,
0
,
sizeof
(
cl_mem
),
&
input_image
);
CL_CHECK_ERRORS
(
status
);
status
=
clSetKernelArg
(
kernel
,
1
,
sizeof
(
cl_mem
),
&
output_image
);
CL_CHECK_ERRORS
(
status
);
status
=
clSetKernelArg
(
kernel
,
2
,
sizeof
(
int
),
&
out_W
);
CL_CHECK_ERRORS
(
status
);
status
=
clSetKernelArg
(
kernel
,
3
,
sizeof
(
float
),
&
dropoutProb
);
CL_CHECK_ERRORS
(
status
);
status
=
clEnqueueNDRangeKernel
(
this
->
cl_helper_
.
CLCommandQueue
(),
kernel
,
default_work_size
.
size
(),
NULL
,
default_work_size
.
data
(),
NULL
,
0
,
NULL
,
NULL
);
CL_CHECK_ERRORS
(
status
);
}
}
// namespace operators
}
// namespace paddle_mobile
#endif
src/operators/kernel/cl/mul_kernel.cpp
0 → 100644
浏览文件 @
ce969f68
/* 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 MUL_OP
#include "operators/kernel/mul_kernel.h"
namespace
paddle_mobile
{
namespace
operators
{
template
<
>
bool
MulKernel
<
GPU_CL
,
float
>::
Init
(
MulParam
<
GPU_CL
>
*
param
)
{
return
true
;
}
template
<
>
void
MulKernel
<
GPU_CL
,
float
>::
Compute
(
const
MulParam
<
GPU_CL
>
&
param
)
{}
template
class
MulKernel
<
GPU_CL
,
float
>;
}
// namespace operators
}
// namespace paddle_mobile
#endif
src/operators/mul_op.cpp
浏览文件 @
ce969f68
...
...
@@ -58,6 +58,9 @@ namespace ops = paddle_mobile::operators;
#ifdef PADDLE_MOBILE_CPU
REGISTER_OPERATOR_CPU
(
mul
,
ops
::
MulOp
);
#endif
#ifdef PADDLE_MOBILE_CL
REGISTER_OPERATOR_CL
(
mul
,
ops
::
MulOp
);
#endif
#ifdef PADDLE_MOBILE_MALI_GPU
REGISTER_OPERATOR_MALI_GPU
(
mul
,
ops
::
MulOp
);
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录