Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
ecf586a5
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
未验证
提交
ecf586a5
编写于
4月 04, 2023
作者:
J
Jiabin Yang
提交者:
GitHub
4月 04, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support amp logic (#52397)
上级
63efdaee
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
52 addition
and
14 deletion
+52
-14
python/paddle/fluid/framework.py
python/paddle/fluid/framework.py
+0
-9
python/paddle/incubate/autograd/composite_rules.py
python/paddle/incubate/autograd/composite_rules.py
+52
-5
未找到文件。
python/paddle/fluid/framework.py
浏览文件 @
ecf586a5
...
...
@@ -2864,7 +2864,6 @@ class Operator:
self
.
_type
=
type
self
.
attrs
=
attrs
if
attrs
else
{}
else
:
self
.
legacy_attrs
=
attrs
if
attrs
else
{}
self
.
block
=
block
self
.
desc
=
desc
...
...
@@ -3097,10 +3096,6 @@ class Operator:
self
.
desc
.
check_attrs
()
# record all attrs needed by creating op
for
item
in
self
.
desc
.
attr_names
():
self
.
legacy_attrs
[
item
]
=
self
.
desc
.
attr
(
item
)
if
self
.
_has_kernel
(
type
):
self
.
desc
.
infer_var_type
(
self
.
block
.
desc
)
self
.
desc
.
infer_shape
(
self
.
block
.
desc
)
...
...
@@ -3108,10 +3103,6 @@ class Operator:
def
_has_kernel
(
self
,
op_type
):
return
op_type
not
in
self
.
OP_WITHOUT_KERNEL_SET
def
_get_runtime_attrs
(
self
):
"""Record all attrs needed by creating op. This api is only for to_prim process."""
return
self
.
legacy_attrs
def
to_string
(
self
,
throw_on_error
):
"""
Get debug string.
...
...
python/paddle/incubate/autograd/composite_rules.py
浏览文件 @
ecf586a5
...
...
@@ -206,6 +206,13 @@ def gelu_composite(x, approximate):
@
REGISTER_COMPOSITE
(
'reduce_mean'
)
def
mean_composite
(
x
,
axis
,
keepdim
):
"""define composite rule of op mean"""
is_amp
=
False
from
paddle.fluid.data_feeder
import
convert_dtype
if
convert_dtype
(
x
.
dtype
)
==
"float16"
:
is_amp
=
True
x
=
cast
(
x
,
"float32"
)
axes
=
axis
or
list
(
range
(
0
,
len
(
x
.
shape
)))
axes
=
[
axes
]
if
isinstance
(
axes
,
int
)
else
axes
sum_x
=
sum
(
x
,
axis
=
axes
,
keepdim
=
keepdim
)
...
...
@@ -217,7 +224,10 @@ def mean_composite(x, axis, keepdim):
value
=
value_to_fill
,
dtype
=
sum_x
.
dtype
,
)
return
divide
(
sum_x
,
norm
)
res
=
divide
(
sum_x
,
norm
)
if
is_amp
:
res
=
cast
(
res
,
"float16"
)
return
res
@
REGISTER_COMPOSITE
(
'expand_v2'
)
...
...
@@ -424,9 +434,16 @@ def sigmoid_composite(x):
define composite rule of op sigmoid
res = 1 / (1 + exp(-x))
"""
is_amp
=
False
from
paddle.fluid.data_feeder
import
convert_dtype
if
convert_dtype
(
x
.
dtype
)
==
"float16"
:
is_amp
=
True
x
=
cast
(
x
,
"float32"
)
sum_temp
=
1
+
exp
(
-
x
)
res
=
1
/
sum_temp
return
res
return
res
if
not
is_amp
else
cast
(
res
,
"float16"
)
@
REGISTER_COMPOSITE
(
'silu'
)
...
...
@@ -435,9 +452,16 @@ def silu_composite(x):
define composite rule of op silu
res = x / (1 + exp(-x))
"""
is_amp
=
False
from
paddle.fluid.data_feeder
import
convert_dtype
if
convert_dtype
(
x
.
dtype
)
==
"float16"
:
is_amp
=
True
x
=
cast
(
x
,
"float32"
)
sum_temp
=
1
+
exp
(
-
x
)
res
=
x
/
sum_temp
return
res
return
res
if
not
is_amp
else
cast
(
res
,
"float16"
)
@
REGISTER_COMPOSITE
(
'meshgrid'
)
...
...
@@ -505,9 +529,16 @@ def sqrt_composite(x):
define composite rule of op sqrt
res = pow(x, 0.5)
"""
is_amp
=
False
from
paddle.fluid.data_feeder
import
convert_dtype
if
convert_dtype
(
x
.
dtype
)
==
"float16"
:
is_amp
=
True
x
=
cast
(
x
,
"float32"
)
y
=
full
(
x
.
shape
if
len
(
x
.
shape
)
==
0
else
[
1
],
0.5
,
x
.
dtype
)
res
=
pow
(
x
,
y
)
return
res
return
res
if
not
is_amp
else
cast
(
res
,
"float16"
)
@
REGISTER_COMPOSITE
(
'pow'
)
...
...
@@ -516,9 +547,18 @@ def pow_composite(x, y):
define composite rule of op pow
res = x^y
"""
is_amp
=
False
from
paddle.fluid.data_feeder
import
convert_dtype
if
convert_dtype
(
x
.
dtype
)
==
"float16"
:
is_amp
=
True
x
=
cast
(
x
,
"float32"
)
if
isinstance
(
y
,
(
int
,
float
)):
y
=
full
(
x
.
shape
if
len
(
x
.
shape
)
==
0
else
[
1
],
y
,
x
.
dtype
)
res
=
pow
(
x
,
y
)
if
is_amp
:
res
=
cast
(
res
,
"float16"
)
return
res
...
...
@@ -556,8 +596,15 @@ def unsqueeze_composite(x, axis):
def
rsqrt_composite
(
x
):
"""define composite rule of op rsqrt."""
# rsqrt(x) = x^(-0.5)
is_amp
=
False
from
paddle.fluid.data_feeder
import
convert_dtype
if
convert_dtype
(
x
.
dtype
)
==
"float16"
:
is_amp
=
True
x
=
cast
(
x
,
"float32"
)
y
=
full
(
x
.
shape
if
len
(
x
.
shape
)
==
0
else
[
1
],
-
0.5
,
x
.
dtype
)
return
pow
(
x
,
y
)
res
=
pow
(
x
,
y
)
return
res
if
not
is_amp
else
cast
(
res
,
"float16"
)
@
REGISTER_COMPOSITE
(
'group_norm'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录