Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
29c28e2f
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
29c28e2f
编写于
4月 06, 2023
作者:
J
Jiabin Yang
提交者:
GitHub
4月 06, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support more custom vjp (#52533)
上级
5257a79e
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
91 addition
and
39 deletion
+91
-39
paddle/fluid/operators/activation_op.cc
paddle/fluid/operators/activation_op.cc
+42
-5
paddle/fluid/prim/api/composite_backward/composite_backward_api.h
...luid/prim/api/composite_backward/composite_backward_api.h
+36
-0
paddle/fluid/prim/utils/static/composite_grad_desc_maker.h
paddle/fluid/prim/utils/static/composite_grad_desc_maker.h
+11
-34
paddle/phi/api/yaml/backward.yaml
paddle/phi/api/yaml/backward.yaml
+2
-0
未找到文件。
paddle/fluid/operators/activation_op.cc
浏览文件 @
29c28e2f
...
...
@@ -23,10 +23,12 @@ limitations under the License. */
#include "paddle/fluid/framework/infershape_utils.h"
#include "paddle/fluid/framework/op_version_registry.h"
#include "paddle/fluid/operators/common_infer_shape_functions.h"
#include "paddle/fluid/prim/api/composite_backward/composite_backward_api.h"
#include "paddle/fluid/prim/utils/static/composite_grad_desc_maker.h"
#include "paddle/fluid/prim/utils/static/desc_tensor.h"
#include "paddle/phi/backends/dynload/port.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/infermeta/backward.h"
DECLARE_bool
(
use_mkldnn
);
namespace
paddle
{
...
...
@@ -80,6 +82,22 @@ class ActivationGradOpMaker : public framework::SingleGradOpMaker<T> {
}
}
};
class
HardSwishCompositeGradOpMaker
:
public
prim
::
CompositeGradOpMakerBase
{
public:
using
prim
::
CompositeGradOpMakerBase
::
CompositeGradOpMakerBase
;
protected:
void
Apply
()
override
{
paddle
::
Tensor
x
=
this
->
GetSingleForwardInput
(
"X"
);
paddle
::
Tensor
out_grad
=
this
->
GetSingleOutputGrad
(
"Out"
);
paddle
::
Tensor
dx
=
this
->
GetSingleInputGrad
(
"X"
);
auto
*
dx_ptr
=
this
->
GetOutputPtr
(
&
dx
);
std
::
string
dx_name
=
this
->
GetOutputName
(
dx
);
VLOG
(
6
)
<<
"Runing hardswish_grad composite func"
;
prim
::
hardswish_grad
<
prim
::
DescTensor
>
(
x
,
out_grad
,
dx_ptr
);
this
->
RecoverOutputName
(
dx
,
dx_name
);
}
};
phi
::
KernelKey
GetKernelType
(
const
framework
::
ExecutionContext
&
ctx
,
const
framework
::
OperatorWithKernel
&
oper
,
...
...
@@ -400,6 +418,25 @@ namespace plat = paddle::platform;
ops::ActivationOpGrad, \
ops::ActivationGradOpInplaceInferer);
#define REGISTER_ACTIVATION_OP_WITH_COMP( \
KERNEL_TYPE, OP_NAME, functor, grad_functor) \
REGISTER_OPERATOR( \
KERNEL_TYPE, \
ops::ActivationOp, \
ops::OP_NAME##OpMaker, \
ops::ActivationOpInferVarType, \
ops::ActivationGradOpMaker<ops::grad_functor<float>::FwdDeps(), \
paddle::framework::OpDesc>, \
ops::ActivationGradOpMaker<ops::grad_functor<float>::FwdDeps(), \
paddle::imperative::OpBase>, \
ops::OP_NAME##CompositeGradOpMaker, \
std::conditional<ops::CanInplaceAct<ops::grad_functor<float>>(), \
ops::ActFwdInplaceInferer, \
void>::type); \
REGISTER_OPERATOR(KERNEL_TYPE##_grad, \
ops::ActivationOpGrad, \
ops::ActivationGradOpInplaceInferer);
FOR_EACH_ACTIVATION_OP
(
REGISTER_ACTIVATION_OP
);
#define REGISTER_ACTIVATION_CPU_KERNEL(act_type, op_name) \
...
...
@@ -416,10 +453,10 @@ REGISTER_ACTIVATION_CPU_KERNEL(soft_relu, SoftRelu)
REGISTER_ACTIVATION_OP
(
relu6
,
Relu6
,
Relu6Functor
,
Relu6GradFunctor
);
REGISTER_ACTIVATION_OP
(
mish
,
Mish
,
MishFunctor
,
MishGradFunctor
);
REGISTER_ACTIVATION_OP
(
hard_swish
,
HardSwish
,
HardSwishFunctor
,
HardSwishGradFunctor
);
REGISTER_ACTIVATION_OP
_WITH_COMP
(
hard_swish
,
HardSwish
,
HardSwishFunctor
,
HardSwishGradFunctor
);
REGISTER_ACTIVATION_OP
(
swish
,
Swish
,
SwishFunctor
,
SwishGradFunctor
);
/* ========================== register checkpoint ===========================*/
...
...
paddle/fluid/prim/api/composite_backward/composite_backward_api.h
浏览文件 @
29c28e2f
...
...
@@ -32,6 +32,42 @@ using Tensor = paddle::Tensor;
using
IntArray
=
paddle
::
experimental
::
IntArrayBase
<
paddle
::
Tensor
>
;
// This function should have as same signature as phi, which defined in
// paddle/phi/api/backward/backward_api.h
template
<
typename
T
>
void
hardswish_grad
(
const
Tensor
&
x
,
const
Tensor
&
out_grad
,
Tensor
*
x_grad
)
{
if
(
x_grad
)
{
auto
offset
=
full
<
T
>
(
phi
::
vectorize
(
x
.
dims
()),
3.0
,
x
.
dtype
());
auto
condition
=
less_equal
<
T
>
(
x
,
offset
);
auto
tmp1
=
where
<
T
>
(
condition
,
out_grad
*
((
x
/
3.0
)
+
0.5
),
out_grad
);
auto
res
=
where
<
T
>
(
less_than
<
T
>
(
x
,
full
<
T
>
(
phi
::
vectorize
(
x
.
dims
()),
-
3.0
,
x
.
dtype
())),
full
<
T
>
(
phi
::
vectorize
(
x
.
dims
()),
0.0
,
x
.
dtype
()),
tmp1
);
set_output
<
T
>
(
res
,
x_grad
);
}
}
template
<
typename
T
>
void
leaky_relu_grad
(
const
Tensor
&
out
,
const
Tensor
&
out_grad
,
float
negative_slope
,
Tensor
*
x_grad
)
{
if
(
x_grad
)
{
auto
condition
=
greater_than
<
T
>
(
out
,
full
<
T
>
(
phi
::
vectorize
(
out
.
dims
()),
0.0
,
out
.
dtype
()));
auto
res
=
where
<
T
>
(
condition
,
out_grad
,
out_grad
*
negative_slope
);
set_output
<
T
>
(
res
,
x_grad
);
}
}
template
<
typename
T
>
void
silu_grad
(
const
Tensor
&
x
,
const
Tensor
&
out_grad
,
Tensor
*
x_grad
)
{
if
(
x_grad
)
{
auto
sigmoid
=
1.0
/
(
1.0
+
exp
<
T
>
(
-
x
));
auto
res
=
out_grad
*
sigmoid
*
(
1.0
+
x
*
(
1.0
-
sigmoid
));
set_output
<
T
>
(
res
,
x_grad
);
}
}
template
<
typename
T
>
void
relu_grad
(
const
Tensor
&
out
,
const
Tensor
&
out_grad
,
Tensor
*
x_grad
)
{
if
(
x_grad
)
{
...
...
paddle/fluid/prim/utils/static/composite_grad_desc_maker.h
浏览文件 @
29c28e2f
...
...
@@ -376,7 +376,7 @@ class CompositeGradOpMakerBase {
}
std
::
vector
<
framework
::
VarDesc
*>
MultiInputGrad
(
const
std
::
string
&
name
,
bool
drop_empty_grad
=
true
)
const
{
const
std
::
string
&
name
)
const
{
std
::
vector
<
std
::
string
>
ret_val
;
std
::
vector
<
framework
::
VarDesc
*>
input_grads
;
auto
var_names
=
this
->
MultiForwardInputVarName
(
name
);
...
...
@@ -393,39 +393,7 @@ class CompositeGradOpMakerBase {
return
framework
::
kEmptyVarName
;
}
});
if
(
!
drop_empty_grad
)
{
for
(
const
auto
&
name
:
ret_val
)
{
if
(
original_block_
->
HasVar
(
name
))
{
// Copy Var from original block to active block, or create a new one.
CopyVarFromOrig
(
name
);
input_grads
.
emplace_back
(
StaticCompositeContext
::
Instance
().
GetBlock
()
->
FindVar
(
name
));
}
else
{
input_grads
.
emplace_back
(
StaticCompositeContext
::
Instance
().
GetBlock
()
->
Var
(
name
));
}
}
return
input_grads
;
}
PADDLE_ENFORCE_LE
(
var_names
.
size
(),
1UL
,
platform
::
errors
::
Unavailable
(
"BUG from operator developer:"
" for input argument with a list of variables, "
" drop_empty_grad is not allowed because it makes"
" the correspondence bewteen a variable and its gradient"
" ambiguous."
));
std
::
vector
<
std
::
string
>
dropped_ret_val
;
dropped_ret_val
.
reserve
(
ret_val
.
size
());
std
::
copy_if
(
ret_val
.
begin
(),
ret_val
.
end
(),
std
::
back_inserter
(
dropped_ret_val
),
[](
const
std
::
string
&
str
)
{
return
str
!=
framework
::
kEmptyVarName
;
});
for
(
const
auto
&
name
:
dropped_ret_val
)
{
// TODO(jiabin): Will this cause fill zeros error?
for
(
const
auto
&
name
:
ret_val
)
{
if
(
original_block_
->
HasVar
(
name
))
{
// Copy Var from original block to active block, or create a new one.
CopyVarFromOrig
(
name
);
...
...
@@ -437,6 +405,15 @@ class CompositeGradOpMakerBase {
}
}
return
input_grads
;
PADDLE_ENFORCE_LE
(
var_names
.
size
(),
1UL
,
platform
::
errors
::
Unavailable
(
"BUG from operator developer:"
" for input argument with a list of variables, "
" drop_empty_grad is not allowed because it makes"
" the correspondence bewteen a variable and its gradient"
" ambiguous."
));
}
std
::
vector
<
framework
::
VarDesc
*>
MultiOutputGrad
(
...
...
paddle/phi/api/yaml/backward.yaml
浏览文件 @
29c28e2f
...
...
@@ -829,6 +829,7 @@
kernel
:
func
:
leaky_relu_grad
backward
:
leaky_relu_double_grad
composite
:
leaky_relu_grad(x, out_grad, negative_slope, x_grad)
inplace
:
(out_grad -> x_grad)
-
backward_op
:
lerp_grad
...
...
@@ -1461,6 +1462,7 @@
param
:
[
x
]
kernel
:
func
:
silu_grad
composite
:
silu_grad(x, out_grad, x_grad)
inplace
:
(out_grad -> x_grad)
-
backward_op
:
sin_double_grad
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录