Unverified Commit 35a25cc8 authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Fix some opset bugs (#3985)

Typo in opset0
Include ops.hpp rather than ngraph.hpp
parent f12a5c92
......@@ -21,7 +21,7 @@ const ngraph::OpSet& ngraph::get_opset0()
{
static OpSet opset({
#define NGRAPH_OP(NAME, NAMESPACE) NAMESPACE::NAME::type_info,
#include "ngraph/opsets/opset1_tbl.hpp"
#include "ngraph/opsets/opset0_tbl.hpp"
#undef NGRAPH_OP
});
return opset;
......
......@@ -16,7 +16,7 @@
#pragma once
#include "ngraph/ngraph.hpp"
#include "ngraph/ops.hpp"
namespace ngraph
{
......
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