Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
aa12737b
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看板
未验证
提交
aa12737b
编写于
7月 02, 2021
作者:
A
Aurelius84
提交者:
GitHub
7月 02, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Dy2Stat]Support Python3 type hint (#33745) (#33914)
[Dy2Stat] Support Python3 type hint (#33745)
上级
bedcf0dd
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
137 addition
and
6 deletion
+137
-6
python/paddle/fluid/dygraph/dygraph_to_static/utils.py
python/paddle/fluid/dygraph/dygraph_to_static/utils.py
+9
-2
python/paddle/fluid/tests/unittests/dygraph_to_static/test_origin_info.py
...uid/tests/unittests/dygraph_to_static/test_origin_info.py
+4
-4
python/paddle/fluid/tests/unittests/dygraph_to_static/test_typing.py
...le/fluid/tests/unittests/dygraph_to_static/test_typing.py
+124
-0
未找到文件。
python/paddle/fluid/dygraph/dygraph_to_static/utils.py
浏览文件 @
aa12737b
...
...
@@ -487,8 +487,7 @@ def ast_to_func(ast_root, dyfunc, delete_on_exit=True):
os
.
remove
(
filepath
)
source
=
ast_to_source_code
(
ast_root
)
import_fluid
=
"import paddle
\n
import paddle.fluid as fluid
\n
"
source
=
import_fluid
+
source
source
=
_inject_import_statements
()
+
source
if
six
.
PY2
:
source
=
source
.
encode
(
'utf-8'
)
...
...
@@ -528,6 +527,14 @@ def ast_to_func(ast_root, dyfunc, delete_on_exit=True):
return
callable_func
,
f
.
name
def
_inject_import_statements
():
import_statements
=
[
"import paddle"
,
"import paddle.fluid as fluid"
,
"from typing import *"
,
"import numpy as np"
]
return
'
\n
'
.
join
(
import_statements
)
+
'
\n
'
def
recover_globals_attribute
(
src_obj
,
dst_obj
):
attr_name
=
'__globals__'
...
...
python/paddle/fluid/tests/unittests/dygraph_to_static/test_origin_info.py
浏览文件 @
aa12737b
...
...
@@ -65,7 +65,7 @@ class TestOriginInfo(unittest.TestCase):
self
.
func
=
simple_func
def
set_static_lineno
(
self
):
self
.
static_abs_lineno_list
=
[
3
,
4
,
5
]
self
.
static_abs_lineno_list
=
[
5
,
6
,
7
]
def
set_dygraph_info
(
self
):
self
.
line_num
=
3
...
...
@@ -149,7 +149,7 @@ class TestOriginInfoWithNestedFunc(TestOriginInfo):
self
.
func
=
nested_func
def
set_static_lineno
(
self
):
self
.
static_abs_lineno_list
=
[
3
,
5
,
6
,
7
,
8
]
self
.
static_abs_lineno_list
=
[
5
,
7
,
8
,
9
,
10
]
def
set_dygraph_info
(
self
):
self
.
line_num
=
5
...
...
@@ -174,7 +174,7 @@ class TestOriginInfoWithDecoratedFunc(TestOriginInfo):
self
.
func
=
decorated_func
def
set_static_lineno
(
self
):
self
.
static_abs_lineno_list
=
[
3
,
4
]
self
.
static_abs_lineno_list
=
[
5
,
6
]
def
set_dygraph_info
(
self
):
self
.
line_num
=
2
...
...
@@ -208,7 +208,7 @@ class TestOriginInfoWithDecoratedFunc2(TestOriginInfo):
self
.
func
=
decorated_func2
def
set_static_lineno
(
self
):
self
.
static_abs_lineno_list
=
[
3
,
4
]
self
.
static_abs_lineno_list
=
[
5
,
6
]
def
set_dygraph_info
(
self
):
self
.
line_num
=
2
...
...
python/paddle/fluid/tests/unittests/dygraph_to_static/test_typing.py
0 → 100644
浏览文件 @
aa12737b
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
paddle
import
unittest
import
numpy
as
np
from
typing
import
Tuple
,
List
,
Dict
,
TypeVar
class
BaseLayer
(
paddle
.
nn
.
Layer
):
def
__init__
(
self
,
in_size
,
out_size
):
super
(
BaseLayer
,
self
).
__init__
()
self
.
_linear
=
paddle
.
nn
.
Linear
(
in_size
,
out_size
)
def
build
(
self
,
x
):
out1
=
self
.
_linear
(
x
)
out2
=
paddle
.
mean
(
out1
)
return
out1
,
out2
class
LinearNetWithTuple
(
BaseLayer
):
def
__init__
(
self
,
in_size
,
out_size
):
super
(
LinearNetWithTuple
,
self
).
__init__
(
in_size
,
out_size
)
def
forward
(
self
,
x
)
->
Tuple
[
paddle
.
Tensor
,
str
]:
out1
,
out2
=
self
.
build
(
x
)
return
(
out2
,
'str'
)
class
LinearNetWithTuple2
(
BaseLayer
):
def
__init__
(
self
,
in_size
,
out_size
):
super
(
LinearNetWithTuple2
,
self
).
__init__
(
in_size
,
out_size
)
def
forward
(
self
,
x
)
->
Tuple
[
paddle
.
Tensor
,
np
.
array
]:
out1
,
out2
=
self
.
build
(
x
)
return
(
out2
,
np
.
ones
([
4
,
16
]))
class
LinearNetWithList
(
BaseLayer
):
def
__init__
(
self
,
in_size
,
out_size
):
super
(
LinearNetWithList
,
self
).
__init__
(
in_size
,
out_size
)
def
forward
(
self
,
x
)
->
List
[
paddle
.
Tensor
]:
out1
,
out2
=
self
.
build
(
x
)
return
[
out2
]
class
LinearNetWithDict
(
BaseLayer
):
def
__init__
(
self
,
in_size
,
out_size
):
super
(
LinearNetWithDict
,
self
).
__init__
(
in_size
,
out_size
)
def
forward
(
self
,
x
)
->
Dict
[
str
,
paddle
.
Tensor
]:
out1
,
out2
=
self
.
build
(
x
)
return
{
'out'
:
out2
}
class
TestTyping
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
in_num
=
16
self
.
out_num
=
16
self
.
x
=
paddle
.
randn
([
4
,
16
])
self
.
spec
=
[
paddle
.
static
.
InputSpec
(
shape
=
[
None
,
16
],
dtype
=
'float32'
)]
def
build_net
(
self
):
return
LinearNetWithTuple
(
self
.
in_num
,
self
.
out_num
)
def
save_and_load
(
self
,
suffix
=
''
):
path
=
'./layer_typing_'
+
suffix
paddle
.
jit
.
save
(
self
.
net
,
path
,
input_spec
=
self
.
spec
)
return
paddle
.
jit
.
load
(
path
)
def
run_dy
(
self
):
out
,
_
=
self
.
net
(
self
.
x
)
return
out
def
test_type
(
self
):
self
.
net
=
self
.
build_net
()
out
=
self
.
run_dy
()
load_net
=
self
.
save_and_load
(
'tuple'
)
load_out
=
load_net
(
self
.
x
)
self
.
assertTrue
(
np
.
allclose
(
out
,
load_out
))
class
TestTypingTuple
(
TestTyping
):
def
build_net
(
self
):
return
LinearNetWithTuple2
(
self
.
in_num
,
self
.
out_num
)
def
run_dy
(
self
):
out
,
np_data
=
self
.
net
(
self
.
x
)
self
.
assertTrue
(
np
.
equal
(
np_data
,
np
.
ones_like
(
np_data
)).
all
())
return
out
class
TestTypingList
(
TestTyping
):
def
build_net
(
self
):
return
LinearNetWithList
(
self
.
in_num
,
self
.
out_num
)
def
run_dy
(
self
):
out
=
self
.
net
(
self
.
x
)[
0
]
return
out
class
TestTypingDict
(
TestTyping
):
def
build_net
(
self
):
return
LinearNetWithDict
(
self
.
in_num
,
self
.
out_num
)
def
run_dy
(
self
):
out
=
self
.
net
(
self
.
x
)[
'out'
]
return
out
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录