From ffe99fb66f7c584f370899fea095b588764fefdb Mon Sep 17 00:00:00 2001 From: Liubov Batanina Date: Fri, 19 Feb 2021 08:39:19 +0300 Subject: [PATCH] Fixed Interpolate headers (#4403) --- .../reference/include/ngraph/runtime/reference/interpolate.hpp | 1 + ngraph/core/reference/src/runtime/reference/interpolate.cpp | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ngraph/core/reference/include/ngraph/runtime/reference/interpolate.hpp b/ngraph/core/reference/include/ngraph/runtime/reference/interpolate.hpp index 07f65f372d4..6c1e2c1b459 100644 --- a/ngraph/core/reference/include/ngraph/runtime/reference/interpolate.hpp +++ b/ngraph/core/reference/include/ngraph/runtime/reference/interpolate.hpp @@ -24,6 +24,7 @@ #include #include #include "ngraph/coordinate_transform.hpp" +#include "ngraph/op/interpolate.hpp" #include "ngraph/shape_util.hpp" namespace ngraph diff --git a/ngraph/core/reference/src/runtime/reference/interpolate.cpp b/ngraph/core/reference/src/runtime/reference/interpolate.cpp index eb98ec94199..88bf2878c48 100644 --- a/ngraph/core/reference/src/runtime/reference/interpolate.cpp +++ b/ngraph/core/reference/src/runtime/reference/interpolate.cpp @@ -14,9 +14,8 @@ // limitations under the License. //***************************************************************************** -#include "ngraph/op/interpolate.hpp" -#include #include "ngraph/runtime/reference/interpolate.hpp" +#include using namespace ngraph::runtime::reference;