Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Xiaomi
Mace
提交
fff4d5fd
Mace
项目概览
Xiaomi
/
Mace
通知
106
Star
40
Fork
27
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Mace
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
fff4d5fd
编写于
1月 26, 2018
作者:
L
liuqi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix the bug activation parameters' type not match.
上级
08533627
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
29 addition
and
13 deletion
+29
-13
mace/kernels/opencl/activation_opencl.cc
mace/kernels/opencl/activation_opencl.cc
+9
-3
mace/kernels/opencl/helper.cc
mace/kernels/opencl/helper.cc
+20
-10
未找到文件。
mace/kernels/opencl/activation_opencl.cc
浏览文件 @
fff4d5fd
...
...
@@ -25,6 +25,7 @@ void ActivationFunctor<DeviceType::OPENCL, T>::operator()(const Tensor *input,
auto
runtime
=
OpenCLRuntime
::
Global
();
std
::
string
tuning_key_prefix
;
std
::
set
<
std
::
string
>
built_options
;
std
::
string
kernel_name
=
MACE_OBFUSCATE_SYMBOL
(
"activation"
);
built_options
.
emplace
(
"-Dactivation="
+
kernel_name
);
...
...
@@ -33,18 +34,23 @@ void ActivationFunctor<DeviceType::OPENCL, T>::operator()(const Tensor *input,
built_options
.
emplace
(
"-DCMD_DATA_TYPE="
+
DtToUpstreamCLCMDDt
(
dt
));
switch
(
activation_
)
{
case
RELU
:
tuning_key_prefix
=
"relu_opencl_kernel_"
;
built_options
.
emplace
(
"-DUSE_RELU"
);
break
;
case
RELUX
:
tuning_key_prefix
=
"relux_opencl_kernel_"
;
built_options
.
emplace
(
"-DUSE_RELUX"
);
break
;
case
PRELU
:
tuning_key_prefix
=
"prelu_opencl_kernel_"
;
built_options
.
emplace
(
"-DUSE_PRELU"
);
break
;
case
TANH
:
tuning_key_prefix
=
"tanh_opencl_kernel_"
;
built_options
.
emplace
(
"-DUSE_TANH"
);
break
;
case
SIGMOID
:
tuning_key_prefix
=
"sigmoid_opencl_kernel_"
;
built_options
.
emplace
(
"-DUSE_SIGMOID"
);
break
;
defeult:
...
...
@@ -55,8 +61,8 @@ void ActivationFunctor<DeviceType::OPENCL, T>::operator()(const Tensor *input,
int
idx
=
0
;
activation_kernel
.
setArg
(
idx
++
,
*
(
static_cast
<
const
cl
::
Image2D
*>
(
input
->
buffer
())));
activation_kernel
.
setArg
(
idx
++
,
relux_max_limit_
);
activation_kernel
.
setArg
(
idx
++
,
prelu_alpha_
);
activation_kernel
.
setArg
(
idx
++
,
static_cast
<
float
>
(
relux_max_limit_
)
);
activation_kernel
.
setArg
(
idx
++
,
static_cast
<
float
>
(
prelu_alpha_
)
);
activation_kernel
.
setArg
(
idx
++
,
*
(
static_cast
<
cl
::
Image2D
*>
(
output
->
buffer
())));
...
...
@@ -65,7 +71,7 @@ void ActivationFunctor<DeviceType::OPENCL, T>::operator()(const Tensor *input,
static_cast
<
uint32_t
>
(
height
*
batch
)};
const
std
::
vector
<
uint32_t
>
lws
=
{
8
,
16
,
8
,
1
};
std
::
string
tuning_key
=
Concat
(
"relu_opencl_kernel_"
,
activation_
,
output
->
dim
(
0
),
output
->
dim
(
1
),
Concat
(
tuning_key_prefix
,
output
->
dim
(
0
),
output
->
dim
(
1
),
output
->
dim
(
2
),
output
->
dim
(
3
));
TuningOrRun3DKernel
(
activation_kernel
,
tuning_key
,
gws
,
lws
,
future
);
}
...
...
mace/kernels/opencl/helper.cc
浏览文件 @
fff4d5fd
...
...
@@ -121,18 +121,24 @@ std::vector<index_t> CalWinogradShape(const std::vector<index_t> &shape,
std
::
string
DtToCLDt
(
const
DataType
dt
)
{
switch
(
dt
)
{
case
DT_FLOAT
:
return
"float"
;
case
DT_HALF
:
return
"half"
;
default:
LOG
(
FATAL
)
<<
"Unsupported data type"
;
case
DT_FLOAT
:
return
"float"
;
case
DT_HALF
:
return
"half"
;
default:
LOG
(
FATAL
)
<<
"Unsupported data type"
;
return
""
;
}
}
std
::
string
DtToCLCMDDt
(
const
DataType
dt
)
{
switch
(
dt
)
{
case
DT_FLOAT
:
return
"f"
;
case
DT_HALF
:
return
"h"
;
default:
LOG
(
FATAL
)
<<
"Not supported data type for opencl cmd data type"
;
case
DT_FLOAT
:
return
"f"
;
case
DT_HALF
:
return
"h"
;
default:
LOG
(
FATAL
)
<<
"Not supported data type for opencl cmd data type"
;
return
""
;
}
}
...
...
@@ -140,8 +146,10 @@ std::string DtToCLCMDDt(const DataType dt) {
std
::
string
DtToUpstreamCLDt
(
const
DataType
dt
)
{
switch
(
dt
)
{
case
DT_FLOAT
:
case
DT_HALF
:
return
"float"
;
default:
LOG
(
FATAL
)
<<
"Unsupported data type"
;
case
DT_HALF
:
return
"float"
;
default:
LOG
(
FATAL
)
<<
"Unsupported data type"
;
return
""
;
}
}
...
...
@@ -149,8 +157,10 @@ std::string DtToUpstreamCLDt(const DataType dt) {
std
::
string
DtToUpstreamCLCMDDt
(
const
DataType
dt
)
{
switch
(
dt
)
{
case
DT_FLOAT
:
case
DT_HALF
:
return
"f"
;
default:
LOG
(
FATAL
)
<<
"Not supported data type for opencl cmd data type"
;
case
DT_HALF
:
return
"f"
;
default:
LOG
(
FATAL
)
<<
"Not supported data type for opencl cmd data type"
;
return
""
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录