Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
ca9045f7
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看板
未验证
提交
ca9045f7
编写于
9月 07, 2023
作者:
K
kangguangli
提交者:
GitHub
9月 07, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[NewIR] optimize GetNameById in check_gc (#56964)
* optimize GetNameById in check_gc * remove debug code * fix * fix
上级
8c75039c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
20 addition
and
5 deletion
+20
-5
paddle/fluid/framework/new_executor/interpreter/interpreter_util.cc
...id/framework/new_executor/interpreter/interpreter_util.cc
+10
-0
paddle/fluid/framework/new_executor/interpreter/interpreter_util.h
...uid/framework/new_executor/interpreter/interpreter_util.h
+2
-0
paddle/fluid/framework/new_executor/new_ir_interpreter.cc
paddle/fluid/framework/new_executor/new_ir_interpreter.cc
+7
-5
paddle/fluid/framework/new_executor/new_ir_interpreter.h
paddle/fluid/framework/new_executor/new_ir_interpreter.h
+1
-0
未找到文件。
paddle/fluid/framework/new_executor/interpreter/interpreter_util.cc
浏览文件 @
ca9045f7
...
...
@@ -1218,6 +1218,16 @@ std::unordered_set<std::string> GetSpecialOpNames() {
};
}
void
BuildId2VarName
(
const
std
::
map
<
std
::
string
,
int
>&
var_name_2_id
,
std
::
unordered_map
<
int
,
std
::
string
>*
id_2_var_name
)
{
PADDLE_ENFORCE_NOT_NULL
(
id_2_var_name
,
phi
::
errors
::
InvalidArgument
(
"id2_var_name can not be null"
));
for
(
auto
[
var_name
,
id
]
:
var_name_2_id
)
{
id_2_var_name
->
insert
({
id
,
var_name
});
}
}
}
// namespace interpreter
}
// namespace framework
}
// namespace paddle
paddle/fluid/framework/new_executor/interpreter/interpreter_util.h
浏览文件 @
ca9045f7
...
...
@@ -116,6 +116,8 @@ void BuildOpFuncList(
void
BuildVariableScope
(
const
framework
::
BlockDesc
&
block
,
const
ExecutionConfig
&
execution_config
,
VariableScope
*
var_scope
);
void
BuildId2VarName
(
const
std
::
map
<
std
::
string
,
int
>&
var_name_2_id
,
std
::
unordered_map
<
int
,
std
::
string
>*
id_2_var_name
);
void
LogDeviceMemoryStats
(
const
platform
::
Place
&
place
);
...
...
paddle/fluid/framework/new_executor/new_ir_interpreter.cc
浏览文件 @
ca9045f7
...
...
@@ -194,11 +194,10 @@ std::string NewIRInterpreter::GetNameById(int id) const {
// typically when the target variable is not existed in the original program
// desc, but created by interpretercore.
// For example, created and used by d2h_copy or h2d_copy operator.
auto
it
=
std
::
find_if
(
var_name_2_id_
.
begin
(),
var_name_2_id_
.
end
(),
[
id
](
const
auto
&
pair
)
{
return
pair
.
second
==
id
;
});
if
(
it
!=
var_name_2_id_
.
end
())
{
return
it
->
first
;
auto
it
=
id_2_var_name_
.
find
(
id
);
if
(
it
!=
id_2_var_name_
.
end
())
{
return
it
->
second
;
}
return
""
;
}
...
...
@@ -925,6 +924,9 @@ FetchList NewIRInterpreter::Run(const std::vector<std::string>& feed_names,
&
variable_2_var_name_
,
&
var_name_2_id_
,
&
variable_list_
);
interpreter
::
BuildId2VarName
(
var_name_2_id_
,
&
id_2_var_name_
);
VLOG
(
4
)
<<
"Done BuildScope"
;
VLOG
(
4
)
<<
DebugValueInfo
();
...
...
paddle/fluid/framework/new_executor/new_ir_interpreter.h
浏览文件 @
ca9045f7
...
...
@@ -208,6 +208,7 @@ class NewIRInterpreter : public InterpreterBaseImpl {
variable_2_var_name_
;
std
::
map
<
std
::
string
,
int
>
var_name_2_id_
;
std
::
unordered_map
<
int
,
std
::
string
>
id_2_var_name_
;
std
::
vector
<
Variable
*>
variable_list_
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录