summaryrefslogtreecommitdiff
path: root/download_dependencies.py
diff options
context:
space:
mode:
authorNina Drozd <nina.drozd@arm.com>2023-08-22 12:41:55 +0100
committerNina Drozd <nina.drozd@arm.com>2023-08-31 08:41:00 +0000
commit05c1c5a1beb8c1c17e2a06000727f9f094bc6e37 (patch)
treec31ae9200817fa9c7c5828bec1a06c623d5251df /download_dependencies.py
parent677d43fa8f55a8aa52e6bd9d1884e2797650fd65 (diff)
downloadml-embedded-evaluation-kit-05c1c5a1beb8c1c17e2a06000727f9f094bc6e37.tar.gz
MLECO-4072: update MLEK dependencies to 23.08
* version updates in cmakelists file * update submodules to 23.08 versions * updates to documentation - vela 3.9.0 Change-Id: I5e24d5729ecbd2289b04fcc845fb44f455ab38d5 Signed-off-by: Nina Drozd <nina.drozd@arm.com>
Diffstat (limited to 'download_dependencies.py')
-rwxr-xr-xdownload_dependencies.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/download_dependencies.py b/download_dependencies.py
index b07ef0d..33c7eec 100755
--- a/download_dependencies.py
+++ b/download_dependencies.py
@@ -24,12 +24,12 @@ from urllib.request import urlopen
from zipfile import ZipFile
from pathlib import Path
-TF = "https://github.com/tensorflow/tflite-micro/archive/384dd272f28ea7a99f5f7c211c9791f73cdb301b.zip"
-CMSIS = "https://github.com/ARM-software/CMSIS_5/archive/e94a96201a97be3e84d3d6ef081d2f0f7db9b5fd.zip"
-CMSIS_DSP = "https://github.com/ARM-software/CMSIS-DSP/archive/refs/tags/v1.14.4.zip"
-CMSIS_NN = "https://github.com/ARM-software/CMSIS-NN/archive/refs/tags/v4.1.0.zip"
-ETHOS_U_CORE_DRIVER = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-driver.git/snapshot/ethos-u-core-driver-23.05.tar.gz"
-ETHOS_U_CORE_PLATFORM = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-platform.git/snapshot/ethos-u-core-platform-23.05.tar.gz"
+TF = "https://github.com/tensorflow/tflite-micro/archive/80cb11b131e9738dc60b2db3e2f1f8e2425ded52.zip"
+CMSIS = "https://github.com/ARM-software/CMSIS_5/archive/a75f01746df18bb5b929dfb8dc6c9407fac3a0f3.zip"
+CMSIS_DSP = "https://github.com/ARM-software/CMSIS-DSP/archive/refs/tags/v1.15.0.zip"
+CMSIS_NN = "https://github.com/ARM-software/CMSIS-NN/archive/refs/tags/23.08.zip"
+ETHOS_U_CORE_DRIVER = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-driver.git/snapshot/ethos-u-core-driver-23.08.tar.gz"
+ETHOS_U_CORE_PLATFORM = "https://git.mlplatform.org/ml/ethos-u/ethos-u-core-platform.git/snapshot/ethos-u-core-platform-23.08.tar.gz"
def download(url_file: str, post_process=None):