Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
1460b761
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看板
未验证
提交
1460b761
编写于
11月 17, 2021
作者:
A
Aurelius84
提交者:
GitHub
11月 17, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix data transform bug in new executor (#37280)
上级
8c44ad47
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
3 addition
and
2 deletion
+3
-2
paddle/fluid/framework/new_executor/interpretercore_util.cc
paddle/fluid/framework/new_executor/interpretercore_util.cc
+1
-2
paddle/fluid/framework/new_executor/standalone_executor_test.cc
.../fluid/framework/new_executor/standalone_executor_test.cc
+2
-0
未找到文件。
paddle/fluid/framework/new_executor/interpretercore_util.cc
浏览文件 @
1460b761
...
@@ -289,7 +289,6 @@ std::tuple<std::string, OpFuncNode> apply_place_transform_for_var(
...
@@ -289,7 +289,6 @@ std::tuple<std::string, OpFuncNode> apply_place_transform_for_var(
const
OpKernelType
&
expected_kernel_key
,
const
platform
::
Place
&
place
,
const
OpKernelType
&
expected_kernel_key
,
const
platform
::
Place
&
place
,
const
std
::
string
&
var_name
,
const
std
::
string
&
outer_name
,
const
std
::
string
&
var_name
,
const
std
::
string
&
outer_name
,
const
OpFuncNode
&
op_func_node
,
Variable
*
var
,
VariableScope
*
var_scope
)
{
const
OpFuncNode
&
op_func_node
,
Variable
*
var
,
VariableScope
*
var_scope
)
{
auto
&
ins_name2id
=
op_func_node
.
input_index
;
auto
&
all_op_kernels
=
OperatorWithKernel
::
AllOpKernels
();
auto
&
all_op_kernels
=
OperatorWithKernel
::
AllOpKernels
();
platform
::
DeviceContextPool
&
pool
=
platform
::
DeviceContextPool
::
Instance
();
platform
::
DeviceContextPool
&
pool
=
platform
::
DeviceContextPool
::
Instance
();
std
::
string
new_var_name
=
std
::
string
new_var_name
=
...
@@ -307,7 +306,7 @@ std::tuple<std::string, OpFuncNode> apply_place_transform_for_var(
...
@@ -307,7 +306,7 @@ std::tuple<std::string, OpFuncNode> apply_place_transform_for_var(
:
is_gpu_place
(
expected_kernel_key
.
place_
)
?
1
:
-
1
;
:
is_gpu_place
(
expected_kernel_key
.
place_
)
?
1
:
-
1
;
std
::
map
<
std
::
string
,
std
::
vector
<
int
>>
copy_ins_name2id
;
std
::
map
<
std
::
string
,
std
::
vector
<
int
>>
copy_ins_name2id
;
copy_ins_name2id
[
"X"
]
=
ins_name2id
.
at
(
outer_name
)
;
copy_ins_name2id
[
"X"
]
=
{
var_scope
->
VarId
(
var_name
)}
;
std
::
map
<
std
::
string
,
std
::
vector
<
int
>>
copy_out_name2id
;
std
::
map
<
std
::
string
,
std
::
vector
<
int
>>
copy_out_name2id
;
copy_out_name2id
[
"Out"
]
=
{
var_scope
->
VarId
(
new_var_name
)};
copy_out_name2id
[
"Out"
]
=
{
var_scope
->
VarId
(
new_var_name
)};
...
...
paddle/fluid/framework/new_executor/standalone_executor_test.cc
浏览文件 @
1460b761
...
@@ -61,6 +61,8 @@ USE_OP(elementwise_max);
...
@@ -61,6 +61,8 @@ USE_OP(elementwise_max);
USE_OP
(
elementwise_div
);
USE_OP
(
elementwise_div
);
USE_OP
(
sgd
);
USE_OP
(
sgd
);
USE_OP
(
squared_l2_norm
);
USE_OP
(
squared_l2_norm
);
USE_OP
(
memcpy_h2d
);
USE_OP
(
memcpy_d2h
);
paddle
::
framework
::
ProgramDesc
load_from_file
(
const
std
::
string
&
file_name
)
{
paddle
::
framework
::
ProgramDesc
load_from_file
(
const
std
::
string
&
file_name
)
{
std
::
ifstream
fin
(
file_name
,
std
::
ios
::
in
|
std
::
ios
::
binary
);
std
::
ifstream
fin
(
file_name
,
std
::
ios
::
in
|
std
::
ios
::
binary
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录