Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
41f0e3c3
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看板
未验证
提交
41f0e3c3
编写于
3月 30, 2023
作者:
zhenhailiu
提交者:
GitHub
3月 30, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[AMP OP&Test] assign op add fp16 、bfp16 test (#52233)
* add fp16 bfp16 test * polish * polish * polish
上级
3161e6c3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
63 addition
and
26 deletion
+63
-26
python/paddle/fluid/tests/unittests/test_assign_op.py
python/paddle/fluid/tests/unittests/test_assign_op.py
+63
-26
未找到文件。
python/paddle/fluid/tests/unittests/test_assign_op.py
浏览文件 @
41f0e3c3
...
...
@@ -18,6 +18,7 @@ import eager_op_test
import
gradient_checker
import
numpy
as
np
from
decorator_helper
import
prog_scope
from
eager_op_test
import
convert_float_to_uint16
,
convert_uint16_to_float
import
paddle
from
paddle
import
fluid
...
...
@@ -47,6 +48,9 @@ class TestAssignOp(eager_op_test.OpTest):
paddle
.
disable_static
()
@
unittest
.
skipIf
(
not
paddle
.
is_compiled_with_cuda
(),
"FP16 test runs only on GPU"
)
class
TestAssignFP16Op
(
eager_op_test
.
OpTest
):
def
setUp
(
self
):
self
.
python_api
=
paddle
.
assign
...
...
@@ -69,6 +73,32 @@ class TestAssignFP16Op(eager_op_test.OpTest):
paddle
.
disable_static
()
@
unittest
.
skipIf
(
not
paddle
.
is_compiled_with_cuda
(),
"BFP16 test runs only on GPU"
)
class
TestAssignBFP16Op
(
eager_op_test
.
OpTest
):
def
setUp
(
self
):
self
.
python_api
=
paddle
.
assign
self
.
public_python_api
=
paddle
.
assign
self
.
op_type
=
"assign"
self
.
prim_op_type
=
"prim"
self
.
enable_cinn
=
False
x
=
np
.
random
.
uniform
(
0
,
1
,
[
100
,
10
]).
astype
(
np
.
float32
)
x
=
convert_float_to_uint16
(
x
)
self
.
inputs
=
{
'X'
:
x
}
self
.
outputs
=
{
'Out'
:
x
}
def
test_forward
(
self
):
paddle
.
enable_static
()
self
.
check_output
()
paddle
.
disable_static
()
def
test_backward
(
self
):
paddle
.
enable_static
()
self
.
check_grad
([
'X'
],
'Out'
,
check_prim
=
True
)
paddle
.
disable_static
()
class
TestAssignOpWithLoDTensorArray
(
unittest
.
TestCase
):
def
test_assign_LoDTensorArray
(
self
):
paddle
.
enable_static
()
...
...
@@ -160,32 +190,12 @@ class TestAssignOApi(unittest.TestCase):
paddle
.
disable_static
()
def
test_assign_NumpyArray
(
self
):
with
fluid
.
dygraph
.
guard
():
array
=
np
.
random
.
random
(
size
=
(
100
,
10
)).
astype
(
np
.
bool_
)
result1
=
paddle
.
zeros
(
shape
=
[
3
,
3
],
dtype
=
'float32'
)
paddle
.
assign
(
array
,
result1
)
np
.
testing
.
assert_allclose
(
result1
.
numpy
(),
array
,
rtol
=
1e-05
)
def
test_assign_NumpyArray1
(
self
):
with
fluid
.
dygraph
.
guard
():
array
=
np
.
random
.
random
(
size
=
(
100
,
10
)).
astype
(
np
.
float32
)
result1
=
paddle
.
zeros
(
shape
=
[
3
,
3
],
dtype
=
'float32'
)
paddle
.
assign
(
array
,
result1
)
np
.
testing
.
assert_allclose
(
result1
.
numpy
(),
array
,
rtol
=
1e-05
)
def
test_assign_NumpyArray2
(
self
):
with
fluid
.
dygraph
.
guard
():
array
=
np
.
random
.
random
(
size
=
(
100
,
10
)).
astype
(
np
.
int32
)
result1
=
paddle
.
zeros
(
shape
=
[
3
,
3
],
dtype
=
'float32'
)
paddle
.
assign
(
array
,
result1
)
np
.
testing
.
assert_allclose
(
result1
.
numpy
(),
array
,
rtol
=
1e-05
)
def
test_assign_NumpyArray3
(
self
):
with
fluid
.
dygraph
.
guard
():
array
=
np
.
random
.
random
(
size
=
(
100
,
10
)).
astype
(
np
.
int64
)
result1
=
paddle
.
zeros
(
shape
=
[
3
,
3
],
dtype
=
'float32'
)
paddle
.
assign
(
array
,
result1
)
np
.
testing
.
assert_allclose
(
result1
.
numpy
(),
array
,
rtol
=
1e-05
)
for
dtype
in
[
np
.
bool_
,
np
.
float32
,
np
.
int32
,
np
.
int64
]:
with
fluid
.
dygraph
.
guard
():
array
=
np
.
random
.
random
(
size
=
(
100
,
10
)).
astype
(
dtype
)
result1
=
paddle
.
zeros
(
shape
=
[
3
,
3
],
dtype
=
'float32'
)
paddle
.
assign
(
array
,
result1
)
np
.
testing
.
assert_allclose
(
result1
.
numpy
(),
array
,
rtol
=
1e-05
)
def
test_assign_List
(
self
):
l
=
[
1
,
2
,
3
]
...
...
@@ -232,6 +242,31 @@ class TestAssignOApi(unittest.TestCase):
paddle
.
disable_static
()
@
unittest
.
skipIf
(
not
paddle
.
is_compiled_with_cuda
(),
"FP16 test runs only on GPU"
)
class
TestAssignOApiFP16
(
unittest
.
TestCase
):
def
test_assign_fp16
(
self
):
x
=
np
.
random
.
uniform
(
0
,
10
,
[
3
,
3
]).
astype
(
np
.
float16
)
x
=
paddle
.
to_tensor
(
x
)
result
=
paddle
.
zeros
(
shape
=
[
3
,
3
],
dtype
=
'float16'
)
paddle
.
assign
(
x
,
result
)
np
.
testing
.
assert_equal
(
result
.
numpy
(),
x
.
numpy
())
def
test_assign_bfp16
(
self
):
x_f
=
np
.
random
.
uniform
(
0
,
10
,
[
3
,
3
]).
astype
(
np
.
float32
)
x
=
convert_float_to_uint16
(
x_f
)
x
=
paddle
.
to_tensor
(
x
)
result
=
paddle
.
zeros
(
shape
=
[
3
,
3
],
dtype
=
'bfloat16'
)
paddle
.
assign
(
x
,
result
)
np
.
testing
.
assert_allclose
(
convert_uint16_to_float
(
result
.
numpy
()),
x_f
,
rtol
=
1e-02
)
np
.
testing
.
assert_equal
(
convert_uint16_to_float
(
result
.
numpy
()),
convert_uint16_to_float
(
x
)
)
class
TestAssignOpErrorApi
(
unittest
.
TestCase
):
def
test_errors
(
self
):
paddle
.
enable_static
()
...
...
@@ -284,6 +319,7 @@ class TestAssignDoubleGradCheck(unittest.TestCase):
places
.
append
(
fluid
.
CUDAPlace
(
0
))
for
p
in
places
:
self
.
func
(
p
)
paddle
.
disable_static
()
class
TestAssignTripleGradCheck
(
unittest
.
TestCase
):
...
...
@@ -315,6 +351,7 @@ class TestAssignTripleGradCheck(unittest.TestCase):
places
.
append
(
fluid
.
CUDAPlace
(
0
))
for
p
in
places
:
self
.
func
(
p
)
paddle
.
disable_static
()
if
__name__
==
'__main__'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录