Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
ffa22a5f
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
ffa22a5f
编写于
3月 18, 2018
作者:
K
Kexin Zhao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix scaling param type
上级
e870947c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
24 deletion
+21
-24
paddle/fluid/operators/batch_norm_op.cu.cc
paddle/fluid/operators/batch_norm_op.cu.cc
+21
-19
paddle/fluid/platform/cudnn_helper.h
paddle/fluid/platform/cudnn_helper.h
+0
-5
未找到文件。
paddle/fluid/operators/batch_norm_op.cu.cc
浏览文件 @
ffa22a5f
...
...
@@ -18,6 +18,7 @@ limitations under the License. */
#include <cfloat>
#include "paddle/fluid/operators/math/math_function.h"
#include "paddle/fluid/platform/cudnn_helper.h"
#include "paddle/fluid/platform/float16.h"
namespace
paddle
{
namespace
operators
{
...
...
@@ -27,7 +28,7 @@ using DataLayout = framework::DataLayout;
template
<
typename
T
>
using
CudnnDataType
=
platform
::
CudnnDataType
<
T
>
;
template
<
typename
T
>
using
bn_param_type
=
CudnnDataType
<
T
>::
bn_param_t
ype
;
using
ScalingParamType
=
typename
CudnnDataType
<
T
>::
ScalingParamT
ype
;
void
ExtractNCWHD
(
const
framework
::
DDim
&
dims
,
const
DataLayout
&
data_layout
,
int
*
N
,
int
*
C
,
int
*
H
,
int
*
W
,
int
*
D
)
{
...
...
@@ -121,15 +122,15 @@ class BatchNormKernel<platform::CUDADeviceContext, T>
// alloc memory
y
->
mutable_data
<
T
>
(
ctx
.
GetPlace
());
mean_out
->
mutable_data
<
bn_param_t
ype
<
T
>>
(
ctx
.
GetPlace
());
variance_out
->
mutable_data
<
bn_param_t
ype
<
T
>>
(
ctx
.
GetPlace
());
saved_mean
->
mutable_data
<
bn_param_t
ype
<
T
>>
(
ctx
.
GetPlace
());
saved_variance
->
mutable_data
<
bn_param_t
ype
<
T
>>
(
ctx
.
GetPlace
());
mean_out
->
mutable_data
<
ScalingParamT
ype
<
T
>>
(
ctx
.
GetPlace
());
variance_out
->
mutable_data
<
ScalingParamT
ype
<
T
>>
(
ctx
.
GetPlace
());
saved_mean
->
mutable_data
<
ScalingParamT
ype
<
T
>>
(
ctx
.
GetPlace
());
saved_variance
->
mutable_data
<
ScalingParamT
ype
<
T
>>
(
ctx
.
GetPlace
());
auto
&
dev_ctx
=
ctx
.
template
device_context
<
platform
::
CUDADeviceContext
>();
math
::
SetConstant
<
platform
::
CUDADeviceContext
,
bn_param_t
ype
<
T
>>
functor
;
functor
(
dev_ctx
,
saved_mean
,
static_cast
<
bn_param_t
ype
<
T
>>
(
0
));
functor
(
dev_ctx
,
saved_variance
,
static_cast
<
bn_param_t
ype
<
T
>>
(
0
));
math
::
SetConstant
<
platform
::
CUDADeviceContext
,
ScalingParamT
ype
<
T
>>
functor
;
functor
(
dev_ctx
,
saved_mean
,
static_cast
<
ScalingParamT
ype
<
T
>>
(
0
));
functor
(
dev_ctx
,
saved_variance
,
static_cast
<
ScalingParamT
ype
<
T
>>
(
0
));
auto
handle
=
dev_ctx
.
cudnn_handle
();
...
...
@@ -150,10 +151,10 @@ class BatchNormKernel<platform::CUDADeviceContext, T>
CUDNN_BATCHNORM_SPATIAL
,
CudnnDataType
<
T
>::
kOne
(),
CudnnDataType
<
T
>::
kZero
(),
data_desc_
,
x
->
template
data
<
T
>(),
data_desc_
,
y
->
template
mutable_data
<
T
>(
ctx
.
GetPlace
()),
bn_param_desc_
,
scale
->
template
data
<
bn_param_t
ype
<
T
>
>
(),
bias
->
template
data
<
bn_param_t
ype
<
T
>
>
(),
est_mean
->
template
data
<
bn_param_t
ype
<
T
>
>
(),
est_var
->
template
data
<
bn_param_t
ype
<
T
>
>
(),
epsilon
));
bn_param_desc_
,
scale
->
template
data
<
ScalingParamT
ype
<
T
>
>
(),
bias
->
template
data
<
ScalingParamT
ype
<
T
>
>
(),
est_mean
->
template
data
<
ScalingParamT
ype
<
T
>
>
(),
est_var
->
template
data
<
ScalingParamT
ype
<
T
>
>
(),
epsilon
));
}
else
{
// Run training mode.
// obtain running mean and running inv var, and see if we need to
...
...
@@ -164,13 +165,14 @@ class BatchNormKernel<platform::CUDADeviceContext, T>
handle
,
mode_
,
CudnnDataType
<
T
>::
kOne
(),
CudnnDataType
<
T
>::
kZero
(),
data_desc_
,
x
->
template
data
<
T
>(),
data_desc_
,
y
->
template
mutable_data
<
T
>(
ctx
.
GetPlace
()),
bn_param_desc_
,
scale
->
template
data
<
bn_param_type
<
T
>
>
(),
bias
->
template
data
<
bn_param_type
<
T
>
>
(),
this_factor
,
mean_out
->
template
mutable_data
<
bn_param_type
<
T
>
>
(
ctx
.
GetPlace
()),
variance_out
->
template
mutable_data
<
bn_param_type
<
T
>
>
(
ctx
.
GetPlace
()),
epsilon
,
saved_mean
->
template
mutable_data
<
bn_param_type
<
T
>
>
(
ctx
.
GetPlace
()),
saved_variance
->
template
mutable_data
<
bn_param_type
<
T
>
>
(
scale
->
template
data
<
ScalingParamType
<
T
>
>
(),
bias
->
template
data
<
ScalingParamType
<
T
>
>
(),
this_factor
,
mean_out
->
template
mutable_data
<
ScalingParamType
<
T
>
>
(
ctx
.
GetPlace
()),
variance_out
->
template
mutable_data
<
ScalingParamType
<
T
>
>
(
ctx
.
GetPlace
()),
epsilon
,
saved_mean
->
template
mutable_data
<
ScalingParamType
<
T
>
>
(
ctx
.
GetPlace
()),
saved_variance
->
template
mutable_data
<
ScalingParamType
<
T
>
>
(
ctx
.
GetPlace
())));
}
...
...
paddle/fluid/platform/cudnn_helper.h
浏览文件 @
ffa22a5f
...
...
@@ -85,9 +85,6 @@ template <>
class
CudnnDataType
<
float16
>
{
public:
static
const
cudnnDataType_t
type
=
CUDNN_DATA_HALF
;
// cudnn batch norm requires that Scale, Bias, Mean, and Variance
// to be FLOAT tensors when the input x is HALF tensor
static
const
cudnnDataType_t
bn_param_type
=
CUDNN_DATA_FLOAT
;
// The scaling param type is float for HALF and FLOAT tensors
typedef
const
float
ScalingParamType
;
static
ScalingParamType
*
kOne
()
{
...
...
@@ -104,7 +101,6 @@ template <>
class
CudnnDataType
<
float
>
{
public:
static
const
cudnnDataType_t
type
=
CUDNN_DATA_FLOAT
;
static
const
cudnnDataType_t
bn_param_type
=
CUDNN_DATA_FLOAT
;
typedef
const
float
ScalingParamType
;
static
ScalingParamType
*
kOne
()
{
static
ScalingParamType
v
=
1.0
;
...
...
@@ -120,7 +116,6 @@ template <>
class
CudnnDataType
<
double
>
{
public:
static
const
cudnnDataType_t
type
=
CUDNN_DATA_DOUBLE
;
static
const
cudnnDataType_t
bn_param_type
=
CUDNN_DATA_DOUBLE
;
typedef
const
double
ScalingParamType
;
static
ScalingParamType
*
kOne
()
{
static
ScalingParamType
v
=
1.0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录