Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
32f07216
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看板
未验证
提交
32f07216
编写于
5月 15, 2020
作者:
P
Pei Yang
提交者:
GitHub
5月 15, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bert bug using trt6 when compile with CUDA_ARCH_NAME=All (#24576)
test=develop Co-authored-by:
N
nhzlx
<
nhzlx.dragon@gmail.com
>
上级
db0c1ea8
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
4 addition
and
5 deletion
+4
-5
paddle/fluid/inference/tensorrt/convert/emb_eltwise_layernorm.cc
...fluid/inference/tensorrt/convert/emb_eltwise_layernorm.cc
+3
-3
paddle/fluid/inference/tensorrt/op_teller.cc
paddle/fluid/inference/tensorrt/op_teller.cc
+0
-1
paddle/fluid/inference/tests/api/trt_dynamic_shape_ernie_test.cc
...fluid/inference/tests/api/trt_dynamic_shape_ernie_test.cc
+1
-1
未找到文件。
paddle/fluid/inference/tensorrt/convert/emb_eltwise_layernorm.cc
浏览文件 @
32f07216
...
@@ -91,9 +91,9 @@ class EmbEltwiseLayerNormOpConverter : public OpConverter {
...
@@ -91,9 +91,9 @@ class EmbEltwiseLayerNormOpConverter : public OpConverter {
input_embs
,
bias
,
scale
,
emb_sizes
,
bias_size
,
scale_size
,
hidden
,
input_embs
,
bias
,
scale
,
emb_sizes
,
bias_size
,
scale_size
,
hidden
,
eps
);
eps
);
#else
#else
PADDLE_THROW
(
plugin
=
new
plugin
::
EmbEltwiseLayernormPluginDynamic
<
float
>
(
platform
::
errors
::
Fatal
(
"use EmbEltwiseLayernormPluginDynamic "
input_embs
,
bias
,
scale
,
emb_sizes
,
bias_size
,
scale_size
,
hidden
,
"FP16, but GPU doesn't have FP16."
)
);
eps
);
#endif
#endif
}
else
{
}
else
{
plugin
=
new
plugin
::
EmbEltwiseLayernormPluginDynamic
<
float
>
(
plugin
=
new
plugin
::
EmbEltwiseLayernormPluginDynamic
<
float
>
(
...
...
paddle/fluid/inference/tensorrt/op_teller.cc
浏览文件 @
32f07216
...
@@ -29,7 +29,6 @@ struct SimpleOpTypeSetTeller : public Teller {
...
@@ -29,7 +29,6 @@ struct SimpleOpTypeSetTeller : public Teller {
teller_set
.
insert
(
"fused_embedding_eltwise_layernorm"
);
teller_set
.
insert
(
"fused_embedding_eltwise_layernorm"
);
teller_set
.
insert
(
"multihead_matmul"
);
teller_set
.
insert
(
"multihead_matmul"
);
teller_set
.
insert
(
"skip_layernorm"
);
teller_set
.
insert
(
"skip_layernorm"
);
teller_set
.
insert
(
"slice"
);
#endif
#endif
}
}
...
...
paddle/fluid/inference/tests/api/trt_dynamic_shape_ernie_test.cc
浏览文件 @
32f07216
...
@@ -120,7 +120,7 @@ void trt_ernie(bool with_fp16, std::vector<float> result) {
...
@@ -120,7 +120,7 @@ void trt_ernie(bool with_fp16, std::vector<float> result) {
if
(
with_fp16
)
{
if
(
with_fp16
)
{
precision
=
AnalysisConfig
::
Precision
::
kHalf
;
precision
=
AnalysisConfig
::
Precision
::
kHalf
;
}
}
config
.
EnableTensorRtEngine
(
1
<<
30
,
1
,
1
,
precision
,
false
,
true
);
config
.
EnableTensorRtEngine
(
1
<<
30
,
1
,
5
,
precision
,
false
,
true
);
config
.
SetTRTDynamicShapeInfo
(
min_input_shape
,
max_input_shape
,
config
.
SetTRTDynamicShapeInfo
(
min_input_shape
,
max_input_shape
,
opt_input_shape
);
opt_input_shape
);
std
::
vector
<
float
>
out_data
;
std
::
vector
<
float
>
out_data
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录