Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
db864f0b
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
未验证
提交
db864f0b
编写于
7月 22, 2022
作者:
Z
zhoutianzi666
提交者:
GitHub
7月 22, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
commit (#44534)
上级
1c0120e2
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
86 addition
and
18 deletion
+86
-18
paddle/fluid/inference/tensorrt/convert/fc_op.cc
paddle/fluid/inference/tensorrt/convert/fc_op.cc
+84
-16
python/paddle/fluid/tests/unittests/ir/inference/test_trt_convert_fc.py
...fluid/tests/unittests/ir/inference/test_trt_convert_fc.py
+2
-2
未找到文件。
paddle/fluid/inference/tensorrt/convert/fc_op.cc
浏览文件 @
db864f0b
...
@@ -333,6 +333,74 @@ class FcOpConverter : public OpConverter {
...
@@ -333,6 +333,74 @@ class FcOpConverter : public OpConverter {
if
(
!
engine_
->
with_dynamic_shape
())
{
if
(
!
engine_
->
with_dynamic_shape
())
{
x_num_col_dims
--
;
x_num_col_dims
--
;
}
}
// If use tensorrt'oss, the x_dim and x_num_col_dims need change, and can
// not add Shuffle layer in ernie's multihead.
if
(
x_dim
.
nbDims
==
4
&&
x_num_col_dims
==
1
)
{
if
(
enable_int8
||
support_int8
)
{
// add conv1x1 layer
nvinfer1
::
DimsHW
nv_ksize
(
1
,
1
);
auto
*
fc_layer_int8
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
Convolution
,
*
X
,
n_output
,
nv_ksize
,
weight
.
get
(),
bias
.
get
());
if
(
activation_type
==
"relu"
)
{
fc_layer_int8
->
setName
(
(
"ernie_fc_op_int8: Convolution (Output: "
+
output_name
+
")"
)
.
c_str
());
PADDLE_ENFORCE_EQ
(
op_desc
.
HasAttr
(
"out_threshold"
),
true
,
platform
::
errors
::
InvalidArgument
(
"must have out threshold in fc layers in int8 mode"
));
float
out_scale
=
0
;
if
(
enable_int8
)
{
out_scale
=
PADDLE_GET_CONST
(
float
,
op_desc
.
GetAttr
(
"out_threshold"
));
}
else
{
out_scale
=
PADDLE_GET_CONST
(
float
,
op_desc
.
GetAttr
(
"Out"
));
}
engine_
->
SetTensorDynamicRange
(
fc_layer_int8
->
getOutput
(
0
),
out_scale
);
nvinfer1
::
IActivationLayer
*
relu_layer_int8
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
Activation
,
*
(
fc_layer_int8
->
getOutput
(
0
)),
nvinfer1
::
ActivationType
::
kRELU
);
RreplenishLayerAndOutput
(
relu_layer_int8
,
"relu_after_ernie_fc_int8"
,
{
output_name
},
test_mode
);
}
else
{
RreplenishLayerAndOutput
(
fc_layer_int8
,
"ernie_fc_op_int8: Convolution"
,
{
output_name
},
test_mode
);
}
}
else
{
// add fc layer
auto
*
fc_layer_float
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
FullyConnected
,
*
X
,
n_output
,
weight
.
get
(),
bias
.
get
());
if
(
activation_type
==
"relu"
)
{
fc_layer_float
->
setName
(
(
"ernie_fc_op_float: (Output: "
+
output_name
+
")"
).
c_str
());
nvinfer1
::
IActivationLayer
*
relu_layer_float
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
Activation
,
*
(
fc_layer_float
->
getOutput
(
0
)),
nvinfer1
::
ActivationType
::
kRELU
);
RreplenishLayerAndOutput
(
relu_layer_float
,
"relu_after_ernie_fc_float"
,
{
output_name
},
test_mode
);
}
else
{
RreplenishLayerAndOutput
(
fc_layer_float
,
"ernie_fc_op_float"
,
{
output_name
},
test_mode
);
}
}
}
else
{
// need reshape input before and after fc
PADDLE_ENFORCE_GT
(
PADDLE_ENFORCE_GT
(
x_dim
.
nbDims
,
x_dim
.
nbDims
,
x_num_col_dims
,
x_num_col_dims
,
...
@@ -342,7 +410,6 @@ class FcOpConverter : public OpConverter {
...
@@ -342,7 +410,6 @@ class FcOpConverter : public OpConverter {
"x_dim.nbDims : %d, x_num_col_dims : %d."
,
"x_dim.nbDims : %d, x_num_col_dims : %d."
,
x_dim
.
nbDims
,
x_dim
.
nbDims
,
x_num_col_dims
));
x_num_col_dims
));
// need reshape input before and after fc
auto
*
reshape_before_fc_layer
=
auto
*
reshape_before_fc_layer
=
reshape_before_fc
(
X
,
x_dim
,
x_num_col_dims
,
output_name
);
reshape_before_fc
(
X
,
x_dim
,
x_num_col_dims
,
output_name
);
auto
*
reshape_itensor
=
reshape_before_fc_layer
->
getOutput
(
0
);
auto
*
reshape_itensor
=
reshape_before_fc_layer
->
getOutput
(
0
);
...
@@ -351,6 +418,7 @@ class FcOpConverter : public OpConverter {
...
@@ -351,6 +418,7 @@ class FcOpConverter : public OpConverter {
}
}
regist_fc
(
reshape_itensor
,
n_output
,
weight
,
bias
);
regist_fc
(
reshape_itensor
,
n_output
,
weight
,
bias
);
}
}
}
};
};
}
// namespace tensorrt
}
// namespace tensorrt
...
...
python/paddle/fluid/tests/unittests/ir/inference/test_trt_convert_fc.py
浏览文件 @
db864f0b
...
@@ -249,9 +249,9 @@ class TrtConvertFcTest2(TrtLayerAutoScanTest):
...
@@ -249,9 +249,9 @@ class TrtConvertFcTest2(TrtLayerAutoScanTest):
# this is the special case when x_dim.nbDims == 4 && x_num_col_dims == 1
# this is the special case when x_dim.nbDims == 4 && x_num_col_dims == 1
class
TrtConvertFcTest3
(
TrtLayerAutoScanTest
):
class
TrtConvertFcTest3
(
TrtLayerAutoScanTest
):
# this case will invoke a bug in fc_op.cc, so return False
def
is_program_valid
(
self
,
program_config
:
ProgramConfig
)
->
bool
:
def
is_program_valid
(
self
,
program_config
:
ProgramConfig
)
->
bool
:
return
Tru
e
return
Fals
e
def
sample_program_configs
(
self
):
def
sample_program_configs
(
self
):
self
.
trt_param
.
workspace_size
=
1073741824
self
.
trt_param
.
workspace_size
=
1073741824
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录