From 831b69d95f975cd20bb227d3ad193c9ba180dbd3 Mon Sep 17 00:00:00 2001 From: Sing_chan <51314274+betterpig@users.noreply.github.com> Date: Thu, 3 Mar 2022 14:08:47 +0800 Subject: [PATCH] reduce size of max_input_shape so that the ut can pass on win6 (#40088) --- .../tests/unittests/ir/inference/test_trt_convert_gather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/paddle/fluid/tests/unittests/ir/inference/test_trt_convert_gather.py b/python/paddle/fluid/tests/unittests/ir/inference/test_trt_convert_gather.py index 9bcbbf95990..852bb2ffa84 100644 --- a/python/paddle/fluid/tests/unittests/ir/inference/test_trt_convert_gather.py +++ b/python/paddle/fluid/tests/unittests/ir/inference/test_trt_convert_gather.py @@ -138,7 +138,7 @@ class TrtConvertGatherTest(TrtLayerAutoScanTest): "index_data": [1] } self.dynamic_shape.max_input_shape = { - "input_data": [128, 256, 128, 256], + "input_data": [128, 256, 64, 128], "index_data": [4] } self.dynamic_shape.opt_input_shape = { -- GitLab