Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
4b4d92ea
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看板
未验证
提交
4b4d92ea
编写于
2月 06, 2023
作者:
X
xiaoxiaohehe001
提交者:
GitHub
2月 06, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Paddle Inference] Add Hasattri check of op teller. (#50110)
* add_hasattri_check * add_hasattri_check
上级
d994d212
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
4 deletion
+21
-4
paddle/fluid/inference/tensorrt/op_teller.cc
paddle/fluid/inference/tensorrt/op_teller.cc
+21
-4
未找到文件。
paddle/fluid/inference/tensorrt/op_teller.cc
浏览文件 @
4b4d92ea
...
...
@@ -307,6 +307,9 @@ struct SimpleOpTypeSetTeller : public Teller {
VLOG
(
3
)
<<
"Deformable conv trt plugin does not support dynamic shape"
;
return
false
;
}
if
(
!
desc
.
HasAttr
(
"groups"
)
||
!
desc
.
HasAttr
(
"strides"
)
||
!
desc
.
HasAttr
(
"paddings"
))
return
false
;
auto
*
block
=
desc
.
Block
();
auto
input_name
=
desc
.
Input
(
"Input"
)[
0
];
auto
*
input_desc
=
block
->
FindVar
(
input_name
);
...
...
@@ -450,8 +453,10 @@ struct SimpleOpTypeSetTeller : public Teller {
const
auto
x_shape
=
x_var_desc
->
GetShape
();
}
if
(
op_type
==
"group_norm"
)
{
bool
has_attrs
=
(
desc
.
HasAttr
(
"epsilon"
)
&&
desc
.
HasAttr
(
"groups"
));
if
(
has_attrs
==
false
)
return
false
;
if
(
!
desc
.
HasAttr
(
"epsilon"
)
||
!
desc
.
HasAttr
(
"groups"
)
||
!
desc
.
HasAttr
(
"data_layout"
))
return
false
;
auto
registry
=
GetPluginRegistry
();
if
(
registry
==
nullptr
)
return
false
;
std
::
string
layout_str
=
...
...
@@ -534,6 +539,9 @@ struct SimpleOpTypeSetTeller : public Teller {
}
if
(
op_type
==
"flatten_contiguous_range"
)
{
if
(
!
with_dynamic_shape
)
{
if
(
!
desc
.
HasAttr
(
"start_axis"
)
||
!
desc
.
HasAttr
(
"stop_axis"
))
{
return
false
;
}
int
start_axis
=
PADDLE_GET_CONST
(
int
,
desc
.
GetAttr
(
"start_axis"
));
int
stop_axis
=
PADDLE_GET_CONST
(
int
,
desc
.
GetAttr
(
"stop_axis"
));
auto
x_var_name
=
desc
.
Input
(
"X"
)[
0
];
...
...
@@ -1250,7 +1258,9 @@ struct SimpleOpTypeSetTeller : public Teller {
VLOG
(
3
)
<<
"the fill_any_like does not support static shape yet"
;
return
false
;
}
int
dtype
=
PADDLE_GET_CONST
(
int
,
desc
.
GetAttr
(
"dtype"
));
int
dtype
=
desc
.
HasAttr
(
"dtype"
)
?
PADDLE_GET_CONST
(
int
,
desc
.
GetAttr
(
"dtype"
))
:
-
1
;
auto
*
block
=
desc
.
Block
();
auto
*
x_var_desc
=
block
->
FindVar
(
desc
.
Input
(
"X"
)[
0
]);
auto
input_type
=
x_var_desc
->
GetDataType
();
...
...
@@ -1601,7 +1611,9 @@ struct SimpleOpTypeSetTeller : public Teller {
fill_constant_inputs
.
end
())
{
if
(
desc
.
Input
(
"ShapeTensorList"
).
size
())
return
false
;
}
int
dtype
=
PADDLE_GET_CONST
(
int
,
desc
.
GetAttr
(
"dtype"
));
int
dtype
=
desc
.
HasAttr
(
"dtype"
)
?
PADDLE_GET_CONST
(
int
,
desc
.
GetAttr
(
"dtype"
))
:
5
;
// only support int32, int64, float32
if
(
!
(
dtype
==
2
||
dtype
==
3
||
dtype
==
5
))
{
return
false
;
...
...
@@ -1662,6 +1674,7 @@ struct SimpleOpTypeSetTeller : public Teller {
}
if
(
op_type
==
"pad"
)
{
if
(
!
desc
.
HasAttr
(
"pad_value"
)
||
!
desc
.
HasAttr
(
"paddings"
))
return
false
;
const
float
pad_value
=
PADDLE_GET_CONST
(
float
,
desc
.
GetAttr
(
"pad_value"
));
if
(
pad_value
!=
0.0
f
)
{
...
...
@@ -2257,6 +2270,7 @@ struct SimpleOpTypeSetTeller : public Teller {
return
false
;
}
#endif
std
::
vector
<
int
>
paddings
=
PADDLE_GET_CONST
(
std
::
vector
<
int
>
,
desc
.
GetAttr
(
"paddings"
));
...
...
@@ -2393,6 +2407,9 @@ struct SimpleOpTypeSetTeller : public Teller {
"static shape yet"
;
return
false
;
}
if
(
!
desc
.
HasAttr
(
"axis"
))
{
return
false
;
}
int
axis
=
PADDLE_GET_CONST
(
int
,
desc
.
GetAttr
(
"axis"
));
if
(
axis
==
0
)
{
return
false
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录