2020-03-27 14:49:12 +08:00
|
|
|
#!/bin/bash
|
2021-05-29 18:24:18 +08:00
|
|
|
# Copyright 2019-2021 Huawei Technologies Co., Ltd
|
2020-03-27 14:49:12 +08:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
# ============================================================================
|
|
|
|
|
|
|
|
set -e
|
|
|
|
BASEPATH=$(cd "$(dirname $0)"; pwd)
|
2021-09-08 19:22:22 +08:00
|
|
|
export CUDA_PATH=""
|
2020-03-27 14:49:12 +08:00
|
|
|
export BUILD_PATH="${BASEPATH}/build/"
|
2021-09-08 19:22:22 +08:00
|
|
|
|
|
|
|
source ./scripts/build/usage.sh
|
|
|
|
source ./scripts/build/default_options.sh
|
|
|
|
source ./scripts/build/option_proc_debug.sh
|
|
|
|
source ./scripts/build/option_proc_mindspore.sh
|
|
|
|
source ./scripts/build/option_proc_lite.sh
|
|
|
|
source ./scripts/build/process_options.sh
|
|
|
|
source ./scripts/build/parse_device.sh
|
|
|
|
source ./scripts/build/build_mindspore.sh
|
2020-03-27 14:49:12 +08:00
|
|
|
|
|
|
|
# check value of input is 'on' or 'off'
|
|
|
|
# usage: check_on_off arg_value arg_name
|
|
|
|
check_on_off()
|
|
|
|
{
|
|
|
|
if [[ "X$1" != "Xon" && "X$1" != "Xoff" ]]; then
|
|
|
|
echo "Invalid value $1 for option -$2"
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-05-29 18:24:18 +08:00
|
|
|
update_submodule()
|
|
|
|
{
|
|
|
|
git submodule update --init graphengine
|
|
|
|
cd "${BASEPATH}/graphengine"
|
|
|
|
git submodule update --init metadef
|
|
|
|
cd "${BASEPATH}"
|
2021-09-23 16:27:06 +08:00
|
|
|
if [[ "X$ENABLE_AKG" = "Xon" ]]; then
|
2021-12-03 14:53:24 +08:00
|
|
|
if [[ "X$ENABLE_D" == "Xon" ]]; then
|
|
|
|
git submodule update --init akg
|
|
|
|
else
|
|
|
|
GIT_LFS_SKIP_SMUDGE=1 git submodule update --init akg
|
|
|
|
fi
|
2021-05-29 18:24:18 +08:00
|
|
|
fi
|
|
|
|
}
|
2021-01-18 00:17:30 +08:00
|
|
|
|
2020-03-27 14:49:12 +08:00
|
|
|
build_exit()
|
|
|
|
{
|
|
|
|
echo "$@" >&2
|
|
|
|
stty echo
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:39:49 +08:00
|
|
|
make_clean()
|
|
|
|
{
|
2021-01-23 11:51:26 +08:00
|
|
|
echo "enable make clean"
|
2020-10-26 09:39:49 +08:00
|
|
|
cd "${BUILD_PATH}/mindspore"
|
|
|
|
cmake --build . --target clean
|
|
|
|
}
|
|
|
|
|
2021-05-29 18:24:18 +08:00
|
|
|
echo "---------------- MindSpore: build start ----------------"
|
2021-09-08 19:22:22 +08:00
|
|
|
init_default_options
|
|
|
|
process_options "$@"
|
|
|
|
parse_device
|
2021-05-29 18:24:18 +08:00
|
|
|
|
2020-07-29 02:16:33 +08:00
|
|
|
if [[ "X$COMPILE_LITE" = "Xon" ]]; then
|
2021-07-14 20:29:31 +08:00
|
|
|
export COMPILE_MINDDATA_LITE
|
|
|
|
export ENABLE_VERBOSE
|
|
|
|
export LITE_PLATFORM
|
|
|
|
export LITE_ENABLE_AAR
|
|
|
|
source mindspore/lite/build_lite.sh
|
2020-03-27 14:49:12 +08:00
|
|
|
else
|
2021-05-29 18:24:18 +08:00
|
|
|
mkdir -pv "${BUILD_PATH}/package/mindspore/lib"
|
2022-08-27 10:00:03 +08:00
|
|
|
mkdir -pv "${BUILD_PATH}/package/mindspore/lib/plugin"
|
2021-05-29 18:24:18 +08:00
|
|
|
update_submodule
|
2020-03-27 14:49:12 +08:00
|
|
|
|
2021-05-29 18:24:18 +08:00
|
|
|
build_mindspore
|
2020-10-26 09:39:49 +08:00
|
|
|
|
2021-05-29 18:24:18 +08:00
|
|
|
if [[ "X$ENABLE_MAKE_CLEAN" = "Xon" ]]; then
|
|
|
|
make_clean
|
|
|
|
fi
|
|
|
|
if [[ "X$ENABLE_ACL" == "Xon" ]] && [[ "X$ENABLE_D" == "Xoff" ]]; then
|
|
|
|
echo "acl mode, skipping deploy phase"
|
|
|
|
rm -rf ${BASEPATH}/output/_CPack_Packages/
|
2022-12-16 15:21:05 +08:00
|
|
|
elif [[ "X$FASTER_BUILD_FOR_PLUGINS" == "Xon" ]]; then
|
|
|
|
echo "plugin mode, skipping deploy phase"
|
|
|
|
rm -rf ${BASEPATH}/output/_CPack_Packages/
|
|
|
|
else
|
2021-12-15 10:33:16 +08:00
|
|
|
cp -rf ${BUILD_PATH}/package/mindspore/lib ${BASEPATH}/mindspore/python/mindspore
|
|
|
|
cp -rf ${BUILD_PATH}/package/mindspore/*.so ${BASEPATH}/mindspore/python/mindspore
|
2021-05-29 18:24:18 +08:00
|
|
|
fi
|
2021-05-26 11:31:02 +08:00
|
|
|
fi
|
2021-05-29 18:24:18 +08:00
|
|
|
echo "---------------- MindSpore: build end ----------------"
|