130 lines
4.5 KiB
Bash
Executable File
130 lines
4.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Copyright (C) 2021-2022 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set -ex
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
REPO_DIR="$( cd "$( dirname "${DIR}/../../../../" )" && pwd )"
|
|
|
|
BUILD_DIR="${REPO_DIR}/../build_opencl"
|
|
NEO_SKIP_UNIT_TESTS=${NEO_SKIP_UNIT_TESTS:-FALSE}
|
|
NEO_DISABLE_BUILTINS_COMPILATION=${NEO_DISABLE_BUILTINS_COMPILATION:-FALSE}
|
|
SPEC_FILE="${SPEC_FILE:-${OS_TYPE}}"
|
|
|
|
BRANCH_SUFFIX="$( cat ${REPO_DIR}/.branch )"
|
|
|
|
ENABLE_OPENCL="${ENABLE_OPENCL:-1}"
|
|
if [ "${ENABLE_OPENCL}" == "0" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
LOG_CCACHE_STATS="${LOG_CCACHE_STATS:-0}"
|
|
|
|
export BUILD_ID="${BUILD_ID:-1}"
|
|
export CMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE:-Release}"
|
|
export DO_NOT_RUN_AUB_TESTS="${DO_NOT_RUN_AUB_TESTS:-FALSE}"
|
|
|
|
source "${REPO_DIR}/scripts/packaging/${BRANCH_SUFFIX}/functions.sh"
|
|
source "${REPO_DIR}/scripts/packaging/${BRANCH_SUFFIX}/opencl/opencl.sh"
|
|
|
|
get_api_version # API_VERSION-API_VERSION_SRC and API_DEB_MODEL_LINK
|
|
get_opencl_version # NEO_OCL_VERSION_MAJOR.NEO_OCL_VERSION_MINOR.NEO_OCL_VERSION_BUILD
|
|
|
|
export NEO_OCL_VERSION_MAJOR
|
|
export NEO_OCL_VERSION_MINOR
|
|
export NEO_OCL_VERSION_BUILD
|
|
|
|
if [ -z "${BRANCH_SUFFIX}" ]; then
|
|
VERSION="${NEO_OCL_VERSION_MAJOR}.${NEO_OCL_VERSION_MINOR}.${NEO_OCL_VERSION_BUILD}${API_DEB_MODEL_LINK}"
|
|
else
|
|
VERSION="1:${NEO_OCL_VERSION_MAJOR}.${NEO_OCL_VERSION_MINOR}.${NEO_OCL_VERSION_BUILD}${API_VERSION}-${NEO_OCL_VERSION_HOTFIX}${API_VERSION_SRC}${API_DEB_MODEL_LINK}"
|
|
fi
|
|
|
|
PKG_VERSION=${VERSION}
|
|
|
|
if [ "${CMAKE_BUILD_TYPE}" != "Release" ]; then
|
|
PKG_VERSION="${PKG_VERSION}+$(echo "$CMAKE_BUILD_TYPE" | tr '[:upper:]' '[:lower:]')1"
|
|
fi
|
|
|
|
rm -rf $BUILD_DIR
|
|
mkdir -p $BUILD_DIR/debian
|
|
|
|
COPYRIGHT="${REPO_DIR}/scripts/packaging/${BRANCH_SUFFIX}/opencl/${SPEC_FILE}/copyright"
|
|
CONTROL="${REPO_DIR}/scripts/packaging/${BRANCH_SUFFIX}/opencl/${SPEC_FILE}/control"
|
|
SHLIBS="${REPO_DIR}/scripts/packaging/${BRANCH_SUFFIX}/opencl/${SPEC_FILE}/shlibs.local"
|
|
|
|
cp -pR ${REPO_DIR}/scripts/packaging/opencl/${SPEC_FILE}/debian/* $BUILD_DIR/debian/
|
|
cp $COPYRIGHT $BUILD_DIR/debian/
|
|
cp $CONTROL $BUILD_DIR/debian/
|
|
if [ -f "${SHLIBS}" ]; then
|
|
cp $SHLIBS $BUILD_DIR/debian/
|
|
fi
|
|
|
|
if [ -z "${BRANCH_SUFFIX}" ]; then
|
|
GMM_VERSION=$(apt-cache policy libigdgmm12 | grep Installed | cut -f2- -d ':' | xargs)
|
|
if [ ! -z "${GMM_VERSION}" ]; then
|
|
perl -pi -e "s/^ libigdgmm12(?=,|$)/ libigdgmm12 (>=$GMM_VERSION)/" "$BUILD_DIR/debian/control"
|
|
fi
|
|
GMM_DEVEL_VERSION=$(apt-cache policy libigdgmm-dev | grep Installed | cut -f2- -d ':' | xargs)
|
|
if [ ! -z "${GMM_DEVEL_VERSION}" ]; then
|
|
perl -pi -e "s/^ libigdgmm-dev(?=,|$)/ libigdgmm-dev (>=$GMM_DEVEL_VERSION)/" "$BUILD_DIR/debian/control"
|
|
fi
|
|
|
|
IGC_VERSION=$(apt-cache policy intel-igc-opencl | grep Installed | cut -f2- -d ':' | xargs)
|
|
if [ ! -z "${IGC_VERSION}" ]; then
|
|
perl -pi -e "s/^ intel-igc-opencl(?=,|$)/ intel-igc-opencl (=$IGC_VERSION)/" "$BUILD_DIR/debian/control"
|
|
fi
|
|
IGC_DEVEL_VERSION=$(apt-cache policy intel-igc-opencl-devel | grep Installed | cut -f2- -d ':' | xargs)
|
|
if [ ! -z "${IGC_DEVEL_VERSION}" ]; then
|
|
perl -pi -e "s/^ intel-igc-opencl-devel(?=,|$)/ intel-igc-opencl-devel (=$IGC_DEVEL_VERSION)/" "$BUILD_DIR/debian/control"
|
|
fi
|
|
fi
|
|
|
|
#needs a top level CMAKE file
|
|
cat << EOF | tee $BUILD_DIR/CMakeLists.txt
|
|
cmake_minimum_required (VERSION 3.2 FATAL_ERROR)
|
|
|
|
project(neo)
|
|
|
|
add_subdirectory($REPO_DIR neo)
|
|
EOF
|
|
|
|
(
|
|
cd $BUILD_DIR
|
|
if [ "${LOG_CCACHE_STATS}" == "1" ]; then
|
|
ccache -z
|
|
fi
|
|
export DEB_BUILD_OPTIONS="nodocs notest nocheck"
|
|
export DH_VERBOSE=1
|
|
if [ "${CMAKE_BUILD_TYPE}" != "Release" ]; then
|
|
export DH_INTERNAL_BUILDFLAGS=1
|
|
fi
|
|
if [ "${ENABLE_ULT}" == "0" ]; then
|
|
NEO_SKIP_UNIT_TESTS="TRUE"
|
|
fi
|
|
if [ "${TARGET_ARCH}" == "aarch64" ]; then
|
|
NEO_SKIP_UNIT_TESTS="TRUE"
|
|
export NEO_DISABLE_BUILTINS_COMPILATION="TRUE"
|
|
fi
|
|
export NEO_DISABLE_BUILTINS_COMPILATION
|
|
export NEO_SKIP_UNIT_TESTS
|
|
|
|
dch -v ${PKG_VERSION} -m "build $PKG_VERSION" -b
|
|
dpkg-buildpackage -j`nproc --all` -us -uc -b -rfakeroot
|
|
sudo dpkg -i --force-depends ../*.deb
|
|
if [ "${LOG_CCACHE_STATS}" == "1" ]; then
|
|
ccache -s
|
|
ccache -s | grep 'cache hit rate' | cut -d ' ' -f 4- | xargs -I{} echo OpenCL {} >> $REPO_DIR/../output/logs/ccache.log
|
|
fi
|
|
)
|
|
|
|
mkdir -p ${REPO_DIR}/../output/dbgsym
|
|
|
|
mv ${REPO_DIR}/../*.deb ${REPO_DIR}/../output/
|
|
find ${REPO_DIR}/.. -maxdepth 1 -name \*.ddeb -type f -print0 | xargs -0r mv -t ${REPO_DIR}/../output/dbgsym/
|