mindspore/scripts/lite_release_package.sh

104 lines
4.7 KiB
Bash
Raw Permalink Normal View History

2020-12-19 17:12:43 +08:00
#!/bin/bash
2021-03-12 16:42:55 +08:00
# Copyright 2020-2021 Huawei Technologies Co., Ltd
2020-12-19 17:12:43 +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
function android_release_package()
{
2021-04-02 14:40:58 +08:00
arch=$1
device=$2
2021-06-16 14:42:58 +08:00
pkg_name="mindspore-lite-${version}-android-${arch}"
2022-09-09 11:23:36 +08:00
[ -n "${pkg_name}" ] && rm -rf ${pkg_name}
2021-06-16 14:42:58 +08:00
tar -xzf ${input_path}/android_${arch}/${device}/${pkg_name}.tar.gz
# Copy java runtime to Android package
2022-01-22 14:45:19 +08:00
cp ${input_path}/aar/mindspore-lite-*.aar ${pkg_name}
2021-06-16 14:42:58 +08:00
mkdir -p ${output_path}/release/android/${device}/
tar -czf ${output_path}/release/android/${device}/${pkg_name}.tar.gz ${pkg_name}
2022-09-09 11:23:36 +08:00
[ -n "${pkg_name}" ] && rm -rf ${pkg_name}
2021-04-02 14:40:58 +08:00
cd ${output_path}/release/android/${device}/
2021-06-16 14:42:58 +08:00
sha256sum ${pkg_name}.tar.gz > ${pkg_name}.tar.gz.sha256
2020-12-19 17:12:43 +08:00
}
2021-06-16 14:42:58 +08:00
function ios_release_package()
2020-12-19 17:12:43 +08:00
{
2021-06-16 14:42:58 +08:00
mkdir -p ${output_path}/release/ios/
2021-06-26 11:40:16 +08:00
cp ${input_path}/ios_aarch64/*.tar.gz* ${output_path}/release/ios/
cp ${input_path}/ios_aarch32/*.tar.gz* ${output_path}/release/ios/
2021-06-16 14:42:58 +08:00
}
2021-03-12 16:42:55 +08:00
2021-06-16 14:42:58 +08:00
function linux_release_package()
{
2021-07-10 15:30:57 +08:00
mkdir -p ${output_path}/release/linux/nnie/
2022-01-04 17:11:11 +08:00
mkdir -p ${output_path}/release/linux/x86_64/
mkdir -p ${output_path}/release/linux/x86_64/tensorrt/
2022-01-04 17:11:11 +08:00
mkdir -p ${output_path}/release/linux/aarch64/
2022-03-28 19:38:28 +08:00
mkdir -p ${output_path}/release/linux/x86_64/ascend/
mkdir -p ${output_path}/release/linux/aarch64/ascend/
2022-04-27 18:42:52 +08:00
mkdir -p ${output_path}/release/linux/x86_64/server/
mkdir -p ${output_path}/release/linux/aarch64/server/
2022-11-01 16:24:28 +08:00
mkdir -p ${output_path}/release/linux/x86_64/cloud_fusion/
mkdir -p ${output_path}/release/linux/aarch64/cloud_fusion/
2022-06-29 16:58:06 +08:00
mkdir -p ${output_path}/release/none/cortex_m7
2022-01-15 15:38:20 +08:00
2022-06-29 16:58:06 +08:00
cp ${input_path}/none_cortex-m/mindspore*cortex-m7.tar.gz* ${output_path}/release/none/cortex_m7/
cp ${input_path}/centos_x86/avx/mindspore*.whl* ${output_path}/release/linux/x86_64/
cp ${input_path}/centos_x86/avx/mindspore*.tar.gz* ${output_path}/release/linux/x86_64/
cp ${input_path}/linux_aarch64/mindspore*.whl* ${output_path}/release/linux/aarch64/
cp ${input_path}/linux_aarch64/mindspore*.tar.gz* ${output_path}/release/linux/aarch64/
cp ${input_path}/centos_x86/ascend/mindspore*.whl* ${output_path}/release/linux/x86_64/ascend/
cp ${input_path}/centos_x86/ascend/mindspore*.tar.gz* ${output_path}/release/linux/x86_64/ascend/
2022-11-17 19:11:21 +08:00
cp ${input_path}/linux_aarch64/ascend/mindspore*.whl* ${output_path}/release/linux/aarch64/ascend/
cp ${input_path}/linux_aarch64/ascend/mindspore*.tar.gz* ${output_path}/release/linux/aarch64/ascend/
cp ${input_path}/centos_x86/tensorrt/mindspore*.whl* ${output_path}/release/linux/x86_64/tensorrt/
cp ${input_path}/centos_x86/tensorrt/mindspore*.tar.gz* ${output_path}/release/linux/x86_64/tensorrt/
2022-04-27 18:42:52 +08:00
cp -r ${input_path}/centos_x86/server/* ${output_path}/release/linux/x86_64/server/
cp -r ${input_path}/linux_aarch64/server/* ${output_path}/release/linux/aarch64/server/
2022-11-01 16:24:28 +08:00
cp -r ${input_path}/centos_x86/cloud_fusion/* ${output_path}/release/linux/x86_64/cloud_fusion/
cp -r ${input_path}/linux_aarch64/cloud_fusion/* ${output_path}/release/linux/aarch64/cloud_fusion/
2021-07-10 15:30:57 +08:00
2021-12-20 19:39:11 +08:00
cp -r ${input_path}/linux_aarch32/nnie/Hi* ${output_path}/release/linux/nnie/
2022-01-04 17:11:11 +08:00
cp -r ${input_path}/linux_aarch64/nnie/Hi* ${output_path}/release/linux/nnie/
cp ${input_path}/centos_x86/nnie/Hi3516D/*.tar.gz* ${output_path}/release/linux/nnie/
2020-12-19 17:12:43 +08:00
}
function windows_release_package()
{
2021-06-16 14:42:58 +08:00
mkdir -p ${output_path}/release/windows/
cp ${input_path}/windows_x64/avx/*.zip* ${output_path}/release/windows/
2021-06-26 11:40:16 +08:00
cp ${input_path}/windows_x32/sse/*.zip* ${output_path}/release/windows/
2020-12-19 17:12:43 +08:00
}
echo "============================== begin =============================="
echo "Usage: bash lite_release_package.sh input_path output_path"
input_path=$1
output_path=$2
2022-09-09 11:23:36 +08:00
version=$(ls ${input_path}/android_aarch64/npu/mindspore-lite-*-*.tar.gz | awk -F'/' '{print $NF}' | cut -d"-" -f3)
2020-12-19 17:12:43 +08:00
2021-06-26 11:40:16 +08:00
android_release_package aarch32 npu
android_release_package aarch32 cpu
android_release_package aarch64 npu
2021-04-02 14:40:58 +08:00
android_release_package aarch64 gpu
2021-06-26 11:40:16 +08:00
ios_release_package
2020-12-19 17:12:43 +08:00
linux_release_package
windows_release_package
echo "Create release package success!"
echo "=============================== end ==============================="