* Removed Intel MYRIAD plugin * Removed Intel MYIAD from CI files * Removed Intel MYRIAD from cmake folder * Removed MYRIAD, HDDL from samples * Removed MYRIAD, HDDL from scripts folder * Removed MYRIAD from bindings folder (C and Python API) * Removed MYRIAD tests * Removed MYRIAD from tests folder * Removed MYRIAD from tools folder * Removed HDDL (VAD), MYRIAD (NSC2) from documentation * Fixed build for AUTO unit tests * Fixed clang code style * Fixed comments and issues * removed MYRIAD from AUTO tests * Disabled MULTI tests in CI * Update docs/OV_Runtime_UG/auto_device_selection.md Co-authored-by: Yuan Xu <yuan1.xu@intel.com> * Update docs/get_started/get_started_demos.md Co-authored-by: Yuan Xu <yuan1.xu@intel.com> * Update docs/OV_Runtime_UG/deployment/local-distribution.md Co-authored-by: Yuan Xu <yuan1.xu@intel.com> Co-authored-by: Yuan Xu <yuan1.xu@intel.com>
166 lines
6.6 KiB
Bash
Executable File
166 lines
6.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "$(realpath "${BASH_SOURCE[0]}")" )" >/dev/null 2>&1 && pwd )"
|
|
INSTALLDIR="${SCRIPT_DIR}"
|
|
export INTEL_OPENVINO_DIR="$INSTALLDIR"
|
|
|
|
# parse command line options
|
|
while [ $# -gt 0 ]
|
|
do
|
|
key="$1"
|
|
case $key in
|
|
-pyver)
|
|
python_version=$2
|
|
echo python_version = "${python_version}"
|
|
shift
|
|
;;
|
|
*)
|
|
# unknown option
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
if [ -e "$INSTALLDIR/runtime" ]; then
|
|
export InferenceEngine_DIR=$INSTALLDIR/runtime/cmake
|
|
export ngraph_DIR=$INSTALLDIR/runtime/cmake
|
|
export OpenVINO_DIR=$INSTALLDIR/runtime/cmake
|
|
|
|
system_type=$(ls "$INSTALLDIR/runtime/lib/")
|
|
IE_PLUGINS_PATH=$INSTALLDIR/runtime/lib/$system_type
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
export DYLD_LIBRARY_PATH=${IE_PLUGINS_PATH}/Release:${IE_PLUGINS_PATH}/Debug${DYLD_LIBRARY_PATH:+:$DYLD_LIBRARY_PATH}
|
|
export LD_LIBRARY_PATH=${IE_PLUGINS_PATH}/Release:${IE_PLUGINS_PATH}/Debug${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
|
export PKG_CONFIG_PATH=${IE_PLUGINS_PATH}/Release/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}
|
|
else
|
|
export LD_LIBRARY_PATH=${IE_PLUGINS_PATH}${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
|
export PKG_CONFIG_PATH=$IE_PLUGINS_PATH/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}
|
|
fi
|
|
|
|
if [ -e "$INSTALLDIR/runtime/3rdparty/tbb" ]; then
|
|
tbb_lib_path=$INSTALLDIR/runtime/3rdparty/tbb/lib
|
|
if [ -d "$tbb_lib_path/$system_type" ]; then
|
|
lib_path=$(find "$tbb_lib_path/$system_type" -name "libtbb*" | sort -r | head -n1)
|
|
if [ -n "$lib_path" ]; then
|
|
tbb_lib_path=$(dirname "$lib_path")
|
|
fi
|
|
fi
|
|
|
|
if ls "$tbb_lib_path"/libtbb* >/dev/null 2>&1; then
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
export DYLD_LIBRARY_PATH=$tbb_lib_path:${DYLD_LIBRARY_PATH:+:$DYLD_LIBRARY_PATH}
|
|
fi
|
|
export LD_LIBRARY_PATH=$tbb_lib_path:${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH}
|
|
else
|
|
echo "[setupvars.sh] WARNING: Directory with TBB libraries is not detected. Please, add TBB libraries to LD_LIBRARY_PATH / DYLD_LIBRARY_PATH manually"
|
|
fi
|
|
|
|
if [ -e "$INSTALLDIR/runtime/3rdparty/tbb/lib/cmake/TBB" ]; then
|
|
export TBB_DIR=$INSTALLDIR/runtime/3rdparty/tbb/lib/cmake/TBB
|
|
elif [ -e "$INSTALLDIR/runtime/3rdparty/tbb/lib/cmake/tbb" ]; then
|
|
export TBB_DIR=$INSTALLDIR/runtime/3rdparty/tbb/lib/cmake/tbb
|
|
elif [ -e "$INSTALLDIR/runtime/3rdparty/tbb/lib64/cmake/TBB" ]; then
|
|
export TBB_DIR=$INSTALLDIR/runtime/3rdparty/tbb/lib64/cmake/TBB
|
|
elif [ -e "$INSTALLDIR/runtime/3rdparty/tbb/cmake" ]; then
|
|
export TBB_DIR=$INSTALLDIR/runtime/3rdparty/tbb/cmake
|
|
else
|
|
echo "[setupvars.sh] WARNING: TBB_DIR directory is not defined automatically by setupvars.sh. Please, set it manually to point to TBBConfig.cmake"
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if [ -e "$INSTALLDIR/tools/compile_tool" ]; then
|
|
export LD_LIBRARY_PATH=$INSTALLDIR/tools/compile_tool${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
|
fi
|
|
|
|
# OpenCV environment
|
|
if [ -f "$INSTALLDIR/opencv/setupvars.sh" ]; then
|
|
source "$INSTALLDIR/opencv/setupvars.sh"
|
|
fi
|
|
|
|
if [ -f "$INSTALLDIR/extras/opencv/setupvars.sh" ]; then
|
|
source "$INSTALLDIR/extras/opencv/setupvars.sh"
|
|
fi
|
|
|
|
OS_NAME=""
|
|
if command -v lsb_release >/dev/null 2>&1; then
|
|
OS_NAME=$(lsb_release -i -s)
|
|
fi
|
|
|
|
PYTHON_VERSION_MAJOR="3"
|
|
MIN_REQUIRED_PYTHON_VERSION_MINOR="7"
|
|
MAX_SUPPORTED_PYTHON_VERSION_MINOR="10"
|
|
|
|
check_python_version () {
|
|
if [ -z "$python_version" ]; then
|
|
python_version=$(python3 -c 'import sys; print(str(sys.version_info[0])+"."+str(sys.version_info[1]))')
|
|
fi
|
|
|
|
# splitting Python version variable depending on the used shell
|
|
if [ -n "$ZSH_VERSION" ]; then
|
|
version_arr=(${(@s:.:)python_version})
|
|
if [ "${#version_arr[@]}" -ge "2" ]; then
|
|
# zsh starts indexing from 1
|
|
python_version_major=${version_arr[1]}
|
|
python_version_minor=${version_arr[2]}
|
|
fi
|
|
else
|
|
version_arr=(${python_version//./ })
|
|
if [ "${#version_arr[@]}" -ge "2" ]; then
|
|
python_version_major=${version_arr[0]}
|
|
python_version_minor=${version_arr[1]}
|
|
fi
|
|
fi
|
|
|
|
if [ "$PYTHON_VERSION_MAJOR" != "$python_version_major" ] ||
|
|
[ "$python_version_minor" -lt "$MIN_REQUIRED_PYTHON_VERSION_MINOR" ] ||
|
|
[ "$python_version_minor" -gt "$MAX_SUPPORTED_PYTHON_VERSION_MINOR" ] ; then
|
|
echo "[setupvars.sh] WARNING: Unsupported Python version. Please install one of Python" \
|
|
"${PYTHON_VERSION_MAJOR}.${MIN_REQUIRED_PYTHON_VERSION_MINOR} -" \
|
|
"${PYTHON_VERSION_MAJOR}.${MAX_SUPPORTED_PYTHON_VERSION_MINOR} (64-bit) from https://www.python.org/downloads/"
|
|
return 0
|
|
fi
|
|
python_bitness=$(python"$python_version" -c 'import sys; print(64 if sys.maxsize > 2**32 else 32)')
|
|
|
|
if [ "$python_bitness" != "" ] && [ "$python_bitness" != "64" ] && [ "$OS_NAME" != "Raspbian" ]; then
|
|
echo "[setupvars.sh] WARNING: 64 bitness for Python $python_version is required"
|
|
fi
|
|
|
|
if [ -n "$python_version" ]; then
|
|
if [[ -d $INTEL_OPENVINO_DIR/python ]]; then
|
|
# add path to OpenCV API for Python 3.x
|
|
export PYTHONPATH="$INTEL_OPENVINO_DIR/python/python3:$PYTHONPATH"
|
|
pydir=$INTEL_OPENVINO_DIR/python/python$python_version
|
|
if [[ -d $pydir ]]; then
|
|
# add path to Inference Engine Python API
|
|
export PYTHONPATH="${pydir}:${PYTHONPATH}"
|
|
else
|
|
echo "[setupvars.sh] WARNING: Can not find OpenVINO Python module for python${python_version} by path ${pydir}"
|
|
echo "[setupvars.sh] WARNING: OpenVINO Python environment does not set properly"
|
|
fi
|
|
else
|
|
echo "[setupvars.sh] WARNING: Can not find OpenVINO Python binaries by path ${INTEL_OPENVINO_DIR}/python"
|
|
echo "[setupvars.sh] WARNING: OpenVINO Python environment does not set properly"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
python_version_to_check="$python_version"
|
|
if [ -z "$python_version" ]; then
|
|
python_version_to_check="3"
|
|
fi
|
|
|
|
if ! command -v python"$python_version_to_check" > /dev/null 2>&1; then
|
|
echo "[setupvars.sh] WARNING: Python is not installed. Please install one of Python" \
|
|
"${PYTHON_VERSION_MAJOR}.${MIN_REQUIRED_PYTHON_VERSION_MINOR} -" \
|
|
"${PYTHON_VERSION_MAJOR}.${MAX_SUPPORTED_PYTHON_VERSION_MINOR} (64-bit) from https://www.python.org/downloads/"
|
|
else
|
|
check_python_version
|
|
fi
|
|
|
|
echo "[setupvars.sh] OpenVINO environment initialized"
|