Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
31ed9a5e
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看板
未验证
提交
31ed9a5e
编写于
1月 08, 2021
作者:
L
liym27
提交者:
GitHub
1月 08, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Dy2Stat] Use Paddle2.0 api paddle.tensor.array_* (#30156)
上级
ad55f609
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
5 addition
and
5 deletion
+5
-5
python/paddle/fluid/dygraph/dygraph_to_static/list_transformer.py
...addle/fluid/dygraph/dygraph_to_static/list_transformer.py
+5
-5
未找到文件。
python/paddle/fluid/dygraph/dygraph_to_static/list_transformer.py
浏览文件 @
31ed9a5e
...
...
@@ -126,7 +126,7 @@ class ListTransformer(gast.NodeTransformer):
i
=
"paddle.cast("
\
"x=paddle.jit.dy2static.to_static_variable({}),"
\
"dtype='int64')"
.
format
(
ast_to_source_code
(
slice_node
))
assign_code
=
"{} =
fluid.layers
.array_write(x={}, i={}, array={})"
\
assign_code
=
"{} =
paddle.tensor
.array_write(x={}, i={}, array={})"
\
.
format
(
target_name
,
value_code
,
i
,
target_name
)
assign_node
=
gast
.
parse
(
assign_code
).
body
[
0
]
return
assign_node
...
...
@@ -168,7 +168,7 @@ class ListTransformer(gast.NodeTransformer):
# return False
# if NodeVarType.TENSOR not in var_type_set and NodeVarType.PADDLE_RETURN_TYPES not in var_type_set:
# return False
# # TODO: Consider that `arg` may be a gast.Call about Paddle Api. eg: list_a.append(
fluid.layers
.reshape(x))
# # TODO: Consider that `arg` may be a gast.Call about Paddle Api. eg: list_a.append(
paddle
.reshape(x))
# # else:
# # return True
self
.
list_name_to_updated
[
value_name
.
strip
()]
=
True
...
...
@@ -187,7 +187,7 @@ class ListTransformer(gast.NodeTransformer):
def
_create_tensor_array
(
self
):
# Although `dtype='float32'`, other types such as `int32` can also be supported
func_code
=
"
fluid.layers
.create_array(dtype='float32')"
func_code
=
"
paddle.tensor
.create_array(dtype='float32')"
func_node
=
gast
.
parse
(
func_code
).
body
[
0
].
value
return
func_node
...
...
@@ -195,8 +195,8 @@ class ListTransformer(gast.NodeTransformer):
assert
isinstance
(
node
,
gast
.
Call
)
array
=
astor
.
to_source
(
gast
.
gast_to_ast
(
node
.
func
.
value
))
x
=
astor
.
to_source
(
gast
.
gast_to_ast
(
node
.
args
[
0
]))
i
=
"
fluid.layers
.array_length({})"
.
format
(
array
)
func_code
=
"
fluid.layers
.array_write(x={}, i={}, array={})"
.
format
(
i
=
"
paddle.tensor
.array_length({})"
.
format
(
array
)
func_code
=
"
paddle.tensor
.array_write(x={}, i={}, array={})"
.
format
(
x
,
i
,
array
)
return
gast
.
parse
(
func_code
).
body
[
0
].
value
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录