Skip to content

Commit

Permalink
Fix v0::MVN default constructor (#7175)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitruska authored Aug 23, 2021
1 parent 5a56419 commit 745c893
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion ngraph/core/include/ngraph/op/mvn.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class NGRAPH_API MVN : public Op {
public:
NGRAPH_RTTI_DECLARATION;

MVN();
MVN() = default;
/// \brief Constructs an MVN operation.
///
/// \param data Input tensor with data
Expand Down
2 changes: 0 additions & 2 deletions ngraph/core/src/op/mvn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ using namespace ngraph;

NGRAPH_RTTI_DEFINITION(op::v0::MVN, "MVN", 0);

op::v0::MVN::MVN() : Op(), m_across_channels(), m_normalize_variance(), m_reduction_axes() {}

op::v0::MVN::MVN(const Output<Node>& data, bool across_channels, bool normalize_variance, double eps)
: Op({data}),
m_eps{eps},
Expand Down

0 comments on commit 745c893

Please sign in to comment.