Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
171da2ce
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2305
Star
20932
Fork
5423
代码
文件
提交
分支
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看板
未验证
提交
171da2ce
编写于
11月 25, 2021
作者:
L
Leo Chen
提交者:
GitHub
11月 25, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[new-exec] skip compiled program (#37512)
* skip compiled program * fix ut
上级
7db7a0ec
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
7 deletion
+8
-7
python/paddle/fluid/executor.py
python/paddle/fluid/executor.py
+7
-6
python/paddle/fluid/tests/unittests/interpreter/test_standalone_executor.py
...d/tests/unittests/interpreter/test_standalone_executor.py
+1
-1
未找到文件。
python/paddle/fluid/executor.py
浏览文件 @
171da2ce
...
...
@@ -1332,13 +1332,14 @@ class Executor(object):
def
_can_use_interpreter_core
(
program
,
place
):
compiled
=
isinstance
(
program
,
compiler
.
CompiledProgram
)
# NOTE(zhiqiu):
only single card compiled program is supported
# NOTE(zhiqiu):
do not support compiled program now
if
compiled
:
if
program
.
_is_data_parallel
and
len
(
program
.
_get_places
(
place
,
program
.
_places
))
==
1
:
return
True
else
:
return
False
return
False
# if program._is_data_parallel and len(
# program._get_places(place, program._places)) == 1:
# return True
# else:
# return False
else
:
assert
isinstance
(
program
,
Program
)
return
True
...
...
python/paddle/fluid/tests/unittests/interpreter/test_standalone_executor.py
浏览文件 @
171da2ce
...
...
@@ -261,7 +261,7 @@ class SwitchExecutorInterfaceWithFeed(unittest.TestCase):
def
test_compiled_program
(
self
):
data
=
np
.
ones
([
2
,
2
],
dtype
=
"float32"
)
feed
=
{
"a"
:
data
,
'fake_input'
:
data
}
feed
=
{
"a"
:
data
}
res
=
self
.
run_new_executor
(
feed
,
use_compiled
=
True
)
gt
=
self
.
run_raw_executor
(
feed
,
use_compiled
=
True
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录