Unverified Commit 6b90c1bd authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Convert ONNX ops to new form (#3343)

parent 55209b7a
...@@ -14,17 +14,16 @@ ...@@ -14,17 +14,16 @@
// limitations under the License. // limitations under the License.
//***************************************************************************** //*****************************************************************************
#include "null_node.hpp" #include <string>
#include "ngraph/node.hpp" #include "ngraph/node.hpp"
#include "null_node.hpp"
namespace ngraph namespace ngraph
{ {
namespace onnx_import namespace onnx_import
{ {
NullNode::NullNode() const std::string NullNode::type_name{"NullNode"};
: ngraph::Node("NullNode", {}, 0)
{
}
std::shared_ptr<Node> NullNode::copy_with_new_args(const NodeVector& new_args) const std::shared_ptr<Node> NullNode::copy_with_new_args(const NodeVector& new_args) const
{ {
......
...@@ -36,7 +36,10 @@ namespace ngraph ...@@ -36,7 +36,10 @@ namespace ngraph
class NullNode : public ngraph::Node class NullNode : public ngraph::Node
{ {
public: public:
NullNode(); NGRAPH_API
static const std::string type_name;
const std::string& description() const override { return type_name; }
NullNode() = default;
bool is_null() const final override { return true; } bool is_null() const final override { return true; }
virtual std::shared_ptr<Node> virtual std::shared_ptr<Node>
......
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