summaryrefslogtreecommitdiff
path: root/download_dependencies.py
diff options
context:
space:
mode:
authorIsabella Gottardi <isabella.gottardi@arm.com>2021-07-21 10:35:08 +0100
committerKshitij Sisodia <kshitij.sisodia@arm.com>2021-08-13 12:55:24 +0100
commitc5d8bda3c6f743ec2725bf281874d4b6431122c3 (patch)
tree33b20cfc9c9dcbbd2e424c81b59eefd07de4db6c /download_dependencies.py
parent0d110594b8a50ce3311be5187f01de2e3b8fe995 (diff)
downloadml-embedded-evaluation-kit-c5d8bda3c6f743ec2725bf281874d4b6431122c3.tar.gz
MLECO-1982: Update to using latest ethos-u embedded components
Change-Id: I744a4eb2553207004c9403b956e5bd9e9b352bfb Signed-off-by: Isabella Gottardi <isabella.gottardi@arm.com>
Diffstat (limited to 'download_dependencies.py')
-rwxr-xr-xdownload_dependencies.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/download_dependencies.py b/download_dependencies.py
index b22c63f..9d2e6fa 100755
--- a/download_dependencies.py
+++ b/download_dependencies.py
@@ -25,13 +25,10 @@ import tempfile
from urllib.request import urlopen
from zipfile import ZipFile
-logging.basicConfig(filename='download_dependencies.log', level=logging.DEBUG)
-logging.getLogger().addHandler(logging.StreamHandler(sys.stdout))
-
-tf = "https://github.com/tensorflow/tensorflow/archive/6cff09aee1f832d495b3cae40cab0de58155a0af.zip"
-cmsis = "https://github.com/ARM-software/CMSIS_5/archive/0d7e4fa7131241a17e23dfae18140e0b2e77728f.zip"
-ethos_u_core_sw = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-software.git/snapshot/ethos-u-core-software-7f3c1c92732b611a53968b14e70a2b116e43b980.tar.gz"
-ethos_u_core_driver = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-driver.git/snapshot/ethos-u-core-driver-effc7aa8b9272fb20cdd1a7d1097818af70acc93.tar.gz"
+tf = "https://github.com/tensorflow/tflite-micro/archive/f510d38d0eaa3195ce3af66e3f32648740f08afb.zip"
+cmsis = "https://github.com/ARM-software/CMSIS_5/archive/e9637de2b4cfd99cd5c93893d88593262d8660c1.zip"
+ethos_u_core_sw = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-software.git/snapshot/ethos-u-core-software-8b1d9ded33ec59545897ff45019d05403dba7eee.tar.gz"
+ethos_u_core_driver = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-driver.git/snapshot/ethos-u-core-driver-d1ea036bd870663d737db9bfbb25e2aa04a389e0.tar.gz"
def download(url_file: str, post_process=None):
@@ -84,6 +81,9 @@ def main(dependencies_path: str):
if __name__ == '__main__':
+ logging.basicConfig(filename='download_dependencies.log', level=logging.DEBUG)
+ logging.getLogger().addHandler(logging.StreamHandler(sys.stdout))
+
download_dir = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), "dependencies"))
if os.path.isdir(download_dir):