Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
b33cb2ac
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 2 年 前同步成功
通知
2325
Star
20933
Fork
5424
代码
文件
提交
分支
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看板
提交
b33cb2ac
编写于
9月 21, 2020
作者:
Z
zhhsplendid
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Modify convert functions, test=develop
上级
14306420
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
33 addition
and
4 deletion
+33
-4
python/paddle/fluid/dygraph/dygraph_to_static/call_transformer.py
...addle/fluid/dygraph/dygraph_to_static/call_transformer.py
+1
-1
python/paddle/fluid/dygraph/dygraph_to_static/utils.py
python/paddle/fluid/dygraph/dygraph_to_static/utils.py
+1
-1
python/paddle/fluid/tests/unittests/dygraph_to_static/ifelse_simple_func.py
...d/tests/unittests/dygraph_to_static/ifelse_simple_func.py
+2
-2
python/paddle/jit/dygraph_to_static/__init__.py
python/paddle/jit/dygraph_to_static/__init__.py
+4
-0
python/paddle/jit/dygraph_to_static/convert_call_func.py
python/paddle/jit/dygraph_to_static/convert_call_func.py
+18
-0
python/paddle/jit/dygraph_to_static/convert_operators.py
python/paddle/jit/dygraph_to_static/convert_operators.py
+7
-0
未找到文件。
python/paddle/fluid/dygraph/dygraph_to_static/call_transformer.py
浏览文件 @
b33cb2ac
...
@@ -70,7 +70,7 @@ class CallTransformer(gast.NodeTransformer):
...
@@ -70,7 +70,7 @@ class CallTransformer(gast.NodeTransformer):
if
PDB_SET
in
func_str
:
if
PDB_SET
in
func_str
:
return
node
return
node
new_func_str
=
"
fluid.dygraph
.dygraph_to_static.convert_call({})"
.
format
(
new_func_str
=
"
paddle.jit
.dygraph_to_static.convert_call({})"
.
format
(
func_str
)
func_str
)
new_func_ast
=
gast
.
parse
(
new_func_str
).
body
[
0
].
value
new_func_ast
=
gast
.
parse
(
new_func_str
).
body
[
0
].
value
node
.
func
=
new_func_ast
node
.
func
=
new_func_ast
...
...
python/paddle/fluid/dygraph/dygraph_to_static/utils.py
浏览文件 @
b33cb2ac
...
@@ -427,7 +427,7 @@ def ast_to_func(ast_root, dyfunc, delete_on_exit=True):
...
@@ -427,7 +427,7 @@ def ast_to_func(ast_root, dyfunc, delete_on_exit=True):
os
.
remove
(
filepath
)
os
.
remove
(
filepath
)
source
=
ast_to_source_code
(
ast_root
)
source
=
ast_to_source_code
(
ast_root
)
import_fluid
=
"import paddle.fluid as fluid
\n
"
import_fluid
=
"import paddle
\n
import paddle
.fluid as fluid
\n
"
source
=
import_fluid
+
source
source
=
import_fluid
+
source
if
six
.
PY2
:
if
six
.
PY2
:
...
...
python/paddle/fluid/tests/unittests/dygraph_to_static/ifelse_simple_func.py
浏览文件 @
b33cb2ac
...
@@ -77,8 +77,8 @@ def dyfunc_with_if_else3(x):
...
@@ -77,8 +77,8 @@ def dyfunc_with_if_else3(x):
n = x + 3
n = x + 3
return q, x, y, z
return q, x, y, z
q, x, y, z = fluid.layers.cond(fluid.layers.mean(x)[0] < 5, lambda :
q, x, y, z = fluid.layers.cond(fluid.layers.mean(x)[0] < 5, lambda :
fluid.dygraph
.dygraph_to_static.convert_call(true_fn_0)(q, x, y),
paddle.jit
.dygraph_to_static.convert_call(true_fn_0)(q, x, y),
lambda :
fluid.dygraph
.dygraph_to_static.convert_call(false_fn_0)(q,
lambda :
paddle.jit
.dygraph_to_static.convert_call(false_fn_0)(q,
x, y))
x, y))
"""
"""
y
=
x
+
1
y
=
x
+
1
...
...
python/paddle/jit/dygraph_to_static/__init__.py
浏览文件 @
b33cb2ac
...
@@ -16,8 +16,12 @@ from __future__ import print_function
...
@@ -16,8 +16,12 @@ from __future__ import print_function
from
.
import
convert_operators
from
.
import
convert_operators
from
.
import
convert_call_func
from
.convert_call_func
import
*
from
.
import
variable_trans_func
from
.
import
variable_trans_func
from
.variable_trans_func
import
*
from
.variable_trans_func
import
*
__all__
=
[]
__all__
=
[]
__all__
+=
convert_call_func
.
__all__
__all__
+=
variable_trans_func
.
__all__
__all__
+=
variable_trans_func
.
__all__
python/paddle/jit/dygraph_to_static/convert_call_func.py
0 → 100644
浏览文件 @
b33cb2ac
# Copyright (c) 2020 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.
from
__future__
import
print_function
from
...fluid.dygraph.dygraph_to_static.convert_call_func
import
convert_call
#DEFINE_ALIAS
__all__
=
[
'convert_call'
]
python/paddle/jit/dygraph_to_static/convert_operators.py
浏览文件 @
b33cb2ac
...
@@ -24,3 +24,10 @@ from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_print
...
@@ -24,3 +24,10 @@ from ...fluid.dygraph.dygraph_to_static.convert_operators import convert_print
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_var_dtype
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_var_dtype
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_var_shape
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_var_shape
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_while_loop
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_while_loop
#DEFINE_ALIAS
__all__
=
[
'cast_bool_if_necessary'
,
'convert_assert'
,
'convert_ifelse'
,
'convert_len'
,
'convert_logical_and'
,
'convert_logical_not'
,
'convert_logical_or'
,
'convert_logical_print'
,
'convert_var_dtype'
,
'convert_var_shape'
,
'convert_while_loop'
]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录