Unverified Commit 8f40bb5d authored by Evgenya Stepyreva's avatar Evgenya Stepyreva Committed by GitHub

Set output shape of Deconv with dynamic input (#4331)

* Set output shape of Deconv with dynamic input

* Trigger CI
parent bb665f19
......@@ -404,6 +404,10 @@ void op::v1::ConvolutionBackpropData::validate_and_infer_types()
output_shape.insert(output_shape.begin(), data_shape.at(0));
output_pshape = output_shape;
}
else
{
output_pshape = PartialShape::dynamic(data_pshape.rank());
}
}
set_input_is_relevant_to_shape(0);
......
......@@ -413,6 +413,10 @@ void op::v1::GroupConvolutionBackpropData::pre_validate_and_infer_types()
output_shape.insert(output_shape.begin(), data_shape.at(0));
output_pshape = output_shape;
}
else
{
output_pshape = PartialShape::dynamic(data_pshape.rank());
}
}
set_input_is_relevant_to_shape(0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment