-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |