Deprecate legacy precisions and layouts (#17803)

* Deprecate legacy precisions and layouts

* Suppress some warnings

* Fixed some warnings
This commit is contained in:
Ilya Churaev
2023-06-01 12:47:55 +04:00
committed by GitHub
parent ea04f8217d
commit d53339ff67
17 changed files with 107 additions and 33 deletions

View File

@@ -1,6 +1,17 @@
#include "openvino/runtime/core.hpp"
#ifndef IN_OV_COMPONENT
# define IN_OV_COMPONENT
# define WAS_OV_LIBRARY_DEFINED
#endif
#include "ie_plugin_config.hpp"
#ifdef WAS_OV_LIBRARY_DEFINED
# undef IN_OV_COMPONENT
# undef WAS_OV_LIBRARY_DEFINED
#endif
int main() {
//! [part0]
ov::Core core;