!8979 gpu dynamic shape testing op min shape fix

From: @peilin-wang
Reviewed-by: @robingrosman,@tom__chen
Signed-off-by: @robingrosman
This commit is contained in:
mindspore-ci-bot 2020-11-25 21:18:40 +08:00 committed by Gitee
commit 04562809af
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ AbstractBasePtr InferImplGpuConvertToDynamicShape(const AnalysisEnginePtr &, con
ShapeVector input_shape = input->shape()->shape();
int32_t input_rank = input_shape.size();
ShapeVector inferred_shape(input_rank, Shape::SHP_ANY);
ShapeVector min_shape = {1};
ShapeVector min_shape(input_rank, 1);
ShapeVector max_shape = input_shape;
ShapePtr shape = std::make_shared<Shape>(inferred_shape, min_shape, max_shape);