Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
91873469
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
91873469
编写于
8月 03, 2023
作者:
Y
Yuang Liu
提交者:
GitHub
8月 03, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Optim fused linear grad add (#55927)
上级
230c6ce1
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
32 addition
and
8 deletion
+32
-8
paddle/phi/api/yaml/fused_ops.yaml
paddle/phi/api/yaml/fused_ops.yaml
+1
-1
paddle/phi/infermeta/multiary.cc
paddle/phi/infermeta/multiary.cc
+2
-1
paddle/phi/infermeta/multiary.h
paddle/phi/infermeta/multiary.h
+1
-0
paddle/phi/kernels/fusion/gpu/fused_linear_param_grad_add_kernel.cu
.../kernels/fusion/gpu/fused_linear_param_grad_add_kernel.cu
+28
-6
未找到文件。
paddle/phi/api/yaml/fused_ops.yaml
浏览文件 @
91873469
...
...
@@ -107,7 +107,7 @@
support_dygraph_mode
:
true
-
op
:
fused_linear_param_grad_add
args
:
(Tensor x, Tensor dout, Tensor dweight, Tensor dbias, bool multi_precision =
true
)
args
:
(Tensor x, Tensor dout, Tensor dweight, Tensor dbias, bool multi_precision =
true
, bool has_bias =
true
)
output
:
Tensor(dweight_out), Tensor(dbias_out)
infer_meta
:
func
:
FusedLinearParamGradAddInferMeta
...
...
paddle/phi/infermeta/multiary.cc
浏览文件 @
91873469
...
...
@@ -1470,6 +1470,7 @@ void FusedLinearParamGradAddInferMeta(const MetaTensor& x,
const
MetaTensor
&
dweight
,
const
MetaTensor
&
dbias
,
bool
multi_precision
,
bool
has_bias
,
MetaTensor
*
dweight_out
,
MetaTensor
*
dbias_out
)
{
const
auto
dtype
=
dout
.
dtype
();
...
...
@@ -1513,7 +1514,7 @@ void FusedLinearParamGradAddInferMeta(const MetaTensor& x,
?
DataType
::
FLOAT32
:
dtype
;
if
(
dbias_out
)
{
if
(
has_bias
&&
dbias_out
)
{
dbias_out
->
set_dims
({
weight_dims
[
1
]});
dbias_out
->
set_dtype
(
multi_precision
?
mp_dtype
:
dtype
);
}
...
...
paddle/phi/infermeta/multiary.h
浏览文件 @
91873469
...
...
@@ -299,6 +299,7 @@ void FusedLinearParamGradAddInferMeta(const MetaTensor& x,
const
MetaTensor
&
dweight
,
const
MetaTensor
&
dbias
,
bool
multi_precision
,
bool
has_bias
,
MetaTensor
*
dweight_out
,
MetaTensor
*
dbias_out
);
...
...
paddle/phi/kernels/fusion/gpu/fused_linear_param_grad_add_kernel.cu
浏览文件 @
91873469
...
...
@@ -40,6 +40,7 @@ void FusedLinearParamGradAddImpl(const Context &ctx,
int64_t
K
,
int64_t
N
,
bool
use_addto
,
bool
has_bias
,
DenseTensor
*
dweight_out
,
DenseTensor
*
dbias_out
)
{
constexpr
bool
kIsMultiPrecision
=
!
std
::
is_same
<
T
,
MT
>::
value
;
...
...
@@ -65,7 +66,7 @@ void FusedLinearParamGradAddImpl(const Context &ctx,
use_addto
);
}
if
(
dbias_out
==
nullptr
)
return
;
if
(
!
has_bias
)
return
;
if
(
!
fuse_bias_grad
)
{
auto
dout_copy
=
dout
;
...
...
@@ -126,6 +127,7 @@ void FusedLinearParamGradAdd(const Context &ctx,
const
paddle
::
optional
<
DenseTensor
>
&
dweight
,
const
paddle
::
optional
<
DenseTensor
>
&
dbias
,
bool
multi_precision
,
bool
has_bias
,
DenseTensor
*
dweight_out
,
DenseTensor
*
dbias_out
)
{
using
MT
=
typename
phi
::
dtype
::
MPTypeTrait
<
T
>::
Type
;
...
...
@@ -159,7 +161,7 @@ void FusedLinearParamGradAdd(const Context &ctx,
multi_precision
=
false
;
}
if
(
dbias_out
)
{
if
(
has_bias
&&
dbias_out
)
{
ctx
.
template
Alloc
<
T
>(
dbias_out
);
}
...
...
@@ -176,6 +178,7 @@ void FusedLinearParamGradAdd(const Context &ctx,
PrintMeta
<
kLogLevel
>
(
dweight_out
,
"dweight_out"
);
PrintMeta
<
kLogLevel
>
(
dbias_out
,
"dbias_out"
);
VLOG
(
kLogLevel
)
<<
"multi_precision = "
<<
multi_precision
;
VLOG
(
kLogLevel
)
<<
"has_bias = "
<<
has_bias
;
VLOG
(
kLogLevel
)
<<
"use_addto = "
<<
use_addto
;
VLOG
(
kLogLevel
)
<<
"M = "
<<
M
;
VLOG
(
kLogLevel
)
<<
"N = "
<<
N
;
...
...
@@ -183,11 +186,29 @@ void FusedLinearParamGradAdd(const Context &ctx,
}
if
(
multi_precision
)
{
FusedLinearParamGradAddImpl
<
T
,
MT
,
Context
>
(
ctx
,
x
,
dout
,
dbias
,
M
,
K
,
N
,
use_addto
,
dweight_out
,
dbias_out
);
FusedLinearParamGradAddImpl
<
T
,
MT
,
Context
>
(
ctx
,
x
,
dout
,
dbias
,
M
,
K
,
N
,
use_addto
,
has_bias
,
dweight_out
,
dbias_out
);
}
else
{
FusedLinearParamGradAddImpl
<
T
,
T
,
Context
>
(
ctx
,
x
,
dout
,
dbias
,
M
,
K
,
N
,
use_addto
,
dweight_out
,
dbias_out
);
FusedLinearParamGradAddImpl
<
T
,
T
,
Context
>
(
ctx
,
x
,
dout
,
dbias
,
M
,
K
,
N
,
use_addto
,
has_bias
,
dweight_out
,
dbias_out
);
}
}
...
...
@@ -199,6 +220,7 @@ void FusedLinearParamGradAdd(const Context &ctx,
const
paddle
::
optional
<
DenseTensor
>
&
dweight
,
const
paddle
::
optional
<
DenseTensor
>
&
dbias
,
bool
multi_precision
,
bool
has_bias
,
DenseTensor
*
dweight_out
,
DenseTensor
*
dbias_out
)
{
PADDLE_THROW
(
phi
::
errors
::
Unimplemented
(
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录