Skip to content

Commit 77f6a00

Browse files
authored
Move core components (openvinotoolkit#8869)
* Moved openvino to src * Moved ngraph and frontends to src * Fixed cmake generation * Moved inference_engine libs to src * Moved C API to src * Fixed CMake generation * Moved readers to tests, snippets and preprocessing to common * Fixed CMake * Moved transformations and lp_transformations * Fixed transformations cmake * Fixed build * Fixed unit-tests and ci paths * Fixed docs * Fixed C API build * Try to fix static build * More clear order * Renamed inference_engine_legacy_api to legacy * Fixed some cmake scripts * Fixed path to legacy * Fixed Myriad plugin * Fixed v7 reader * Fixed plugin.hpp * Fixed developer config * Fixed ie_parallel
1 parent 9b3e120 commit 77f6a00

File tree

3,909 files changed

+166
-617
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,909 files changed

+166
-617
lines changed

.ci/azure/linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ jobs:
117117
# For running Python API tests
118118
python3 -m pip install -r $(REPO_DIR)/inference-engine/ie_bridges/python/src/requirements-dev.txt
119119
# For running PaddlePaddle frontend unit tests
120-
python3 -m pip install -r $(REPO_DIR)/ngraph/test/frontend/paddlepaddle/requirements_dev.txt
120+
python3 -m pip install -r $(REPO_DIR)/src/core/tests/frontend/paddlepaddle/requirements_dev.txt
121121
# For running ONNX frontend unit tests
122-
python3 -m pip install -r $(REPO_DIR)/ngraph/test/requirements_test_onnx.txt
122+
python3 -m pip install -r $(REPO_DIR)/src/core/tests/requirements_test_onnx.txt
123123
# For MO unit tests
124124
python3 -m pip install -r $(REPO_DIR)/model-optimizer/requirements.txt
125125
python3 -m pip install -r $(REPO_DIR)/model-optimizer/requirements_dev.txt

.ci/azure/linux_lohika.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ jobs:
8686
# For running Python API tests
8787
python3 -m pip install -r $(REPO_DIR)/inference-engine/ie_bridges/python/src/requirements-dev.txt
8888
# For running PaddlePaddle frontend unit tests
89-
python3 -m pip install -r $(REPO_DIR)/ngraph/test/frontend/paddlepaddle/requirements_dev.txt
89+
python3 -m pip install -r $(REPO_DIR)/src/core/tests/frontend/paddlepaddle/requirements_dev.txt
9090
# For running ONNX frontend unit tests
91-
python3 -m pip install -r $(REPO_DIR)/ngraph/test/requirements_test_onnx.txt
91+
python3 -m pip install -r $(REPO_DIR)/src/core/tests/requirements_test_onnx.txt
9292
# For MO unit tests
9393
python3 -m pip install -r $(REPO_DIR)/model-optimizer/requirements.txt
9494
python3 -m pip install -r $(REPO_DIR)/model-optimizer/requirements_dev.txt

.ci/azure/mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
- script: |
8585
brew install cython
8686
brew install automake
87-
python3 -m pip install -r $(REPO_DIR)/ngraph/test/requirements_test_onnx.txt
87+
python3 -m pip install -r $(REPO_DIR)/src/core/tests/requirements_test_onnx.txt
8888
# Speed up build
8989
brew install ninja
9090
# Speed up tests

.ci/azure/windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ jobs:
110110
rem For running Python API tests
111111
python -m pip install -r $(REPO_DIR)\inference-engine\ie_bridges\python\src\requirements-dev.txt
112112
rem For running PaddlePaddle frontend unit tests
113-
python -m pip install -r $(REPO_DIR)\ngraph\test\frontend\paddlepaddle\requirements_dev.txt
113+
python -m pip install -r $(REPO_DIR)\src\core\tests\frontend\paddlepaddle\requirements_dev.txt
114114
rem For running ONNX frontend unit tests
115-
python -m pip install -r $(REPO_DIR)\ngraph\test\requirements_test_onnx.txt
115+
python -m pip install -r $(REPO_DIR)\src\core\tests\requirements_test_onnx.txt
116116
rem For MO unit tests
117117
python -m pip install -r $(REPO_DIR)\model-optimizer\requirements.txt
118118
python -m pip install -r $(REPO_DIR)\model-optimizer\requirements_dev.txt

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ ie_cpack_add_component(ngraph_dev REQUIRED DEPENDS ngraph)
9292
include(cmake/test_model_zoo.cmake)
9393

9494
add_subdirectory(thirdparty)
95-
add_subdirectory(openvino)
96-
add_subdirectory(ngraph)
97-
add_subdirectory(inference-engine)
95+
add_subdirectory(inference-engine/thirdparty)
96+
add_subdirectory(inference-engine/src)
9897
add_subdirectory(src)
9998
add_subdirectory(samples)
99+
add_subdirectory(inference-engine)
100100
include(cmake/extra_modules.cmake)
101101
add_subdirectory(model-optimizer)
102102
add_subdirectory(docs)

cmake/dependencies.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ else()
265265
reset_deps_cache(OpenCV_DIR)
266266
endif()
267267

268-
include(${IE_MAIN_SOURCE_DIR}/cmake/ie_parallel.cmake)
268+
include(${OpenVINO_SOURCE_DIR}/cmake/ie_parallel.cmake)
269269

270270
if(ENABLE_GNA)
271271
reset_deps_cache(

cmake/developer_package/plugins/plugins.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ function(ie_generate_plugins_hpp)
311311
ie_target_link_plugins(inference_engine_s)
312312
endif()
313313

314-
set(ie_plugins_hpp "${CMAKE_BINARY_DIR}/inference-engine/src/inference_engine/ie_plugins.hpp")
314+
set(ie_plugins_hpp "${CMAKE_BINARY_DIR}/src/inference/ie_plugins.hpp")
315315
set(plugins_hpp_in "${IEDevScripts_DIR}/plugins/plugins.hpp.in")
316316

317317
add_custom_command(OUTPUT "${ie_plugins_hpp}"

cmake/developer_package/version.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ macro(ie_parse_ci_build_number)
4444
return()
4545
endif()
4646

47-
set(ie_version_hpp "${OpenVINO_SOURCE_DIR}/inference-engine/src/inference_engine/include/ie/ie_version.hpp")
47+
set(ie_version_hpp "${OpenVINO_SOURCE_DIR}/src/inference/include/ie/ie_version.hpp")
4848
if(NOT EXISTS ${ie_version_hpp})
4949
message(FATAL_ERROR "File ie_version.hpp with IE_VERSION definitions is not found")
5050
endif()
5151

52-
set(ov_version_hpp "${OpenVINO_SOURCE_DIR}/ngraph/core/include/openvino/core/version.hpp")
52+
set(ov_version_hpp "${OpenVINO_SOURCE_DIR}/src/core/include/openvino/core/version.hpp")
5353
if(NOT EXISTS ${ov_version_hpp})
5454
message(FATAL_ERROR "File openvino/core/version.hpp with OPENVINO_VERSION definitions is not found")
5555
endif()

cmake/extra_modules.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function(ie_generate_dev_package_config)
66
# dummy check that OpenCV is here
77
find_package(OpenCV QUIET)
88

9-
set(all_dev_targets gflags ie_libraries)
9+
set(all_dev_targets gflags ov_runtime_libraries)
1010
foreach(component IN LISTS openvino_export_components)
1111
# export all targets with prefix and use them during extra modules build
1212
export(TARGETS ${${component}} NAMESPACE IE::
@@ -102,7 +102,7 @@ openvino_developer_export_targets(COMPONENT ngraph TARGETS ngraph_backend interp
102102
ie_generate_dev_package_config()
103103

104104
# extra modules must be registered after inference_engine library
105-
# and all other IE common libraries (ie_libraries) are creared
105+
# and all other IE common libraries (ov_runtime_libraries) are creared
106106
# because 'register_extra_modules' creates fake InferenceEngineDeveloperPackageConfig.cmake
107107
# with all imported developer targets
108108
register_extra_modules()
File renamed without changes.

cmake/templates/InferenceEngineDeveloperPackageConfig.cmake.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ find_dependency(InferenceEngine
4545
NO_DEFAULT_PATH)
4646

4747
find_dependency(ngraph
48-
PATHS "${CMAKE_CURRENT_LIST_DIR}/ngraph"
48+
PATHS "${CMAKE_CURRENT_LIST_DIR}/src/core"
4949
NO_CMAKE_FIND_ROOT_PATH
5050
NO_DEFAULT_PATH)
5151

cmake/test_model_zoo.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set_property(GLOBAL PROPERTY JOB_POOLS four_jobs=4)
66

77
function(ov_model_convert SRC DST OUT)
8-
set(onnx_gen_script ${OpenVINO_SOURCE_DIR}/ngraph/test/models/onnx/onnx_prototxt_converter.py)
8+
set(onnx_gen_script ${OpenVINO_SOURCE_DIR}/src/core/tests/models/onnx/onnx_prototxt_converter.py)
99

1010
file(GLOB_RECURSE prototxt_models RELATIVE "${SRC}" "${SRC}/*.prototxt")
1111
file(GLOB_RECURSE xml_models RELATIVE "${SRC}" "${SRC}/*.xml")
@@ -62,8 +62,8 @@ function(ov_model_convert SRC DST OUT)
6262
set(${OUT} ${files} PARENT_SCOPE)
6363
endfunction()
6464

65-
ov_model_convert("${CMAKE_CURRENT_SOURCE_DIR}/ngraph/test"
66-
"${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_model_zoo/ngraph"
65+
ov_model_convert("${CMAKE_CURRENT_SOURCE_DIR}/src/core/tests"
66+
"${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_model_zoo/core"
6767
onnx_out_files)
6868

6969
set(rel_path "inference-engine/tests/functional/plugin/shared/models")
@@ -117,7 +117,7 @@ if(ENABLE_TESTS)
117117
list(APPEND args --use-feature=2020-resolver)
118118
endif()
119119

120-
set(reqs "${OpenVINO_SOURCE_DIR}/ngraph/test/requirements_test_onnx.txt")
120+
set(reqs "${OpenVINO_SOURCE_DIR}/src/core/tests/requirements_test_onnx.txt")
121121
add_custom_target(test_pip_prerequsites ALL
122122
"${PYTHON_EXECUTABLE}" -m pip install ${args} -r ${reqs}
123123
COMMENT "Install requirements_test.txt"

docs/CMakeLists.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,14 @@ function(build_docs)
6565
set(DOCS_BUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}")
6666
set(DOXYGEN_DIR "${OpenVINO_SOURCE_DIR}/docs/doxygen")
6767
set(IE_SOURCE_DIR "${OpenVINO_SOURCE_DIR}/inference-engine")
68+
set(OV_INFERENCE_DIR "${OpenVINO_SOURCE_DIR}/src/inference")
6869
set(PYTHON_API_IN "${IE_SOURCE_DIR}/ie_bridges/python/src/openvino/inference_engine/ie_api.pyx")
6970
set(PYTHON_API_OUT "${DOCS_BUILD_DIR}/python_api/ie_api.pyx")
70-
set(C_API "${IE_SOURCE_DIR}/ie_bridges/c/include")
71+
set(C_API "${OpenVINO_SOURCE_DIR}/bindings/c/include")
7172
set(PLUGIN_API_DIR "${DOCS_BUILD_DIR}/IE_PLUGIN_DG")
72-
set(NGRAPH_DIR "${OpenVINO_SOURCE_DIR}/ngraph")
73+
set(CORE_DIR "${OpenVINO_SOURCE_DIR}/src/core")
74+
set(FRONTENDS_DIR "${OpenVINO_SOURCE_DIR}/src/frontends")
7375
set(NGRAPH_PY_DIR "${OpenVINO_SOURCE_DIR}/src/bindings/python/src/compatibility/ngraph/")
74-
set(NGRAPH_CPP_DIR "${NGRAPH_DIR}/core/include/" "${NGRAPH_DIR}/frontend/onnx_import/include")
7576

7677
# Preprocessing scripts
7778
set(DOXY_MD_FILTER "${DOXYGEN_DIR}/doxy_md_filter.py")

docs/doxygen/doxygen-ignore.txt

+6-23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
openvino/samples/cpp/hello_reshape_ssd/README.md
22
openvino/docs/index.md
3-
inference-engine/include/ie_icnn_network.hpp
43
openvino/docs/get_started/get_started_dl_workbench.md
54
openvino/docs/get_started/get_started_linux.md
65
openvino/docs/get_started/get_started_raspbian.md
@@ -10,29 +9,13 @@ openvino/docs/HOWTO/Custom_Layers_Guide.md
109
openvino/docs/install_guides/deployment-manager-tool.md
1110
openvino/docs/MO_DG/prepare_model/customize_model_optimizer/Customize_Model_Optimizer.md
1211
openvino/docs/ovsa/ovsa_get_started.md
13-
openvino/inference-engine/ie_bridges/c/docs/api_overview.md
14-
inference-engine/include/cpp/ie_infer_request.hpp
15-
inference-engine/include/ie_parallel.hpp
16-
inference-engine/include/gpu/gpu_context_api_ocl.hpp
17-
inference-engine/include/gpu/gpu_context_api_va.hpp
18-
inference-engine/include/ie_plugin_config.hpp
19-
inference-engine/include/ie_unicode.hpp
20-
inference-engine/include/vpu/myriad_config.hpp
21-
inference-engine/include/vpu/vpu_config.hpp
22-
inference-engine/include/vpu/vpu_plugin_config.hpp
12+
openvino/src/bindings/c/docs/api_overview.md
2313
openvino/docs/benchmarks/performance_int8_vs_fp32.md
2414
openvino/docs/get_started/get_started_macos.md
25-
inference-engine/include/details/ie_so_pointer.hpp
26-
inference-engine/include/ie_compound_blob.h
27-
inference-engine/include/ie_data.h
28-
inference-engine/include/ie_blob.h
29-
inference-engine/include/ie_precision.hpp
30-
inference-engine/include/ie_remote_context.hpp
31-
inference-engine/include/gpu/gpu_context_api_dx.hpp
3215
build/docs/openvino_docs.xml
3316
openvino/docs/install_guides/installing-openvino-linux-ivad-vpu.md
34-
inference-engine/src/inference_engine/include/ie/ie_parallel.hpp
35-
inference-engine/src/inference_engine/include/ie/ie_plugin_config.hpp
36-
inference-engine/src/inference_engine/include/ie/vpu/myriad_config.hpp
37-
inference-engine/src/inference_engine/include/ie/vpu/vpu_config.hpp
38-
inference-engine/src/inference_engine/include/ie/vpu/vpu_plugin_config.hpp
17+
src/inference/include/ie/ie_parallel.hpp
18+
src/inference/include/ie/ie_plugin_config.hpp
19+
src/inference/include/ie/vpu/myriad_config.hpp
20+
src/inference/include/ie/vpu/vpu_config.hpp
21+
src/inference/include/ie/vpu/vpu_plugin_config.hpp

docs/doxygen/ie_docs.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ WARN_LOGFILE = "@DOCS_BUILD_DIR@/ie_docs.log"
824824
# Note: If this tag is empty the current directory is searched.
825825

826826
INPUT = "@DOCS_BUILD_DIR@" \
827-
"@IE_SOURCE_DIR@/src/inference_engine/include"
827+
"@OV_INFERENCE_DIR@/include"
828828

829829
# This tag can be used to specify the character encoding of the source files
830830
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

docs/doxygen/ie_plugin_api.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ GENERATE_TAGFILE = "@DOCS_BUILD_DIR@/ie_plugin_api.tag"
2424
EXTRACT_LOCAL_CLASSES = NO
2525

2626
INPUT = "@DOCS_BUILD_DIR@/docs/IE_PLUGIN_DG" \
27-
"@IE_SOURCE_DIR@/src/plugin_api" \
28-
"@IE_SOURCE_DIR@/src/transformations/include" \
29-
"@OpenVINO_SOURCE_DIR@/openvino/itt/include/openvino"
27+
"@OV_INFERENCE_DIR@/dev_api" \
28+
"@OpenVINO_SOURCE_DIR@/src/common/transformations/include" \
29+
"@OpenVINO_SOURCE_DIR@/src/common/itt/include/openvino"
3030

3131

3232
RECURSIVE = YES

docs/doxygen/ngraph_cpp_api.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ FILE_PATTERNS = *.cpp \
2828

2929
LAYOUT_FILE = "@NGRAPH_CPP_LAYOUT_BUILD@"
3030

31-
INPUT = "@NGRAPH_DIR@/core/include/" \
32-
"@NGRAPH_DIR@/frontend/onnx/frontend/include/" \
33-
"@NGRAPH_DIR@/frontend/paddlepaddle/frontend/include/"
31+
INPUT = "@CORE_DIR@/core/include/" \
32+
"@FRONTENDS_DIR@/onnx/frontend/include/" \
33+
"@FRONTENDS_DIR@/paddlepaddle/frontend/include/"
3434

3535
HTML_OUTPUT = "@NGRAPH_CPP_OUTPUT@"
3636

inference-engine/CMakeLists.txt

-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44

55
project(InferenceEngine)
66

7-
add_subdirectory(thirdparty)
8-
add_subdirectory(src)
9-
add_subdirectory(ie_bridges/c)
10-
117
if(ENABLE_PYTHON)
128
add_subdirectory(ie_bridges/python)
139
endif()

inference-engine/ie_bridges/python/wheel/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ endif()
4747
# create target for openvino.wheel
4848

4949
set(openvino_wheel_deps ie_api offline_transformations_api)
50-
foreach(_target ie_libraries ie_plugins _pyngraph pyopenvino)
50+
foreach(_target ov_runtime_libraries ie_plugins _pyngraph pyopenvino)
5151
if(TARGET ${_target})
5252
list(APPEND openvino_wheel_deps ${_target})
5353
endif()

inference-engine/src/CMakeLists.txt

-45
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,8 @@ if(CMAKE_COMPILER_IS_GNUCXX)
77
ie_add_compiler_flags(-Wmissing-declarations)
88
endif()
99

10-
add_subdirectory(transformations)
11-
12-
add_subdirectory(low_precision_transformations)
13-
1410
add_subdirectory(offline_transformations)
1511

16-
add_subdirectory(snippets)
17-
1812
if(ENABLE_MKL_DNN)
1913
add_subdirectory(mkldnn_plugin)
2014
endif()
@@ -38,42 +32,3 @@ endif()
3832
if(ENABLE_MULTI)
3933
add_subdirectory(multi_device)
4034
endif()
41-
42-
add_subdirectory(inference_engine)
43-
44-
add_subdirectory(legacy_api)
45-
46-
add_subdirectory(readers)
47-
48-
add_subdirectory(preprocessing)
49-
50-
# add a custom target to build all Inference Engine Core libraries
51-
52-
add_custom_target(ie_libraries ALL
53-
DEPENDS inference_engine_transformations inference_engine_legacy
54-
inference_engine inference_engine_preproc
55-
inference_engine_lp_transformations inference_engine_snippets)
56-
57-
if(ENABLE_IR_V7_READER)
58-
add_dependencies(ie_libraries inference_engine_ir_v7_reader)
59-
endif()
60-
61-
if(NGRAPH_IR_FRONTEND_ENABLE)
62-
if(BUILD_SHARED_LIBS)
63-
add_dependencies(ie_libraries ir_ov_frontend)
64-
endif()
65-
# use this one once CVS-69781 is fixed
66-
# add_dependencies(inference_engine ir_ov_frontend)
67-
endif()
68-
69-
if(NGRAPH_ONNX_FRONTEND_ENABLE)
70-
add_dependencies(inference_engine onnx_ov_frontend)
71-
endif()
72-
73-
if(NGRAPH_PDPD_FRONTEND_ENABLE)
74-
add_dependencies(inference_engine paddlepaddle_ov_frontend)
75-
endif()
76-
77-
if(NGRAPH_TF_FRONTEND_ENABLE)
78-
add_dependencies(inference_engine tensorflow_ov_frontend)
79-
endif()

inference-engine/src/readers/CMakeLists.txt

-22
This file was deleted.

inference-engine/src/vpu/myriad_plugin/myriad_executable_network.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
#include <vpu/ngraph/operations/dynamic_shape_resolver.hpp>
2222
#include <vpu/ngraph/transformations/dynamic_to_static_shape.hpp>
2323
#include <ngraph/opsets/opset3.hpp>
24-
#include "../../../ngraph/core/include/openvino/core/interval.hpp"
24+
// FIXME: Please remove relative path
25+
#include "../../../src/core/include/openvino/core/interval.hpp"
2526

2627
using namespace InferenceEngine;
2728

inference-engine/tests/functional/inference_engine/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function(ie_headers_compilation_with_custom_flags)
127127
"${OpenVINO_SOURCE_DIR}/inference-engine/src/plugin_api/")
128128
else()
129129
set(include_dirs
130-
"${OpenVINO_SOURCE_DIR}/ngraph/core/include"
130+
"${OpenVINO_SOURCE_DIR}/src/core/include"
131131
"${OpenVINO_SOURCE_DIR}/inference-engine/src/inference_engine/include/ie"
132132
"${OpenVINO_SOURCE_DIR}/inference-engine/src/inference_engine/include/")
133133
endif()

inference-engine/tests_deprecated/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ if(NOT MSVC)
88
ie_add_compiler_flags(-Wno-unused-variable)
99
endif()
1010

11+
add_subdirectory(readers)
1112
add_subdirectory(helpers)
1213

1314
if (ENABLE_GAPI_TESTS)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copyright (C) 2018-2021 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
4+
5+
if(ENABLE_IR_V7_READER)
6+
add_subdirectory(ir_reader_v7)
7+
add_dependencies(ov_runtime_libraries inference_engine_ir_v7_reader)
8+
endif()

inference-engine/src/readers/ir_reader_v7/CMakeLists.txt inference-engine/tests_deprecated/readers/ir_reader_v7/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ target_compile_definitions(${TARGET_NAME} PRIVATE IMPLEMENT_INFERENCE_ENGINE_PLU
3434

3535
target_include_directories(${TARGET_NAME} PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/")
3636

37-
target_link_libraries(${TARGET_NAME} PRIVATE inference_engine_reader_api inference_engine_plugin_api
37+
target_link_libraries(${TARGET_NAME} PRIVATE inference_engine_plugin_api
3838
inference_engine_legacy pugixml::static openvino::itt)
3939

4040
ie_add_api_validator_post_build_step(TARGET ${TARGET_NAME})

0 commit comments

Comments
 (0)