Commit b3db038e authored by Chris Sullivan's avatar Chris Sullivan Committed by Sang Ik Lee

Fix op::Pad::set_padding_above to actually set m_padding_above. (#4169)

Co-authored-by: 's avatarScott Cyphers <diyessi@users.noreply.github.com>
parent 660ae5ac
......@@ -61,7 +61,7 @@ namespace ngraph
const CoordinateDiff& get_padding_above() const { return m_padding_above; }
void set_padding_above(const CoordinateDiff& padding_above)
{
m_padding_below = padding_above;
m_padding_above = padding_above;
}
/// \brief DEPRECATED. This is just a stub for backends that used to implement the
......
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