Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
4dfbdb04
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2305
Star
20932
Fork
5423
代码
文件
提交
分支
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看板
未验证
提交
4dfbdb04
编写于
3月 23, 2023
作者:
W
Wangzheee
提交者:
GitHub
3月 23, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add paddle-trt convert op: greater_equal (#52000)
上级
978d544b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
192 addition
and
2 deletion
+192
-2
paddle/fluid/inference/api/analysis_predictor.cc
paddle/fluid/inference/api/analysis_predictor.cc
+1
-0
paddle/fluid/inference/tensorrt/convert/elementwise_op.cc
paddle/fluid/inference/tensorrt/convert/elementwise_op.cc
+27
-0
paddle/fluid/inference/tensorrt/op_teller.cc
paddle/fluid/inference/tensorrt/op_teller.cc
+5
-2
python/paddle/fluid/tests/unittests/ir/inference/test_trt_convert_compare_and_logical.py
...ests/ir/inference/test_trt_convert_compare_and_logical.py
+159
-0
未找到文件。
paddle/fluid/inference/api/analysis_predictor.cc
浏览文件 @
4dfbdb04
...
...
@@ -2404,6 +2404,7 @@ USE_TRT_CONVERTER(logical_or);
USE_TRT_CONVERTER
(
logical_xor
);
USE_TRT_CONVERTER
(
logical_and
);
USE_TRT_CONVERTER
(
less_equal
);
USE_TRT_CONVERTER
(
greater_equal
);
USE_TRT_CONVERTER
(
transpose
);
USE_TRT_CONVERTER
(
transpose2
);
USE_TRT_CONVERTER
(
flatten
);
...
...
paddle/fluid/inference/tensorrt/convert/elementwise_op.cc
100755 → 100644
浏览文件 @
4dfbdb04
...
...
@@ -162,6 +162,26 @@ class ElementwiseTensorOpConverter : public OpConverter {
*
(
equal_layer
->
getOutput
(
0
)),
nvinfer1
::
ElementWiseOperation
::
kOR
);
RreplenishLayerAndOutput
(
layer
,
"elementwise"
,
{
output_name
},
test_mode
);
}
else
if
(
op_type_
==
"greater_equal"
)
{
auto
*
greater_layer
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
ElementWise
,
*
X
,
*
reshape_y_tensor
,
nvinfer1
::
ElementWiseOperation
::
kGREATER
);
auto
*
equal_layer
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
ElementWise
,
*
X
,
*
reshape_y_tensor
,
nvinfer1
::
ElementWiseOperation
::
kEQUAL
);
auto
*
layer
=
TRT_ENGINE_ADD_LAYER
(
engine_
,
ElementWise
,
*
(
greater_layer
->
getOutput
(
0
)),
*
(
equal_layer
->
getOutput
(
0
)),
nvinfer1
::
ElementWiseOperation
::
kOR
);
RreplenishLayerAndOutput
(
layer
,
"elementwise"
,
{
output_name
},
test_mode
);
}
else
if
(
op_type_
==
"mod"
)
{
auto
*
div_layer
=
...
...
@@ -290,6 +310,11 @@ class ElementwiseTensorLessEqualOpConverter
public:
ElementwiseTensorLessEqualOpConverter
()
{
op_type_
=
"less_equal"
;
}
};
class
ElementwiseTensorGreaterEqualOpConverter
:
public
ElementwiseTensorOpConverter
{
public:
ElementwiseTensorGreaterEqualOpConverter
()
{
op_type_
=
"greater_equal"
;
}
};
class
ElementwiseTensorModOpConverter
:
public
ElementwiseTensorOpConverter
{
public:
ElementwiseTensorModOpConverter
()
{
op_type_
=
"mod"
;
}
...
...
@@ -342,3 +367,5 @@ REGISTER_TRT_OP_CONVERTER(logical_or, ElementwiseTensorLogicalOrOpConverter);
REGISTER_TRT_OP_CONVERTER
(
logical_xor
,
ElementwiseTensorLogicalXorOpConverter
);
REGISTER_TRT_OP_CONVERTER
(
logical_and
,
ElementwiseTensorLogicalAndOpConverter
);
REGISTER_TRT_OP_CONVERTER
(
less_equal
,
ElementwiseTensorLessEqualOpConverter
);
REGISTER_TRT_OP_CONVERTER
(
greater_equal
,
ElementwiseTensorGreaterEqualOpConverter
);
paddle/fluid/inference/tensorrt/op_teller.cc
浏览文件 @
4dfbdb04
...
...
@@ -1427,7 +1427,8 @@ struct SimpleOpTypeSetTeller : public Teller {
if
(
op_type
==
"less_than"
||
op_type
==
"greater_than"
||
op_type
==
"logical_or"
||
op_type
==
"logical_xor"
||
op_type
==
"logical_and"
||
op_type
==
"less_equal"
)
{
op_type
==
"logical_and"
||
op_type
==
"less_equal"
||
op_type
==
"greater_equal"
)
{
#if IS_TRT_VERSION_GE(8400)
// TRT does not support kEQUAL/kGREATER/kLESS work with implicit batch
if
(
!
with_dynamic_shape
)
{
...
...
@@ -1448,7 +1449,7 @@ struct SimpleOpTypeSetTeller : public Teller {
}
}
if
(
op_type
==
"less_than"
||
op_type
==
"greater_than"
||
op_type
==
"less_equal"
)
{
op_type
==
"less_equal"
||
op_type
==
"greater_equal"
)
{
if
(
x_dtype
==
framework
::
proto
::
VarType
::
BOOL
||
y_dtype
==
framework
::
proto
::
VarType
::
BOOL
)
{
VLOG
(
3
)
...
...
@@ -2767,6 +2768,7 @@ struct SimpleOpTypeSetTeller : public Teller {
"logical_xor"
,
"logical_and"
,
"less_equal"
,
"greater_equal"
,
"dropout"
,
"fill_any_like"
,
"prelu"
,
...
...
@@ -2923,6 +2925,7 @@ struct SimpleOpTypeSetTeller : public Teller {
"logical_xor"
,
"logical_and"
,
"less_equal"
,
"greater_equal"
,
"dropout"
,
"fill_any_like"
,
"prelu"
,
...
...
python/paddle/fluid/tests/unittests/ir/inference/test_trt_convert_compare_and_logical.py
浏览文件 @
4dfbdb04
...
...
@@ -481,6 +481,165 @@ class TrtConvertLessEqualTest(TrtLayerAutoScanTest):
self
.
run_test
()
class
TrtConvertGreaterEqualTest
(
TrtLayerAutoScanTest
):
def
is_program_valid
(
self
,
program_config
:
ProgramConfig
)
->
bool
:
return
True
def
sample_program_configs
(
self
):
def
generate_input
(
shape
):
return
np
.
random
.
random
(
shape
).
astype
(
np
.
float32
)
for
shape
in
[[
2
,
16
],
[
2
,
16
,
32
],
[
1
,
32
,
16
,
32
]]:
for
op_type
in
[
"greater_equal"
]:
for
axis
in
[
-
1
]:
self
.
dims
=
len
(
shape
)
dics
=
[
{
"axis"
:
axis
},
{
"in_dtype"
:
5
,
"out_dtype"
:
2
},
{
"in_dtype"
:
0
,
"out_dtype"
:
5
},
]
ops_config
=
[
{
"op_type"
:
"cast"
,
"op_inputs"
:
{
"X"
:
[
"input_data1"
]},
"op_outputs"
:
{
"Out"
:
[
"cast_output_data1"
]},
"op_attrs"
:
dics
[
1
],
"outputs_dtype"
:
{
"cast_output_data1"
:
np
.
int32
},
},
{
"op_type"
:
"cast"
,
"op_inputs"
:
{
"X"
:
[
"input_data2"
]},
"op_outputs"
:
{
"Out"
:
[
"cast_output_data2"
]},
"op_attrs"
:
dics
[
1
],
"outputs_dtype"
:
{
"cast_output_data2"
:
np
.
int32
},
},
{
"op_type"
:
op_type
,
"op_inputs"
:
{
"X"
:
[
"cast_output_data1"
],
"Y"
:
[
"cast_output_data2"
],
},
"op_outputs"
:
{
"Out"
:
[
"cast_output_data0"
]},
"op_attrs"
:
dics
[
0
],
},
{
"op_type"
:
"cast"
,
"op_inputs"
:
{
"X"
:
[
"cast_output_data0"
]},
"op_outputs"
:
{
"Out"
:
[
"output_data"
]},
"op_attrs"
:
dics
[
2
],
},
]
ops
=
self
.
generate_op_config
(
ops_config
)
program_config
=
ProgramConfig
(
ops
=
ops
,
weights
=
{},
inputs
=
{
"input_data1"
:
TensorConfig
(
data_gen
=
partial
(
generate_input
,
shape
)
),
"input_data2"
:
TensorConfig
(
data_gen
=
partial
(
generate_input
,
shape
)
),
},
outputs
=
[
"output_data"
],
)
yield
program_config
def
sample_predictor_configs
(
self
,
program_config
)
->
(
paddle_infer
.
Config
,
List
[
int
],
float
):
def
generate_dynamic_shape
(
attrs
):
if
self
.
dims
==
2
:
self
.
dynamic_shape
.
min_input_shape
=
{
"input_data1"
:
[
2
,
16
],
"input_data2"
:
[
2
,
16
],
}
self
.
dynamic_shape
.
max_input_shape
=
{
"input_data1"
:
[
2
,
16
],
"input_data2"
:
[
2
,
16
],
}
self
.
dynamic_shape
.
opt_input_shape
=
{
"input_data1"
:
[
2
,
16
],
"input_data2"
:
[
2
,
16
],
}
if
self
.
dims
==
3
:
self
.
dynamic_shape
.
min_input_shape
=
{
"input_data1"
:
[
2
,
16
,
32
],
"input_data2"
:
[
2
,
16
,
32
],
}
self
.
dynamic_shape
.
max_input_shape
=
{
"input_data1"
:
[
2
,
16
,
32
],
"input_data2"
:
[
2
,
16
,
32
],
}
self
.
dynamic_shape
.
opt_input_shape
=
{
"input_data1"
:
[
2
,
16
,
32
],
"input_data2"
:
[
2
,
16
,
32
],
}
if
self
.
dims
==
4
:
self
.
dynamic_shape
.
min_input_shape
=
{
"input_data1"
:
[
1
,
32
,
16
,
32
],
"input_data2"
:
[
1
,
32
,
16
,
32
],
}
self
.
dynamic_shape
.
max_input_shape
=
{
"input_data1"
:
[
1
,
32
,
16
,
32
],
"input_data2"
:
[
1
,
32
,
16
,
32
],
}
self
.
dynamic_shape
.
opt_input_shape
=
{
"input_data1"
:
[
1
,
32
,
16
,
32
],
"input_data2"
:
[
1
,
32
,
16
,
32
],
}
def
clear_dynamic_shape
():
self
.
dynamic_shape
.
max_input_shape
=
{}
self
.
dynamic_shape
.
min_input_shape
=
{}
self
.
dynamic_shape
.
opt_input_shape
=
{}
def
generate_trt_nodes_num
(
attrs
,
dynamic_shape
):
ver
=
paddle_infer
.
get_trt_compile_version
()
if
(
ver
[
0
]
*
1000
+
ver
[
1
]
*
100
+
ver
[
2
]
*
10
<
8400
or
not
dynamic_shape
):
return
2
,
5
else
:
return
1
,
3
attrs
=
[
program_config
.
ops
[
i
].
attrs
for
i
in
range
(
len
(
program_config
.
ops
))
]
# for static_shape
clear_dynamic_shape
()
self
.
trt_param
.
precision
=
paddle_infer
.
PrecisionType
.
Float32
yield
self
.
create_inference_config
(),
generate_trt_nodes_num
(
attrs
,
False
),
1e-5
self
.
trt_param
.
precision
=
paddle_infer
.
PrecisionType
.
Half
yield
self
.
create_inference_config
(),
generate_trt_nodes_num
(
attrs
,
False
),
(
1e-3
,
1e-3
)
# for dynamic_shape
generate_dynamic_shape
(
attrs
)
self
.
trt_param
.
precision
=
paddle_infer
.
PrecisionType
.
Float32
yield
self
.
create_inference_config
(),
generate_trt_nodes_num
(
attrs
,
True
),
1e-5
self
.
trt_param
.
precision
=
paddle_infer
.
PrecisionType
.
Half
yield
self
.
create_inference_config
(),
generate_trt_nodes_num
(
attrs
,
True
),
(
1e-3
,
1e-3
)
def
add_skip_trt_case
(
self
):
pass
def
test
(
self
):
self
.
add_skip_trt_case
()
self
.
run_test
()
class
TrtConvertCompareSkipTest
(
TrtLayerAutoScanTest
):
def
is_program_valid
(
self
,
program_config
:
ProgramConfig
)
->
bool
:
return
True
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录