Fixed cycle dependency (#6959)

This commit is contained in:
Ilya Lavrenov
2021-08-06 21:15:18 +03:00
committed by GitHub
parent 74ac48a297
commit 141f401575
3 changed files with 9 additions and 2 deletions

View File

@@ -4,9 +4,13 @@
#pragma once
#include <ngraph/node.hpp>
#include <string>
#include <utility>
#include "ngraph/partial_shape.hpp"
#include "ngraph/type.hpp"
#include "ngraph/type/element_type.hpp"
namespace ngraph
{
struct VariableInfo

View File

@@ -4,6 +4,9 @@
#pragma once
#include <memory>
#include <unordered_map>
#include <ngraph/output_vector.hpp>
#include <ngraph/variant.hpp>
#include "ngraph/op/util/variable.hpp"

View File

@@ -6,7 +6,7 @@
#include <memory>
#include "ngraph/node.hpp"
#include "ngraph/descriptor/output.hpp"
#include "ngraph/runtime/tensor.hpp"
#include "ngraph/type/element_type.hpp"
#include "ngraph/type/element_type_traits.hpp"