blob: b62c9b1615680f389d44ec431aa83096e395d55b [file] [log] [blame]
alexander3ef1fd42021-05-24 18:56:32 +01001#!/usr/bin/env python3
2
Richard Burtonb4123fd2022-03-04 09:19:09 +00003# Copyright (c) 2021-2022 Arm Limited. All rights reserved.
alexander3ef1fd42021-05-24 18:56:32 +01004# SPDX-License-Identifier: Apache-2.0
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
Richard Burton17069622022-03-17 10:54:26 +000018"""This script does effectively the same as "git submodule update --init" command."""
alexander3ef1fd42021-05-24 18:56:32 +010019import logging
alexander3ef1fd42021-05-24 18:56:32 +010020import sys
21import tarfile
22import tempfile
23from urllib.request import urlopen
24from zipfile import ZipFile
Richard Burton17069622022-03-17 10:54:26 +000025from pathlib import Path
alexander3ef1fd42021-05-24 18:56:32 +010026
Richard Burton17069622022-03-17 10:54:26 +000027TF = "https://github.com/tensorflow/tflite-micro/archive/1a0287fc5fa81fa6aa1dcfb0c5b2e01f74164393.zip"
28CMSIS = "https://github.com/ARM-software/CMSIS_5/archive/9b5df640c777563919affb4e9201c96c657adbb2.zip"
29ETHOS_U_CORE_DRIVER = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-driver.git/snapshot/ethos-u-core-driver-22.02.tar.gz"
30ETHOS_U_CORE_PLATFORM = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-platform.git/snapshot/ethos-u-core-platform-22.02.tar.gz"
31
alexander3ef1fd42021-05-24 18:56:32 +010032
33def download(url_file: str, post_process=None):
34 with urlopen(url_file) as response, tempfile.NamedTemporaryFile() as temp:
35 logging.info(f"Downloading {url_file} ...")
36 temp.write(response.read())
37 temp.seek(0)
38 logging.info(f"Finished downloading {url_file}.")
39 if post_process:
40 post_process(temp)
41
42
43def unzip(file, to_path):
44 with ZipFile(file) as z:
45 for archive_path in z.infolist():
46 archive_path.filename = archive_path.filename[archive_path.filename.find("/") + 1:]
47 if archive_path.filename:
48 z.extract(archive_path, to_path)
Richard Burton17069622022-03-17 10:54:26 +000049 target_path = to_path / archive_path.filename
alexander3ef1fd42021-05-24 18:56:32 +010050 attr = archive_path.external_attr >> 16
51 if attr != 0:
Richard Burton17069622022-03-17 10:54:26 +000052 target_path.chmod(attr)
alexander3ef1fd42021-05-24 18:56:32 +010053
54
55def untar(file, to_path):
56 with tarfile.open(file) as z:
57 for archive_path in z.getmembers():
58 index = archive_path.name.find("/")
59 if index < 0:
60 continue
61 archive_path.name = archive_path.name[index + 1:]
62 if archive_path.name:
63 z.extract(archive_path, to_path)
64
65
Richard Burton17069622022-03-17 10:54:26 +000066def main(dependencies_path: Path):
alexander3ef1fd42021-05-24 18:56:32 +010067
Richard Burton17069622022-03-17 10:54:26 +000068 download(CMSIS,
69 lambda file: unzip(file.name, to_path=dependencies_path / "cmsis"))
70 download(ETHOS_U_CORE_DRIVER,
71 lambda file: untar(file.name, to_path=dependencies_path / "core-driver"))
72 download(ETHOS_U_CORE_PLATFORM,
73 lambda file: untar(file.name, to_path=dependencies_path / "core-platform"))
74 download(TF,
75 lambda file: unzip(file.name, to_path=dependencies_path / "tensorflow"))
alexander3ef1fd42021-05-24 18:56:32 +010076
77
78if __name__ == '__main__':
Isabella Gottardi31494862021-08-13 16:29:39 +010079 logging.basicConfig(filename='download_dependencies.log', level=logging.DEBUG, filemode='w')
Isabella Gottardic5d8bda2021-07-21 10:35:08 +010080 logging.getLogger().addHandler(logging.StreamHandler(sys.stdout))
81
Richard Burton17069622022-03-17 10:54:26 +000082 download_dir = Path(__file__).parent.resolve() / "dependencies"
alexander3ef1fd42021-05-24 18:56:32 +010083
Richard Burton17069622022-03-17 10:54:26 +000084 if download_dir.is_dir():
alexander3ef1fd42021-05-24 18:56:32 +010085 logging.info(f'{download_dir} exists. Skipping download.')
86 else:
87 main(download_dir)