From 7a85ced396b28ddf22e286a8f3c71a8eb1d65136 Mon Sep 17 00:00:00 2001 From: zhoutianzi666 <39978853+zhoutianzi666@users.noreply.github.com> Date: Mon, 18 Jul 2022 11:24:38 +0800 Subject: [PATCH] [Paddle-TRT] Fix cast (#44312) * fix_cast * fix_cast * commit --- paddle/fluid/inference/tensorrt/op_teller.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/paddle/fluid/inference/tensorrt/op_teller.cc b/paddle/fluid/inference/tensorrt/op_teller.cc index 05d0b41f14e..894e44fda94 100644 --- a/paddle/fluid/inference/tensorrt/op_teller.cc +++ b/paddle/fluid/inference/tensorrt/op_teller.cc @@ -2061,6 +2061,10 @@ bool OpTeller::Tell(const framework::ir::Node* node, } if (op_type == "cast") { +// trt 6015 result in Windows ppyolo_mbv3 TRT fp32 diff +#if !IS_TRT_VERSION_GE(7000) + return false; +#endif int in_dtype = BOOST_GET_CONST(int, desc.GetAttr("in_dtype")); int out_dtype = BOOST_GET_CONST(int, desc.GetAttr("out_dtype")); if ((in_dtype == 4 || in_dtype == 5) && out_dtype == 4) { -- GitLab