Skip to content

Commit

Permalink
Revert ngraph/coordinate_diff.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
vurusovs committed Jan 4, 2024
1 parent d1dbe04 commit 4e9691e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/core/include/ngraph/coordinate_diff.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Copyright (C) 2018-2023 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//

#pragma once

#if !defined(IN_OV_COMPONENT) && !defined(NGRAPH_LEGACY_HEADER_INCLUDED)
# define NGRAPH_LEGACY_HEADER_INCLUDED
# ifdef _MSC_VER
# pragma message( \
"The nGraph API is deprecated and will be removed in the 2024.0 release. For instructions on transitioning to the new API, please refer to https://docs.openvino.ai/latest/openvino_2_0_transition_guide.html")
# else
# warning("The nGraph API is deprecated and will be removed in the 2024.0 release. For instructions on transitioning to the new API, please refer to https://docs.openvino.ai/latest/openvino_2_0_transition_guide.html")
# endif
#endif

#include <cstddef>
#include <ostream>
#include <vector>

#include "ngraph/attribute_adapter.hpp"
#include "ngraph/ngraph_visibility.hpp"
#include "openvino/core/coordinate_diff.hpp"

namespace ngraph {
/// \brief A difference (signed) of tensor element coordinates.
using ov::CoordinateDiff;
} // namespace ngraph

0 comments on commit 4e9691e

Please sign in to comment.