* 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
131 lines
4.7 KiB
CMake
131 lines
4.7 KiB
CMake
# Copyright (C) 2018-2021 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
function (branchName VAR)
|
|
if(NOT DEFINED repo_root)
|
|
message(FATAL_ERROR "repo_root is not defined")
|
|
endif()
|
|
execute_process(
|
|
COMMAND git rev-parse --abbrev-ref HEAD
|
|
WORKING_DIRECTORY ${repo_root}
|
|
OUTPUT_VARIABLE GIT_BRANCH
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
set (${VAR} ${GIT_BRANCH} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
function (commitHash VAR)
|
|
if(NOT DEFINED repo_root)
|
|
message(FATAL_ERROR "repo_root is not defined")
|
|
endif()
|
|
execute_process(
|
|
COMMAND git rev-parse HEAD
|
|
WORKING_DIRECTORY ${repo_root}
|
|
OUTPUT_VARIABLE GIT_COMMIT_HASH
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
set (${VAR} ${GIT_COMMIT_HASH} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
macro(ie_parse_ci_build_number)
|
|
set(IE_VERSION_BUILD 000)
|
|
if(CI_BUILD_NUMBER MATCHES "^([0-9]+)\.([0-9]+)\.([0-9]+)\-([0-9]+)\-.*")
|
|
set(IE_VERSION_MAJOR ${CMAKE_MATCH_1})
|
|
set(IE_VERSION_MINOR ${CMAKE_MATCH_2})
|
|
set(IE_VERSION_PATCH ${CMAKE_MATCH_3})
|
|
set(IE_VERSION_BUILD ${CMAKE_MATCH_4})
|
|
endif()
|
|
|
|
if(NOT DEFINED repo_root)
|
|
message(FATAL_ERROR "repo_root is not defined")
|
|
endif()
|
|
|
|
macro(ie_get_hpp_version)
|
|
if(NOT DEFINED OpenVINO_SOURCE_DIR)
|
|
return()
|
|
endif()
|
|
|
|
set(ie_version_hpp "${OpenVINO_SOURCE_DIR}/src/inference/include/ie/ie_version.hpp")
|
|
if(NOT EXISTS ${ie_version_hpp})
|
|
message(FATAL_ERROR "File ie_version.hpp with IE_VERSION definitions is not found")
|
|
endif()
|
|
|
|
set(ov_version_hpp "${OpenVINO_SOURCE_DIR}/src/core/include/openvino/core/version.hpp")
|
|
if(NOT EXISTS ${ov_version_hpp})
|
|
message(FATAL_ERROR "File openvino/core/version.hpp with OPENVINO_VERSION definitions is not found")
|
|
endif()
|
|
|
|
file(STRINGS "${ie_version_hpp}" IE_VERSION_PARTS REGEX "#define IE_VERSION_[A-Z]+[ ]+" )
|
|
file(STRINGS "${ov_version_hpp}" OV_VERSION_PARTS REGEX "#define OPENVINO_VERSION_[A-Z]+[ ]+" )
|
|
|
|
foreach(suffix MAJOR MINOR PATCH)
|
|
set(ie_version_name "IE_VERSION_${suffix}")
|
|
set(ov_version_name "OPENVINO_VERSION_${suffix}")
|
|
|
|
string(REGEX REPLACE ".+${ie_version_name}[ ]+([0-9]+).*" "\\1"
|
|
${ie_version_name}_HPP "${IE_VERSION_PARTS}")
|
|
string(REGEX REPLACE ".+${ov_version_name}[ ]+([0-9]+).*" "\\1"
|
|
${ov_version_name}_HPP "${OV_VERSION_PARTS}")
|
|
|
|
if(NOT ${ie_version_name}_HPP EQUAL ${ov_version_name}_HPP)
|
|
message(FATAL_ERROR "${ov_version_name} (${${ov_version_name}_HPP})"
|
|
" and ${ie_version_name} (${${ie_version_name}_HPP}) are not equal")
|
|
endif()
|
|
endforeach()
|
|
|
|
set(ie_hpp_version_is_found ON)
|
|
endmacro()
|
|
|
|
# detect OpenVINO version via ie_version.hpp
|
|
ie_get_hpp_version()
|
|
|
|
if(ie_hpp_version_is_found)
|
|
foreach(var IE_VERSION_MAJOR IE_VERSION_MINOR IE_VERSION_PATCH)
|
|
if(DEFINED ${var} AND NOT ${var} EQUAL ${var}_HPP)
|
|
message(FATAL_ERROR "${var} parsed from CI_BUILD_NUMBER (${${var}}) \
|
|
and from ie_version.hpp (${${var}_HPP}) are different")
|
|
else()
|
|
# CI_BUILD_NUMBER is not defined well, take info from ie_verison.hpp as a baseline
|
|
set(${var} ${${var}_HPP})
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
|
|
set(IE_VERSION "${IE_VERSION_MAJOR}.${IE_VERSION_MINOR}.${IE_VERSION_PATCH}")
|
|
message(STATUS "OpenVINO version is ${IE_VERSION}")
|
|
endmacro()
|
|
|
|
if (DEFINED ENV{CI_BUILD_NUMBER})
|
|
set(CI_BUILD_NUMBER $ENV{CI_BUILD_NUMBER})
|
|
else()
|
|
branchName(GIT_BRANCH)
|
|
commitHash(GIT_COMMIT_HASH)
|
|
|
|
set(custom_build "custom_${GIT_BRANCH}_${GIT_COMMIT_HASH}")
|
|
set(CI_BUILD_NUMBER "${custom_build}")
|
|
endif()
|
|
|
|
# provides Inference Engine version
|
|
# 1. If CI_BUILD_NUMBER is defined, parses this information
|
|
# 2. Otherwise, parses ie_version.hpp
|
|
ie_parse_ci_build_number()
|
|
|
|
macro (addVersionDefines FILE)
|
|
set(__version_file ${FILE})
|
|
if(NOT IS_ABSOLUTE ${__version_file})
|
|
set(__version_file "${CMAKE_CURRENT_SOURCE_DIR}/${__version_file}")
|
|
endif()
|
|
if(NOT EXISTS ${__version_file})
|
|
message(FATAL_ERROR "${FILE} does not exists in current source directory")
|
|
endif()
|
|
foreach (VAR ${ARGN})
|
|
if (DEFINED ${VAR} AND NOT "${${VAR}}" STREQUAL "")
|
|
set_property(
|
|
SOURCE ${__version_file}
|
|
APPEND
|
|
PROPERTY COMPILE_DEFINITIONS
|
|
${VAR}="${${VAR}}")
|
|
endif()
|
|
endforeach()
|
|
unset(__version_file)
|
|
endmacro()
|