Unverified Commit 2c7dd226 authored by Evgenya Stepyreva's avatar Evgenya Stepyreva Committed by GitHub

ConvBackPropData dynamic output shape input (#4314)

* ConvBackPropData dynamic output shape input

* Adam comments
Co-authored-by: 's avataraslepko <44713115+aslepko@users.noreply.github.com>
Co-authored-by: 's avatarRobert Kimball <robert.kimball@intel.com>
Co-authored-by: 's avatarScott Cyphers <diyessi@users.noreply.github.com>
parent fd32fbbe
......@@ -255,6 +255,10 @@ const PartialShape op::v1::ConvolutionBackpropData::get_output_shape() const
{
shape = const_op->get_shape_val();
}
else
{
shape = PartialShape::dynamic();
}
}
return shape;
}
......
......@@ -249,6 +249,10 @@ const PartialShape op::v1::GroupConvolutionBackpropData::get_output_shape() cons
{
shape = const_op->get_shape_val();
}
else
{
shape = PartialShape::dynamic();
}
}
return shape;
}
......
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