Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
9b501736
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
9b501736
编写于
6月 10, 2019
作者:
Y
Yihua Xu
提交者:
Tao Luo
6月 10, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix the format issue when 'X' is not nchw. (#17833)
test=develop
上级
b888a4c5
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
36 addition
and
2 deletion
+36
-2
paddle/fluid/operators/elementwise/mkldnn/elementwise_add_mkldnn_op.cc
...operators/elementwise/mkldnn/elementwise_add_mkldnn_op.cc
+36
-2
未找到文件。
paddle/fluid/operators/elementwise/mkldnn/elementwise_add_mkldnn_op.cc
浏览文件 @
9b501736
...
...
@@ -16,6 +16,7 @@ limitations under the License. */
#include "paddle/fluid/operators/elementwise/elementwise_add_op.h"
#include "paddle/fluid/operators/elementwise/elementwise_op_function.h"
#include "paddle/fluid/framework/data_layout_transform.h"
#include "paddle/fluid/platform/mkldnn_helper.h"
namespace
paddle
{
...
...
@@ -53,12 +54,45 @@ class EltwiseAddMKLDNNKernel : public framework::OpKernel<T> {
// Execute default elementwise_add operator when
// broadcast operations need to performed.
if
(
x_dims
!=
y_dims_untrimed
)
{
Tensor
_x
;
mkldnn
::
memory
::
format
format
;
std
::
vector
<
int
>
src_x_tz
=
framework
::
vectorize2int
(
x_dims
);
if
((
src_x_tz
.
size
()
==
3
&&
x
->
format
()
!=
(
format
=
memory
::
format
::
ncw
))
||
(
src_x_tz
.
size
()
==
4
&&
x
->
format
()
!=
(
format
=
memory
::
format
::
nchw
))
||
(
src_x_tz
.
size
()
==
5
&&
x
->
format
()
!=
(
format
=
memory
::
format
::
ncdhw
)))
{
_x
.
Resize
(
x_dims
);
auto
user_x_memory_pd
=
memory
::
primitive_desc
(
{{
src_x_tz
},
memory
::
data_type
::
f32
,
x
->
format
()},
mkldnn_engine
);
auto
x_memory_pd
=
memory
::
primitive_desc
(
{{
src_x_tz
},
memory
::
data_type
::
f32
,
format
},
mkldnn_engine
);
auto
size
=
x_memory_pd
.
get_size
();
_x
.
mutable_data
<
T
>
(
ctx
.
GetPlace
(),
paddle
::
memory
::
Allocator
::
kDefault
,
size
);
auto
user_x_memory
=
memory
(
user_x_memory_pd
,
paddle
::
platform
::
to_void_cast
<
T
>
(
x_data
));
auto
x_memory
=
memory
(
x_memory_pd
,
paddle
::
platform
::
to_void_cast
<
T
>
(
_x
.
data
<
T
>
()));
auto
x_reorder
=
reorder
(
user_x_memory
,
x_memory
);
std
::
vector
<
primitive
>
pipeline
;
pipeline
.
push_back
(
x_reorder
);
stream
(
stream
::
kind
::
eager
).
submit
(
pipeline
).
wait
();
}
else
{
format
=
x
->
format
();
_x
.
ShareDataWith
(
*
x
);
}
auto
sum_func
=
[](
T
a
,
T
b
)
->
T
{
return
a
+
b
;
};
TransformFunctor
<
decltype
(
sum_func
),
T
,
paddle
::
platform
::
CPUDeviceContext
,
T
>
functor
(
x
,
y
,
z
,
&
_
x
,
y
,
z
,
ctx
.
template
device_context
<
paddle
::
platform
::
CPUDeviceContext
>(),
sum_func
);
...
...
@@ -78,7 +112,7 @@ class EltwiseAddMKLDNNKernel : public framework::OpKernel<T> {
functor
.
RunMidWise
(
n
,
pre
,
post
);
}
z
->
set_layout
(
DataLayout
::
kMKLDNN
);
z
->
set_format
(
x
->
format
()
);
z
->
set_format
(
format
);
}
else
{
PADDLE_ENFORCE
(
x
->
layout
()
==
DataLayout
::
kMKLDNN
&&
x
->
format
()
!=
memory
::
format
::
format_undef
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录