Files
openvino/inference-engine/cmake/features_ie.cmake

115 lines
4.8 KiB
CMake
Raw Normal View History

2020-02-11 22:48:49 +03:00
# Copyright (C) 2018-2020 Intel Corporation
2018-10-16 13:45:03 +03:00
# SPDX-License-Identifier: Apache-2.0
#
2020-02-11 22:48:49 +03:00
include (target_flags)
2019-04-12 18:25:53 +03:00
include (options)
2018-10-16 13:45:03 +03:00
2019-10-04 19:26:43 +03:00
#these options are aimed to optimize build time on development system
2018-10-16 13:45:03 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_GNA "GNA support for inference engine" ON "NOT APPLE;NOT ANDROID;X86 OR X86_64" OFF)
2018-10-16 13:45:03 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_CLDNN_TESTS "Enable clDNN unit tests" OFF "ENABLE_CLDNN" OFF)
2019-10-04 19:26:43 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_PROFILING_ITT "ITT tracing of IE and plugins internals" ON "NOT CMAKE_CROSSCOMPILING" OFF)
2018-10-16 13:45:03 +03:00
2018-11-23 16:19:43 +03:00
# "MKL-DNN library might use MKL-ML or OpenBLAS for gemm tasks: MKL|OPENBLAS|JIT"
2020-04-13 21:17:23 +03:00
if (ENABLE_MKL_DNN)
if(AARCH64)
set(GEMM_DEFAULT "OPENBLAS")
2020-02-11 22:48:49 +03:00
else()
2020-04-13 21:17:23 +03:00
set(GEMM_DEFAULT "JIT")
endif()
set(GEMM "${GEMM_DEFAULT}" CACHE STRING "GEMM implementation")
set_property(CACHE GEMM PROPERTY STRINGS "MKL" "OPENBLAS" "JIT")
list (APPEND IE_OPTIONS GEMM)
if (NOT GEMM STREQUAL "MKL" AND
NOT GEMM STREQUAL "OPENBLAS" AND
NOT GEMM STREQUAL "JIT")
message(FATAL_ERROR "GEMM should be set to MKL, OPENBLAS or JIT. Default option is ${GEMM_DEFAULT}")
2020-02-11 22:48:49 +03:00
endif()
2018-10-16 13:45:03 +03:00
endif()
2018-11-23 16:19:43 +03:00
# "MKL-DNN library based on OMP or TBB or Sequential implementation: TBB|OMP|SEQ"
2020-04-13 21:17:23 +03:00
if(ARM)
set(THREADING_DEFAULT "SEQ")
else()
set(THREADING_DEFAULT "TBB")
endif()
set(THREADING "${THREADING_DEFAULT}" CACHE STRING "Threading")
set_property(CACHE THREADING PROPERTY STRINGS "TBB" "TBB_AUTO" "OMP" "SEQ")
list (APPEND IE_OPTIONS THREADING)
if (NOT THREADING STREQUAL "TBB" AND
NOT THREADING STREQUAL "TBB_AUTO" AND
NOT THREADING STREQUAL "OMP" AND
NOT THREADING STREQUAL "SEQ")
message(FATAL_ERROR "THREADING should be set to TBB, TBB_AUTO, OMP or SEQ. Default option is ${THREADING_DEFAULT}")
endif()
if (ENABLE_GNA)
if (UNIX AND NOT APPLE AND CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.4)
set (DEFAULT_GNA_LIB GNA1)
2020-02-11 22:48:49 +03:00
else()
2020-04-13 21:17:23 +03:00
set (DEFAULT_GNA_LIB GNA1_1401)
endif()
set(GNA_LIBRARY_VERSION "${DEFAULT_GNA_LIB}" CACHE STRING "GNAVersion")
set_property(CACHE GNA_LIBRARY_VERSION PROPERTY STRINGS "GNA1" "GNA1_1401" "GNA2")
list (APPEND IE_OPTIONS GNA_LIBRARY_VERSION)
if (NOT GNA_LIBRARY_VERSION STREQUAL "GNA1" AND
NOT GNA_LIBRARY_VERSION STREQUAL "GNA1_1401" AND
NOT GNA_LIBRARY_VERSION STREQUAL "GNA2")
message(FATAL_ERROR "GNA_LIBRARY_VERSION should be set to GNA1, GNA1_1401 or GNA2. Default option is ${DEFAULT_GNA_LIB}")
2020-02-11 22:48:49 +03:00
endif()
2018-11-23 16:19:43 +03:00
endif()
2020-04-13 21:17:23 +03:00
ie_option (ENABLE_IR_READER "Compile with IR readers / parsers" ON)
2018-10-16 13:45:03 +03:00
ie_option (ENABLE_VPU "vpu targeted plugins for inference engine" ON)
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_MYRIAD "myriad targeted plugin for inference engine" ON "ENABLE_VPU" OFF)
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_MYRIAD_NO_BOOT "myriad plugin will skip device boot" OFF "ENABLE_MYRIAD" OFF)
2020-02-11 22:48:49 +03:00
ie_option (ENABLE_TESTS "unit, behavior and functional tests" OFF)
2018-10-16 13:45:03 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_GAPI_TESTS "tests for GAPI kernels" OFF "ENABLE_TESTS" OFF)
2020-04-13 21:17:23 +03:00
ie_dependent_option (GAPI_TEST_PERF "if GAPI unit tests should examine performance" OFF "ENABLE_GAPI_TESTS" OFF)
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_MYRIAD_MVNC_TESTS "functional and behavior tests for mvnc api" OFF "ENABLE_TESTS;ENABLE_MYRIAD" OFF)
2019-08-09 19:02:42 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_SAMPLES "console samples are part of inference engine package" ON "NOT MINGW" OFF)
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_BEH_TESTS "tests oriented to check inference engine API corecteness" ON "ENABLE_TESTS" OFF)
2018-10-16 13:45:03 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_FUNCTIONAL_TESTS "functional tests" ON "ENABLE_TESTS;ENABLE_IR_READER" OFF)
2018-10-16 13:45:03 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option (ENABLE_SAMPLES "console samples are part of inference engine package" ON "NOT MINGW" OFF)
2019-08-09 19:02:42 +03:00
2020-04-13 21:17:23 +03:00
ie_option (ENABLE_FUZZING "instrument build for fuzzing" OFF)
2018-10-16 13:45:03 +03:00
ie_option (VERBOSE_BUILD "shows extra information about build" OFF)
ie_option (ENABLE_UNSAFE_LOCATIONS "skip check for MD5 for dependency" OFF)
ie_option (ENABLE_ALTERNATIVE_TEMP "in case of dependency conflict, to avoid modification in master, use local copy of dependency" ON)
ie_option (ENABLE_OPENCV "enables OpenCV" ON)
ie_option (ENABLE_DEBUG_SYMBOLS "generates symbols for debugging" OFF)
ie_option (ENABLE_PYTHON "enables ie python bridge build" OFF)
2019-10-04 19:26:43 +03:00
ie_option (ENABLE_CPP_CCT "enables C++ version of Cross Check Tool" OFF)
2020-02-11 22:48:49 +03:00
ie_option (ENABLE_C "enables ie c bridge build" ON)
2019-10-04 19:26:43 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option(ENABLE_CPPLINT "Enable cpplint checks during the build" OFF "OFF;UNIX;NOT APPLE;NOT ANDROID" OFF)
ie_dependent_option(ENABLE_CPPLINT_REPORT "Build cpplint report instead of failing the build" OFF "ENABLE_CPPLINT" OFF)
2019-08-09 19:02:42 +03:00
2020-02-11 22:48:49 +03:00
ie_option(ENABLE_CLANG_FORMAT "Enable clang-format checks during the build" OFF)
set(IE_EXTRA_PLUGINS "" CACHE STRING "Extra paths for plugins to include into DLDT build tree")
2018-10-16 13:45:03 +03:00
2020-04-13 21:17:23 +03:00
ie_dependent_option(ENABLE_TBB_RELEASE_ONLY "Only Release TBB libraries are linked to the Inference Engine binaries" ON "THREADING MATCHES TBB;LINUX" OFF)