Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
2cff0e8a
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看板
未验证
提交
2cff0e8a
编写于
11月 04, 2022
作者:
J
Jacek Czaja
提交者:
GitHub
11月 04, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
slice & mul & requantize tensors to use mem_desc (#47617)
* slice & mul & requantize * - Fix to requentize test
上级
7c62d2ab
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
26 addition
and
25 deletion
+26
-25
paddle/fluid/operators/mkldnn/mul_mkldnn_op.cc
paddle/fluid/operators/mkldnn/mul_mkldnn_op.cc
+11
-9
paddle/fluid/operators/mkldnn/requantize_mkldnn_op.cc
paddle/fluid/operators/mkldnn/requantize_mkldnn_op.cc
+9
-4
paddle/fluid/operators/slice_op.cc
paddle/fluid/operators/slice_op.cc
+6
-12
未找到文件。
paddle/fluid/operators/mkldnn/mul_mkldnn_op.cc
浏览文件 @
2cff0e8a
...
...
@@ -199,15 +199,17 @@ class MulPrimitiveFactory {
const
ExecutionContext
&
ctx
)
{
Tensor
x_tmp
;
Tensor
data_matrix
;
MKLDNNMemoryFormat
src_fmt
=
data
->
format
();
MKLDNNMemoryFormat
dst_fmt
;
auto
src_mdesc
=
CreateMemDescriptor
<
T
>
(
data
,
src_fmt
);
if
((
data
->
dims
().
size
()
==
4
&&
src_fmt
!=
(
dst_fmt
=
MKLDNNMemoryFormat
::
nchw
))
||
(
data
->
dims
().
size
()
==
5
&&
src_fmt
!=
(
dst_fmt
=
MKLDNNMemoryFormat
::
ncdhw
)))
{
auto
dst_mdesc
=
CreateMemDescriptor
<
T
>
(
data
,
dst_fmt
);
// This code is enforcing plain (non-blocked) memory arrangement
// in order to flatten (reduce dimensionality) of Tensor later
auto
src_mdesc
=
data
->
mem_desc
();
auto
dst_mdesc
=
data
->
dims
().
size
()
>=
4
?
(
data
->
dims
().
size
()
==
5
?
CreateMemDescriptor
<
T
>
(
data
,
MKLDNNMemoryFormat
::
ncdhw
)
:
CreateMemDescriptor
<
T
>
(
data
,
MKLDNNMemoryFormat
::
nchw
))
:
src_mdesc
;
if
(
src_mdesc
!=
dst_mdesc
)
{
x_tmp
.
mutable_data
<
T
>
(
ctx
.
GetPlace
(),
data
->
memory_size
());
Reorder
(
src_mdesc
,
...
...
paddle/fluid/operators/mkldnn/requantize_mkldnn_op.cc
浏览文件 @
2cff0e8a
...
...
@@ -12,6 +12,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#include <iterator> // NOLINT
#include "dnnl.hpp" // NOLINT
#include "paddle/fluid/framework/data_layout_transform.h"
#include "paddle/fluid/framework/tensor.h"
...
...
@@ -85,15 +86,19 @@ class ReQuantOpKernel : public framework::OpKernel<T> {
const
T
*
input_data
=
input
->
data
<
T
>
();
if
(
reorder_p
==
nullptr
)
{
auto
dst_tz
=
phi
::
vectorize
(
output
->
dims
());
auto
src_dt
=
framework
::
ToMKLDNNDataType
(
framework
::
TransToProtoVarType
(
input
->
dtype
()));
auto
dst_dt
=
with_shift
?
framework
::
MKLDNNDataType
::
u8
:
src_dt
;
auto
src_md
=
platform
::
MKLDNNMemDesc
({
src_tz
},
src_dt
,
input
->
format
());
src_memory
=
std
::
make_shared
<
dnnl
::
memory
>
(
src_md
,
engine
,
to_void_cast
<
T
>
(
input_data
));
auto
dst_md
=
platform
::
MKLDNNMemDesc
({
dst_tz
},
dst_dt
,
input
->
format
());
input
->
mem_desc
(),
engine
,
to_void_cast
<
T
>
(
input_data
));
auto
xstrides
=
input
->
mem_desc
().
data
.
format_desc
.
blocking
.
strides
;
std
::
vector
<
dnnl_dim_t
>
vstrides
(
xstrides
,
xstrides
+
input
->
mem_desc
().
data
.
ndims
);
auto
dst_md
=
dnnl
::
memory
::
desc
({
src_tz
},
dst_dt
,
vstrides
);
dnnl
::
primitive_attr
attri
;
int
mask
=
0
;
...
...
paddle/fluid/operators/slice_op.cc
浏览文件 @
2cff0e8a
...
...
@@ -162,11 +162,9 @@ class SliceOp : public framework::OperatorWithKernel {
// reorders, because if blocked dimension is not divisible by 8 or
// 16(depending on which blocking format is used) submemory cannot be
// created, so in that scenario a fallback is needed
auto
tmp_md
=
dnnl
::
memory
::
desc
(
phi
::
vectorize
(
ctx
.
Input
<
phi
::
DenseTensor
>
(
"Input"
)
->
dims
()),
dnnl
::
memory
::
data_type
::
f32
,
ctx
.
Input
<
phi
::
DenseTensor
>
(
"Input"
)
->
format
());
if
(
tmp_md
.
data
.
format_desc
.
blocking
.
inner_nblks
==
0
)
if
(
ctx
.
Input
<
phi
::
DenseTensor
>
(
"Input"
)
->
mem_desc
()
.
data
.
format_desc
.
blocking
.
inner_nblks
==
0
)
return
framework
::
OpKernelType
(
input_data_type
,
ctx
.
GetPlace
(),
phi
::
DataLayout
::
kMKLDNN
,
...
...
@@ -337,13 +335,9 @@ class SliceOpGrad : public framework::OperatorWithKernel {
// reorders, because if blocked dimension is not divisible by 8 or
// 16(depending on which blocking format is used) submemory cannot be
// created, so in that scenario a fallback is needed
auto
tmp_md
=
dnnl
::
memory
::
desc
(
phi
::
vectorize
(
ctx
.
Input
<
phi
::
DenseTensor
>
(
framework
::
GradVarName
(
"Out"
))
->
dims
()),
dnnl
::
memory
::
data_type
::
f32
,
ctx
.
Input
<
phi
::
DenseTensor
>
(
framework
::
GradVarName
(
"Out"
))
->
format
());
if
(
tmp_md
.
data
.
format_desc
.
blocking
.
inner_nblks
==
0
)
if
(
ctx
.
Input
<
phi
::
DenseTensor
>
(
framework
::
GradVarName
(
"Out"
))
->
mem_desc
()
.
data
.
format_desc
.
blocking
.
inner_nblks
==
0
)
return
framework
::
OpKernelType
(
input_data_type
,
ctx
.
GetPlace
(),
phi
::
DataLayout
::
kMKLDNN
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录