Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
0d1642f3
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看板
未验证
提交
0d1642f3
编写于
4月 21, 2023
作者:
C
co63oc
提交者:
GitHub
4月 21, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
【Hackathon No.61】增加 update_loss_scaling 算子FP16/BF16单测 (#52444)
* Add update_loss_scaling tests * Fix code * Fix code
上级
3371747d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
73 addition
and
3 deletion
+73
-3
python/paddle/fluid/tests/unittests/test_update_loss_scaling_op.py
...ddle/fluid/tests/unittests/test_update_loss_scaling_op.py
+73
-3
未找到文件。
python/paddle/fluid/tests/unittests/test_update_loss_scaling_op.py
浏览文件 @
0d1642f3
...
...
@@ -15,10 +15,11 @@
import
unittest
import
numpy
as
np
from
eager_op_test
import
OpTest
,
paddle_static_guard
from
eager_op_test
import
OpTest
,
convert_float_to_uint16
,
paddle_static_guard
import
paddle
from
paddle
import
fluid
from
paddle.fluid
import
core
from
paddle.static.amp
import
amp_nn
...
...
@@ -81,8 +82,10 @@ class TestUpdateLossScalingOp(OpTest):
def
init
(
self
):
self
.
incr_ratio
=
2.0
self
.
decr_ratio
=
0.8
self
.
dtype
=
np
.
float32
self
.
prev_loss_scaling
=
np
.
array
([
2048
]).
astype
(
self
.
dtype
)
self
.
init_dtype
()
self
.
prev_loss_scaling
=
np
.
array
([
2048
]).
astype
(
self
.
loss_scaling_dtype
)
self
.
num_good_steps
=
np
.
array
([
999
],
dtype
=
np
.
int32
)
self
.
num_bad_steps
=
np
.
array
([
1
],
dtype
=
np
.
int32
)
self
.
zero_steps
=
np
.
array
([
0
],
dtype
=
np
.
int32
)
...
...
@@ -94,10 +97,77 @@ class TestUpdateLossScalingOp(OpTest):
'decr_ratio'
:
self
.
decr_ratio
,
}
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float32
self
.
loss_scaling_dtype
=
np
.
float32
def
test_check_output
(
self
):
self
.
check_output
(
no_check_set
=
[
'Out'
])
class
TestUpdateLossScalingFP16Op
(
TestUpdateLossScalingOp
):
def
init_dtype
(
self
):
self
.
dtype
=
np
.
float16
self
.
loss_scaling_dtype
=
np
.
float32
@
unittest
.
skipIf
(
not
core
.
is_compiled_with_cuda
()
or
not
core
.
is_bfloat16_supported
(
core
.
CUDAPlace
(
0
)),
"core is not compiled with CUDA or not support bfloat16"
,
)
class
TestUpdateLossScalingBF16Op
(
OpTest
):
def
init
(
self
):
self
.
incr_ratio
=
2.0
self
.
decr_ratio
=
0.8
self
.
dtype
=
np
.
uint16
self
.
np_dtype
=
"float32"
self
.
prev_loss_scaling
=
np
.
array
([
2048
]).
astype
(
self
.
np_dtype
)
self
.
num_good_steps
=
np
.
array
([
999
],
dtype
=
np
.
int32
)
self
.
num_bad_steps
=
np
.
array
([
1
],
dtype
=
np
.
int32
)
self
.
zero_steps
=
np
.
array
([
0
],
dtype
=
np
.
int32
)
self
.
stop_update
=
np
.
array
([
False
],
dtype
=
np
.
bool_
)
self
.
attrs
=
{
'incr_every_n_steps'
:
1000
,
'decr_every_n_nan_or_inf'
:
2
,
'incr_ratio'
:
self
.
incr_ratio
,
'decr_ratio'
:
self
.
decr_ratio
,
}
def
setUp
(
self
):
self
.
op_type
=
"update_loss_scaling"
self
.
init
()
self
.
python_api
=
update_loss_scaling_wrapper
self
.
python_out_sig
=
[
"out0"
,
"LossScaling"
,
"OutGoodSteps"
,
"OutBadSteps"
,
]
found_inf
=
np
.
array
([
False
],
dtype
=
np
.
bool_
)
x
=
np
.
random
.
random
((
1024
,
1024
)).
astype
(
self
.
np_dtype
)
self
.
inputs
=
{
'X'
:
[(
'x0'
,
convert_float_to_uint16
(
x
))],
'FoundInfinite'
:
found_inf
,
# do not convert
'PrevLossScaling'
:
self
.
prev_loss_scaling
,
'InGoodSteps'
:
self
.
num_good_steps
,
'InBadSteps'
:
self
.
num_bad_steps
,
}
self
.
outputs
=
{
'Out'
:
[(
'out0'
,
convert_float_to_uint16
(
x
))],
# do not convert
'LossScaling'
:
self
.
prev_loss_scaling
*
self
.
incr_ratio
,
'OutGoodSteps'
:
self
.
zero_steps
,
'OutBadSteps'
:
self
.
zero_steps
,
}
def
test_check_output
(
self
):
self
.
check_output_with_place
(
core
.
CUDAPlace
(
0
),
no_check_set
=
[
'Out'
])
class
TestUpdateLossScalingOpBad
(
TestUpdateLossScalingOp
):
def
setUp
(
self
):
self
.
op_type
=
"update_loss_scaling"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录