diff --git a/cmake/developer_package/coverage/coverage.cmake b/cmake/developer_package/coverage/coverage.cmake index d5ff560179e..985583e7bea 100644 --- a/cmake/developer_package/coverage/coverage.cmake +++ b/cmake/developer_package/coverage/coverage.cmake @@ -226,11 +226,3 @@ function(ov_coverage_merge) add_dependencies(ov_coverage_${OV_COVERAGE_OUTPUT}_info ${dependencies}) endfunction() - -# deprecated - -if(NOT TARGET ie_coverage) - add_custom_target(ie_coverage) - set_target_properties(ie_coverage PROPERTIES FOLDER coverage) - add_dependencies(ie_coverage ov_coverage) -endif() diff --git a/cmake/developer_package/options.cmake b/cmake/developer_package/options.cmake index 73de6630b55..a54a8bed1d4 100644 --- a/cmake/developer_package/options.cmake +++ b/cmake/developer_package/options.cmake @@ -11,13 +11,11 @@ endif() macro(ov_option variable description value) option(${variable} "${description}" ${value}) list(APPEND OV_OPTIONS ${variable}) - list(APPEND IE_OPTIONS ${variable}) endmacro() macro(ov_dependent_option variable description def_value condition fallback_value) cmake_dependent_option(${variable} "${description}" ${def_value} "${condition}" ${fallback_value}) list(APPEND OV_OPTIONS ${variable}) - list(APPEND IE_OPTIONS ${variable}) endmacro() macro(ov_option_enum variable description value) @@ -31,7 +29,6 @@ macro(ov_option_enum variable description value) endif() list(APPEND OV_OPTIONS ${variable}) - list(APPEND IE_OPTIONS ${variable}) set(${variable} ${value} CACHE STRING "${description}") set_property(CACHE ${variable} PROPERTY STRINGS ${OPTION_ENUM_ALLOWED_VALUES}) diff --git a/cmake/extra_modules.cmake b/cmake/extra_modules.cmake index 7b2839ba2ce..4ad3bb30b3a 100644 --- a/cmake/extra_modules.cmake +++ b/cmake/extra_modules.cmake @@ -125,7 +125,7 @@ endif()\n") # detect where OPENVINO_EXTRA_MODULES contains folders with CMakeLists.txt # other folders are supposed to have sub-folders with CMakeLists.txt - foreach(module_path IN LISTS OPENVINO_EXTRA_MODULES IE_EXTRA_MODULES) + foreach(module_path IN LISTS OPENVINO_EXTRA_MODULES) get_filename_component(module_path "${module_path}" ABSOLUTE) if(EXISTS "${module_path}/CMakeLists.txt") list(APPEND extra_modules "${module_path}") diff --git a/docs/articles_en/assets/snippets/template_pattern_transformation.hpp b/docs/articles_en/assets/snippets/template_pattern_transformation.hpp index e9c8df67dc9..803827100ce 100644 --- a/docs/articles_en/assets/snippets/template_pattern_transformation.hpp +++ b/docs/articles_en/assets/snippets/template_pattern_transformation.hpp @@ -18,7 +18,7 @@ class ReluReluFusionMatcher; // ! [graph_rewrite:template_transformation_hpp] // transformations/template_pattern_transformation.hpp /** - * @ingroup ie_transformation_common_api + * @ingroup ov_transformation_common_api * @brief Add transformation description. */ class ov::pass::DecomposeDivideMatcher : public ov::pass::MatcherPass { diff --git a/src/common/transformations/include/transformations/common_optimizations/nop_elimination.hpp b/src/common/transformations/include/transformations/common_optimizations/nop_elimination.hpp index 2ad3320268f..e28a71e4911 100644 --- a/src/common/transformations/include/transformations/common_optimizations/nop_elimination.hpp +++ b/src/common/transformations/include/transformations/common_optimizations/nop_elimination.hpp @@ -159,7 +159,7 @@ public: }; /** - * @ingroup ie_transformation_common_api + * @ingroup ov_transformation_common_api * @brief NopStridedSlice eliminates Strided Slice in case * tensors were not changed */ @@ -170,7 +170,7 @@ public: }; /** - * @ingroup ie_transformation_common_api + * @ingroup ov_transformation_common_api * @brief NopStridedSlice eliminates Strided Slice in case * tensors were not changed */ @@ -181,7 +181,7 @@ public: }; /** - * @ingroup ie_transformation_common_api + * @ingroup ov_transformation_common_api * @brief PrepareShapeOpsForEliminationAroundBE works on the subgraph like * Reshape/Squeeze/Unsqueeze -> BinaryElementwiseOperation -> Reshape/Squeeze/Unsqueeze * and prepares it for the following optimizations by moving bottom op up through Binary op diff --git a/src/common/transformations/include/transformations/op_conversions/convert_avgpool_downgrade.hpp b/src/common/transformations/include/transformations/op_conversions/convert_avgpool_downgrade.hpp index 1f6e0944544..7a16d522c28 100644 --- a/src/common/transformations/include/transformations/op_conversions/convert_avgpool_downgrade.hpp +++ b/src/common/transformations/include/transformations/op_conversions/convert_avgpool_downgrade.hpp @@ -10,7 +10,7 @@ namespace ov { namespace pass { /** - * @ingroup ie_transformation_common_api + * @ingroup ov_transformation_common_api * @brief Converts AvgPool v14 to AvgPool v1 */ class TRANSFORMATIONS_API ConvertAvgPool14ToAvgPool1 : public MatcherPass {