Unverified Commit 19e2434a authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Default constructor needs to init autob (#3913)

parent 4f38b098
......@@ -35,7 +35,8 @@ namespace ngraph
static constexpr NodeTypeInfo type_info{"FloorMod", 1};
const NodeTypeInfo& get_type_info() const override { return type_info; }
/// \brief Constructs an uninitialized addition operation
FloorMod() = default;
FloorMod()
: util::BinaryElementwiseArithmetic(AutoBroadcastSpec::NUMPY){};
/// \brief Constructs an Floor Mod operation.
///
......
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