Commit bc0fd13f authored by Tomasz Dołbniak's avatar Tomasz Dołbniak Committed by Scott Cyphers

Fix an error in ONNXRT build (#3864)

parent 6e1b308d
......@@ -99,7 +99,7 @@ namespace ngraph
const BinaryConvolutionMode& get_mode() const { return m_mode; }
void set_mode(const BinaryConvolutionMode& mode) { m_mode = mode; }
/// \return The pad value.
const float get_pad_value() const { return m_pad_value; }
float get_pad_value() const { return m_pad_value; }
void set_pad_value(float pad_value) { m_pad_value = pad_value; }
protected:
BinaryConvolutionMode mode_from_string(const std::string& mode) const;
......
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