Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
57ad9b46
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
57ad9b46
编写于
12月 07, 2022
作者:
N
Nyakku Shigure
提交者:
GitHub
12月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Dy2St] replace deprecated `load_module` with `exec_module` (#48679)
上级
c838c1ed
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
10 addition
and
5 deletion
+10
-5
python/paddle/jit/dy2static/utils.py
python/paddle/jit/dy2static/utils.py
+6
-4
python/paddle/utils/cpp_extension/extension_utils.py
python/paddle/utils/cpp_extension/extension_utils.py
+4
-1
未找到文件。
python/paddle/jit/dy2static/utils.py
浏览文件 @
57ad9b46
...
@@ -18,6 +18,7 @@ import atexit
...
@@ -18,6 +18,7 @@ import atexit
import
copy
import
copy
from
paddle.utils
import
gast
from
paddle.utils
import
gast
import
inspect
import
inspect
import
importlib.util
import
os
import
os
import
sys
import
sys
import
shutil
import
shutil
...
@@ -32,6 +33,7 @@ from paddle.fluid import core
...
@@ -32,6 +33,7 @@ from paddle.fluid import core
from
paddle.fluid.layer_helper
import
LayerHelper
from
paddle.fluid.layer_helper
import
LayerHelper
from
paddle.fluid.layers
import
assign
from
paddle.fluid.layers
import
assign
from
functools
import
reduce
from
functools
import
reduce
from
importlib.machinery
import
SourceFileLoader
import
warnings
import
warnings
...
@@ -71,9 +73,6 @@ class BaseNodeVisitor(gast.NodeVisitor):
...
@@ -71,9 +73,6 @@ class BaseNodeVisitor(gast.NodeVisitor):
return
ret
return
ret
# imp is deprecated in python3
from
importlib.machinery
import
SourceFileLoader
dygraph_class_to_static_api
=
{
dygraph_class_to_static_api
=
{
"CosineDecay"
:
"cosine_decay"
,
"CosineDecay"
:
"cosine_decay"
,
"ExponentialDecay"
:
"exponential_decay"
,
"ExponentialDecay"
:
"exponential_decay"
,
...
@@ -586,7 +585,10 @@ def ast_to_func(ast_root, dyfunc, delete_on_exit=True):
...
@@ -586,7 +585,10 @@ def ast_to_func(ast_root, dyfunc, delete_on_exit=True):
DEL_TEMP_DIR
=
False
DEL_TEMP_DIR
=
False
func_name
=
dyfunc
.
__name__
func_name
=
dyfunc
.
__name__
module
=
SourceFileLoader
(
module_name
,
f
.
name
).
load_module
()
loader
=
SourceFileLoader
(
module_name
,
f
.
name
)
spec
=
importlib
.
util
.
spec_from_loader
(
loader
.
name
,
loader
)
module
=
importlib
.
util
.
module_from_spec
(
spec
)
loader
.
exec_module
(
module
)
# The 'forward' or 'another_forward' of 'TranslatedLayer' cannot be obtained
# The 'forward' or 'another_forward' of 'TranslatedLayer' cannot be obtained
# through 'func_name'. So set the special function name '__i_m_p_l__'.
# through 'func_name'. So set the special function name '__i_m_p_l__'.
if
hasattr
(
module
,
'__i_m_p_l__'
):
if
hasattr
(
module
,
'__i_m_p_l__'
):
...
...
python/paddle/utils/cpp_extension/extension_utils.py
浏览文件 @
57ad9b46
...
@@ -16,6 +16,7 @@ import atexit
...
@@ -16,6 +16,7 @@ import atexit
import
collections
import
collections
import
glob
import
glob
import
hashlib
import
hashlib
import
importlib.util
import
json
import
json
import
logging
import
logging
import
os
import
os
...
@@ -1070,7 +1071,9 @@ def _load_module_from_file(api_file_path, module_name, verbose=False):
...
@@ -1070,7 +1071,9 @@ def _load_module_from_file(api_file_path, module_name, verbose=False):
# load module with RWLock
# load module with RWLock
loader
=
machinery
.
SourceFileLoader
(
ext_name
,
api_file_path
)
loader
=
machinery
.
SourceFileLoader
(
ext_name
,
api_file_path
)
module
=
loader
.
load_module
()
spec
=
importlib
.
util
.
spec_from_loader
(
loader
.
name
,
loader
)
module
=
importlib
.
util
.
module_from_spec
(
spec
)
loader
.
exec_module
(
module
)
return
module
return
module
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录