Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
571a63e7
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看板
未验证
提交
571a63e7
编写于
10月 29, 2020
作者:
J
joanna.wozna.intel
提交者:
GitHub
10月 29, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add bf16 transpose2, reshape2, concat ops (#28195)
上级
e8f2614d
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
260 addition
and
6 deletion
+260
-6
paddle/fluid/framework/ir/graph_pattern_detector.cc
paddle/fluid/framework/ir/graph_pattern_detector.cc
+2
-1
paddle/fluid/framework/ir/mkldnn/cpu_bfloat16_placement_pass_tester.cc
...framework/ir/mkldnn/cpu_bfloat16_placement_pass_tester.cc
+11
-4
paddle/fluid/operators/mkldnn/concat_mkldnn_op.cc
paddle/fluid/operators/mkldnn/concat_mkldnn_op.cc
+1
-0
paddle/fluid/operators/mkldnn/transpose_mkldnn_op.cc
paddle/fluid/operators/mkldnn/transpose_mkldnn_op.cc
+5
-0
paddle/fluid/operators/reshape_op.cc
paddle/fluid/operators/reshape_op.cc
+3
-1
python/paddle/fluid/tests/unittests/mkldnn/test_concat_bf16_mkldnn_op.py
...luid/tests/unittests/mkldnn/test_concat_bf16_mkldnn_op.py
+110
-0
python/paddle/fluid/tests/unittests/mkldnn/test_reshape_bf16_op.py
...ddle/fluid/tests/unittests/mkldnn/test_reshape_bf16_op.py
+62
-0
python/paddle/fluid/tests/unittests/mkldnn/test_transpose_bf16_mkldnn_op.py
...d/tests/unittests/mkldnn/test_transpose_bf16_mkldnn_op.py
+66
-0
未找到文件。
paddle/fluid/framework/ir/graph_pattern_detector.cc
浏览文件 @
571a63e7
...
...
@@ -2101,7 +2101,8 @@ PDNode *patterns::QuantizePlacement::operator()(
PDNode
*
patterns
::
Bfloat16Placement
::
operator
()(
const
std
::
unordered_set
<
std
::
string
>
&
bfloat16_enabled_op_types
)
{
std
::
unordered_set
<
std
::
string
>
supported_op_types
=
std
::
unordered_set
<
std
::
string
>
({
"conv2d"
,
"fusion_gru"
});
std
::
unordered_set
<
std
::
string
>
(
{
"concat"
,
"conv2d"
,
"fusion_gru"
,
"reshape2"
,
"transpose2"
});
if
(
!
bfloat16_enabled_op_types
.
empty
())
{
supported_op_types
=
bfloat16_enabled_op_types
;
}
...
...
paddle/fluid/framework/ir/mkldnn/cpu_bfloat16_placement_pass_tester.cc
浏览文件 @
571a63e7
...
...
@@ -40,6 +40,10 @@ void SetOp(ProgramDesc* prog, const std::string& type, const std::string& name,
op
->
SetInput
(
"X"
,
{
inputs
[
0
],
inputs
[
1
]});
}
else
if
(
type
==
"pool2d"
)
{
op
->
SetInput
(
"X"
,
{
inputs
[
0
]});
}
else
if
(
type
==
"transpose2"
)
{
op
->
SetInput
(
"X"
,
{
inputs
[
0
]});
}
else
if
(
type
==
"reshape2"
)
{
op
->
SetInput
(
"X"
,
{
inputs
[
0
]});
}
else
{
FAIL
()
<<
"Unexpected operator type."
;
}
...
...
@@ -57,8 +61,8 @@ void SetOp(ProgramDesc* prog, const std::string& type, const std::string& name,
ProgramDesc
BuildProgramDesc
()
{
ProgramDesc
prog
;
for
(
auto
&
v
:
std
::
vector
<
std
::
string
>
({
"a"
,
"b"
,
"c"
,
"f"
,
"g"
,
"h"
,
"k"
,
"l
"
}))
{
for
(
auto
&
v
:
std
::
vector
<
std
::
string
>
(
{
"a"
,
"b"
,
"c"
,
"f"
,
"g"
,
"h"
,
"k"
,
"l"
,
"m"
,
"n"
,
"o"
,
"p
"
}))
{
prog
.
MutableBlock
(
0
)
->
Var
(
v
);
}
...
...
@@ -68,6 +72,9 @@ ProgramDesc BuildProgramDesc() {
SetOp
(
&
prog
,
"pool2d"
,
"pool1"
,
{
"g"
},
{
"h"
});
SetOp
(
&
prog
,
"conv2d"
,
"conv2"
,
{
"h"
},
{
"k"
});
SetOp
(
&
prog
,
"pool2d"
,
"pool2"
,
{
"k"
},
{
"l"
});
SetOp
(
&
prog
,
"concat"
,
"concat2"
,
{
"l"
,
"m"
},
{
"n"
});
SetOp
(
&
prog
,
"transpose2"
,
"transpose"
,
{
"n"
},
{
"o"
});
SetOp
(
&
prog
,
"reshape2"
,
"reshape"
,
{
"o"
},
{
"p"
});
return
prog
;
}
...
...
@@ -115,7 +122,7 @@ void DefaultAttrTest(unsigned expected_bfloat16_data_type_count) {
}
TEST
(
Bfloat16PlacementPass
,
enable_all
)
{
MainTest
({
"conv2d"
,
"pool2d"
,
"relu"
,
"concat"
},
6
);
MainTest
({
"conv2d"
,
"pool2d"
,
"relu"
,
"concat"
},
7
);
}
TEST
(
Bfloat16PlacementPass
,
enabled_conv_and_pool
)
{
...
...
@@ -123,7 +130,7 @@ TEST(Bfloat16PlacementPass, enabled_conv_and_pool) {
MainTest
({
"conv2d"
,
"pool2d"
},
3
);
}
TEST
(
Bfloat16PlacementPass
,
default_attr_value
)
{
DefaultAttrTest
(
0
);
}
TEST
(
Bfloat16PlacementPass
,
default_attr_value
)
{
DefaultAttrTest
(
5
);
}
}
// namespace ir
}
// namespace framework
...
...
paddle/fluid/operators/mkldnn/concat_mkldnn_op.cc
浏览文件 @
571a63e7
...
...
@@ -221,5 +221,6 @@ namespace ops = paddle::operators;
REGISTER_OP_KERNEL
(
concat
,
MKLDNN
,
::
paddle
::
platform
::
CPUPlace
,
ops
::
ConcatMKLDNNOpKernel
<
float
>
,
ops
::
ConcatMKLDNNOpKernel
<
paddle
::
platform
::
bfloat16
>
,
ops
::
ConcatMKLDNNOpKernel
<
int8_t
>
,
ops
::
ConcatMKLDNNOpKernel
<
uint8_t
>
);
paddle/fluid/operators/mkldnn/transpose_mkldnn_op.cc
浏览文件 @
571a63e7
...
...
@@ -142,6 +142,11 @@ REGISTER_OP_KERNEL_WITH_CUSTOM_TYPE(transpose2, MKLDNN,
ops
::
kTransposeMKLDNNINT8
,
ops
::
TransposeMKLDNNOpKernel
<
int8_t
>
);
REGISTER_OP_KERNEL_WITH_CUSTOM_TYPE
(
transpose2
,
MKLDNN
,
::
paddle
::
platform
::
CPUPlace
,
BF16
,
ops
::
kTransposeMKLDNNFP32
,
ops
::
TransposeMKLDNNOpKernel
<
paddle
::
platform
::
bfloat16
>
);
REGISTER_OP_KERNEL
(
transpose
,
MKLDNN
,
::
paddle
::
platform
::
CPUPlace
,
ops
::
TransposeMKLDNNOpKernel
<
float
>
);
...
...
paddle/fluid/operators/reshape_op.cc
浏览文件 @
571a63e7
...
...
@@ -622,7 +622,9 @@ REGISTER_OP_CPU_KERNEL_FUNCTOR(reshape2, float, ops::ReshapeKernel, double,
ops
::
ReshapeKernel
,
int8_t
,
ops
::
ReshapeKernel
,
uint8_t
,
ops
::
ReshapeKernel
,
int
,
ops
::
ReshapeKernel
,
int64_t
,
ops
::
ReshapeKernel
,
bool
,
ops
::
ReshapeKernel
);
bool
,
ops
::
ReshapeKernel
,
paddle
::
platform
::
bfloat16
,
ops
::
ReshapeKernel
);
REGISTER_OP_CPU_KERNEL_FUNCTOR
(
reshape2_grad
,
float
,
ops
::
ReshapeGradKernel
,
double
,
ops
::
ReshapeGradKernel
,
int
,
ops
::
ReshapeGradKernel
,
int64_t
,
...
...
python/paddle/fluid/tests/unittests/mkldnn/test_concat_bf16_mkldnn_op.py
0 → 100644
浏览文件 @
571a63e7
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
from
__future__
import
print_function
import
unittest
import
numpy
as
np
import
struct
import
paddle.fluid.core
as
core
from
paddle.fluid.tests.unittests.op_test
import
OpTest
,
convert_float_to_uint16
from
paddle
import
enable_static
@
unittest
.
skipIf
(
not
core
.
supports_bfloat16
(),
"place does not support BF16 evaluation"
)
class
TestConcatBf16Op
(
OpTest
):
def
setUp
(
self
):
enable_static
()
self
.
op_type
=
"concat"
self
.
use_mkldnn
=
True
self
.
mkldnn_data_type
=
"bfloat16"
self
.
init_axis
()
self
.
init_shape
()
self
.
init_test_data
()
self
.
inputs
=
{
'X'
:
[(
'x0'
,
self
.
x0
),
(
'x1'
,
self
.
x1
),
(
'x2'
,
self
.
x2
)]}
self
.
attrs
=
{
'axis'
:
self
.
axis
,
'use_mkldnn'
:
True
,
'mkldnn_data_type'
:
self
.
mkldnn_data_type
}
self
.
output
=
np
.
concatenate
(
(
self
.
x0
,
self
.
x1
,
self
.
x2
),
axis
=
self
.
axis
).
astype
(
np
.
uint16
)
self
.
outputs
=
{
'Out'
:
self
.
output
}
def
test_check_output
(
self
):
self
.
check_output_with_place
(
core
.
CPUPlace
())
# --------------------test concat bf16 in with axis 0--------------------
def
init_test_data
(
self
):
self
.
x0
=
convert_float_to_uint16
(
np
.
random
.
random
(
self
.
x0_shape
).
astype
(
np
.
float32
))
self
.
x1
=
convert_float_to_uint16
(
np
.
random
.
random
(
self
.
x1_shape
).
astype
(
np
.
float32
))
self
.
x2
=
convert_float_to_uint16
(
np
.
random
.
random
(
self
.
x2_shape
).
astype
(
np
.
float32
))
def
init_axis
(
self
):
self
.
axis
=
0
def
init_shape
(
self
):
self
.
x0_shape
=
[
2
,
2
,
1
,
2
]
self
.
x1_shape
=
[
1
,
2
,
1
,
2
]
self
.
x2_shape
=
[
3
,
2
,
1
,
2
]
# --------------------test concat bf16 in with axis 1--------------------
class
TestAxis1Case
(
TestConcatBf16Op
):
def
init_axis
(
self
):
self
.
axis
=
1
def
init_shape
(
self
):
self
.
x0_shape
=
[
1
,
1
,
5
,
5
]
self
.
x1_shape
=
[
1
,
2
,
5
,
5
]
self
.
x2_shape
=
[
1
,
3
,
5
,
5
]
# --------------------test concat bf16 in with axis 2--------------------
class
TestAxis2Case
(
TestConcatBf16Op
):
def
init_axis
(
self
):
self
.
axis
=
2
def
init_shape
(
self
):
self
.
x0_shape
=
[
2
,
3
,
4
,
5
]
self
.
x1_shape
=
[
2
,
3
,
5
,
5
]
self
.
x2_shape
=
[
2
,
3
,
6
,
5
]
# --------------------test concat bf16 in with axis 3--------------------
class
TestAxis3Case
(
TestConcatBf16Op
):
def
init_axis
(
self
):
self
.
axis
=
3
def
init_shape
(
self
):
self
.
x0_shape
=
[
2
,
3
,
5
,
5
]
self
.
x1_shape
=
[
2
,
3
,
5
,
6
]
self
.
x2_shape
=
[
2
,
3
,
5
,
7
]
if
__name__
==
'__main__'
:
unittest
.
main
()
python/paddle/fluid/tests/unittests/mkldnn/test_reshape_bf16_op.py
0 → 100644
浏览文件 @
571a63e7
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
from
__future__
import
print_function
import
unittest
import
numpy
as
np
import
struct
import
paddle.fluid.core
as
core
from
paddle.fluid.tests.unittests.op_test
import
OpTest
,
convert_float_to_uint16
from
paddle
import
enable_static
@
unittest
.
skipIf
(
not
core
.
supports_bfloat16
(),
"place does not support BF16 evaluation"
)
class
TestReshapeBf16Op
(
OpTest
):
def
setUp
(
self
):
enable_static
()
self
.
op_type
=
"reshape2"
self
.
use_mkldnn
=
True
self
.
mkldnn_data_type
=
"bfloat16"
self
.
init_data
()
self
.
init_input_data
()
self
.
inputs
=
{
'X'
:
self
.
input_data
}
self
.
attrs
=
{
'shape'
:
self
.
new_shape
,
'use_mkldnn'
:
self
.
use_mkldnn
,
'mkldnn_data_type'
:
self
.
mkldnn_data_type
}
self
.
outputs
=
{
"Out"
:
self
.
inputs
[
"X"
].
reshape
(
self
.
infered_shape
),
'XShape'
:
np
.
random
.
random
(
self
.
ori_shape
).
astype
(
np
.
float32
)
}
def
init_data
(
self
):
self
.
ori_shape
=
(
10
,
2
,
6
)
self
.
new_shape
=
(
10
,
0
,
3
,
-
1
)
self
.
infered_shape
=
(
10
,
2
,
3
,
-
1
)
def
init_input_data
(
self
):
self
.
input_data
=
convert_float_to_uint16
(
np
.
random
.
random
(
self
.
ori_shape
).
astype
(
np
.
float32
))
def
test_check_output
(
self
):
self
.
check_output_with_place
(
core
.
CPUPlace
(),
no_check_set
=
[
'XShape'
])
if
__name__
==
'__main__'
:
unittest
.
main
()
python/paddle/fluid/tests/unittests/mkldnn/test_transpose_bf16_mkldnn_op.py
0 → 100644
浏览文件 @
571a63e7
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
from
__future__
import
print_function
import
unittest
import
numpy
as
np
import
paddle.fluid.core
as
core
from
paddle.fluid.tests.unittests.op_test
import
OpTest
,
convert_float_to_uint16
from
paddle
import
enable_static
@
unittest
.
skipIf
(
not
core
.
supports_bfloat16
(),
"place does not support BF16 evaluation"
)
class
TestTransposeOp
(
OpTest
):
def
setUp
(
self
):
enable_static
()
self
.
op_type
=
"transpose2"
self
.
use_mkldnn
=
True
self
.
mkldnn_data_type
=
"bfloat16"
self
.
init_test_case
()
self
.
init_test_data
()
self
.
axis
=
(
0
,
2
,
3
,
1
)
self
.
inputs
=
{
'X'
:
self
.
input_data
}
self
.
attrs
=
{
'axis'
:
list
(
self
.
axis
),
'use_mkldnn'
:
self
.
use_mkldnn
,
'mkldnn_data_type'
:
self
.
mkldnn_data_type
}
self
.
outputs
=
{
'XShape'
:
np
.
random
.
random
(
self
.
shape
).
astype
(
np
.
uint16
),
'Out'
:
self
.
inputs
[
'X'
].
transpose
(
self
.
axis
)
}
def
test_check_output
(
self
):
self
.
check_output_with_place
(
core
.
CPUPlace
(),
no_check_set
=
[
'XShape'
])
def
init_test_case
(
self
):
self
.
shape
=
(
2
,
3
,
4
,
5
)
def
init_test_data
(
self
):
self
.
input_data
=
convert_float_to_uint16
(
np
.
random
.
random
(
self
.
shape
).
astype
(
np
.
float32
))
class
TestBF16Case
(
TestTransposeOp
):
def
init_test_case
(
self
):
self
.
shape
=
(
2
,
4
,
6
,
8
)
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录