- 23 6月, 2022 1 次提交
-
-
由 ccrrong 提交于
* add cast trt converter
-
- 20 6月, 2022 1 次提交
-
-
由 whs 提交于
-
- 17 6月, 2022 1 次提交
-
-
由 ccrrong 提交于
* add bilinear_interp_v2 converter
-
- 16 6月, 2022 1 次提交
-
-
由 zhoutianzi666 提交于
* add squeeze2 * add squeeze * add squeeze2,unsqueeze2 * merge develop * fix format * add conditions for squeeze2 and unsqueeze in op_teller * merge develop * add squeeze unsqueeze * add squeeze unsqueeze * add squeeze unsqueeze * remove unsqueeze2_eltwise_fuse_pass * add squeeze/unsqueeze
-
- 13 6月, 2022 1 次提交
-
-
由 津 提交于
-
- 09 6月, 2022 1 次提交
-
-
由 minghaoBD 提交于
-
- 04 6月, 2022 1 次提交
-
-
由 Sing_chan 提交于
-
- 02 6月, 2022 1 次提交
-
-
由 Wangzheee 提交于
* new general transformer inference support
-
- 20 5月, 2022 1 次提交
-
-
由 zhupengyang 提交于
-
- 17 5月, 2022 1 次提交
-
-
由 zhupengyang 提交于
-
- 12 5月, 2022 1 次提交
-
-
由 zhupengyang 提交于
-
- 13 4月, 2022 1 次提交
-
-
由 feng_shuai 提交于
* init roll convert * add ut for roll convert * roll convert don't support trt6.0 * fix: change ut for trt 7.0.0.1
-
- 12 4月, 2022 1 次提交
-
-
由 feng_shuai 提交于
* strided_slice * fix: compiler error because of size() * fix: warning * fix : warning * init input_shape * fix:forget punctuation
-
- 31 3月, 2022 1 次提交
-
-
由 wangxinxin08 提交于
* add multiclass_nms3 converter
-
- 16 2月, 2022 1 次提交
-
-
由 Wangzheee 提交于
[Paddle-Inference] support preln-ernie: add preln_emb_eltwise_layernorm_op, preln_skip_layernorm_op (#39570) * support preln_ernie: add preln_emb_eltwise_layernorm_op, preln_skip_layernorm_op * support preln_ernie: add preln_emb_eltwise_layernorm_op, preln_skip_layernorm_op
-
- 14 1月, 2022 1 次提交
-
-
由 heliqi 提交于
* add trt_convert_flatten_contiguous_rang op * trt version >7,support trt_convert_flatten_contiguous_rang * trt version >7,support trt_convert_flatten_contiguous_rang * trt version >7,support trt_convert_flatten_contiguous_rang * test cast add trt version >=7 skip
-
- 27 10月, 2021 1 次提交
-
-
由 wangxinxin08 提交于
* add dcnv2 plugin
-
- 26 10月, 2021 1 次提交
-
-
由 feng_shuai 提交于
-
- 19 10月, 2021 1 次提交
-
-
由 wangxinxin08 提交于
* add nearest_interp_v2 trt plugin
-
- 11 10月, 2021 1 次提交
-
-
由 wangxinxin08 提交于
* add mish trt plugin, compile & install success, run error. test=develop * modify code according to review * add TRT_NOEXCEPT for mish trt plugin * add unittest for mish trt plugin * remove unnecessary check of mish in op_teller.cc * fix some problem of trt8 * add check and modify unittest while converting mish to trt plugin Co-authored-by: Ndengkaipeng <dengkaipeng@baidu.com>
-
- 10 9月, 2021 1 次提交
-
-
由 wenbin 提交于
* conv3d * remove const_cast * modify ut * disable dynamic shape for trt6.0 * remove trt5
-
- 29 7月, 2021 1 次提交
-
-
由 wenbin 提交于
* tile op * more uts * disable tile if trt6.0 * typo * fix timeout issue * opteller * opteller remove duplicate code * comments. test=document_fix * modify PADDLE_ENFORCE. * fix reduce_mean issue
-
- 05 6月, 2021 1 次提交
-
-
由 Wilber 提交于
-
- 01 6月, 2021 1 次提交
-
-
由 Wangzheee 提交于
* add trt convert op: reshape * reshape * fix * input: Shape,ShapeTensor * Add some comments
-
- 01 4月, 2021 1 次提交
-
-
由 zlsh80826 提交于
* add anchor generator op plugin * add anchor generator unit_test * remove dbg info * remove redundant line * replace assertion with paddle enforce * dynamic plugin replaces assertion with paddle enforce * anchor generator support dynamic shape on spatial axis * anchor generator test with fp16, dynamic shape * add anchor generator test all * add back main * reduce test input size to not exceed the timelimit of ci * change super to InferencePassTest for python2 compatibility * reuse paddle operator anchor generator * move creator construct to header with default * add cuda ifdef * reduce line * change super to InferencePassTest for python2 compatibility * fix anchor generator fp16 serialize setting * split unittest from test_all * restrict anchor generator input format before version 7234 * anchor generator only support greater than trt7.1 * change min_graph_size to 2 * min_graph size to 3 if dynamic shape * reduce dynamic shape size to avoid trt search tactic too long to exceed time limit * remove anchor from fetch list * anchor generator support all trt version * fix memory not allocated but if serialized
-
- 30 3月, 2021 1 次提交
-
-
由 zlsh80826 提交于
* yolobox converter and plugin * yolobox unittest * add dynamic shape restriction * fix git merge log
-
- 29 3月, 2021 2 次提交
-
-
由 zlsh80826 提交于
* add roi_align_plugin * add roi align unit_test * add roi align serialization * remove roi align static plugin because of batch dim issue * refine roi align unittest and add fp16/serialization * add trt roi align condition to op_teller * refine error message * remove unnecessary reshape layer
-
由 zlsh80826 提交于
* trt affine channel converter * add trt affine channel base test * add trt affine channel NHWC * remove asterisk for python2 compatibility * trt affine channel converter * add trt affine channel base test * add trt affine channel NHWC * remove asterisk for python2 compatibility * fix rebase * move LodTensor to Tensor * add dbg info * affine channel converter only support NCHW * scale,bias are parameters, use create_parameters api * reduce test input size to not exceed the timelimit of ci * refine affine channel unittest and add serialization/dynamic test * change super to InferencePassTest for python2 compatibility * change super to InferencePassTest for python2 compatibility * fix affine channel fp16 serialize setting
-
- 26 3月, 2021 1 次提交
-
-
由 zlsh80826 提交于
* add multiclass_nms * add multiclass_nms unittest * add default enable_tensorrt_oss option * refine multiclas nms unittest and add serialization/dynamic test * change super to InferencePassTest for python2 compatibility * refine multiclass nms unittest * move out dynamic shape test due to ci timelimit
-
- 22 3月, 2021 1 次提交
-
-
由 zlsh80826 提交于
* nearest_interp op converter w/ dynamic/static * fix data_layout include * add trt nearest unit_test * add nearest_interp NHWC test * update trt nearest interp nhwc testcase * remove asterisk for python2 compatibility * add empty line to prevent conflict * nearest_interp op converter w/ dynamic/static * fix data_layout include * add trt nearest unit_test * add nearest_interp NHWC test * update trt nearest interp nhwc testcase * remove asterisk for python2 compatibility * add empty line to prevent conflict * change the priority of out_h, out_w
-
- 18 3月, 2021 1 次提交
-
-
由 zlsh80826 提交于
* trt gather converter * add trt gather unit_test
-
- 24 2月, 2021 1 次提交
-
-
由 Pei Yang 提交于
* add group norm plugin * fix compile problems * move concat axis check to trt op teller * add nbDims for scale and bias nv dims * add group norm unit test * fix unittest * add trt version restriction for group norm op teller * fix unittest
-
- 18 2月, 2021 1 次提交
-
-
由 Pei Yang 提交于
-
- 07 12月, 2020 1 次提交
-
-
由 Pei Yang 提交于
-
- 03 11月, 2020 1 次提交
-
-
由 Shang Zhizhou 提交于
* fp16 result ok * change -DWITH_NVINFER_PLUGIN toconfig.EnableTensorRtOSS * auto detect special slice op converter for ernie with trt oss * ernie oss only support fp16 * fix special_slice_plugin serialize bug * matmul in tensorrt ok * ernie unittest ok * add matmul tensorrt unittest * remove demo code
-
- 01 9月, 2020 1 次提交
-
-
由 zlsh80826 提交于
* add stack_op to CMakeLists * add dim=3 support for scale op * add trt stack op, test=develop * remove debug message * add stack plugin serialize * remove slice, scale op, will add later * enhence error message * revise trt ernie test to conver the stack op CI testi, test=develop * add stack op serialization * fix test shape after adding stack op * remove slice op, will add after implementing serialization * roll back to min_graph=5 to avoid using slice op * fix scale op output layer * implement stack op createPlugin * use workspace and move the defination to .cu * move stack plugin creator definition to .cu, test=develop
-
- 19 4月, 2020 1 次提交
-
-
由 Zhaolong Xing 提交于
* refine ernie trt dynamic shape support 1. add slice op converter 2. add emb eltwise layernorm fp16 support test=develop * fix dynamic shape test ut test=develop * fix comments. test=develop * fix comments test=develop
-
- 14 4月, 2020 1 次提交
-
-
由 Pei Yang 提交于
* add hard_sigmoid trt op converter * add hard_swish op converter and plugin. test=develop * add macro to adapt lower trt version. test=develop
-
- 12 4月, 2020 1 次提交
-
-
由 Zhaolong Xing 提交于
* add elementwise pool2d, prelu, shuffle channel test=develop * add scale and refine concat eltwise conveter test=develop * refine elementwise converter test=develop * refine ut test and enforce error. test=develop * modify const cast test=develop
-
- 08 4月, 2020 1 次提交
-