Commit bc4a08f0 authored by Chris Sullivan's avatar Chris Sullivan Committed by Scott Cyphers

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

parent 2347d9e7
...@@ -61,7 +61,7 @@ namespace ngraph ...@@ -61,7 +61,7 @@ namespace ngraph
const CoordinateDiff& get_padding_above() const { return m_padding_above; } const CoordinateDiff& get_padding_above() const { return m_padding_above; }
void set_padding_above(const CoordinateDiff& 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 /// \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