aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonny Svärd <jonny.svaerd@arm.com>2024-05-30 11:40:17 +0200
committerJonny Svärd <jonny.svaerd@arm.com>2024-05-30 11:40:17 +0200
commit9d3a5afe32db7875b538a9be53961d161493fd7a (patch)
tree9b6aded86f8947b6123334abfa1ad49ec6eff1e0
parent5aea1426df25fe74d18e3fbdc6575ae1901f7e80 (diff)
downloadethos-u-master.tar.gz
24.05 releaseHEAD24.05mastermain
Signed-off-by: Jonny Svärd <jonny.svaerd@arm.com> Change-Id: I3ddc78a21c2cd45767f25dff70b39f29a2a74226
-rw-r--r--24.05.json85
-rw-r--r--README.md7
2 files changed, 91 insertions, 1 deletions
diff --git a/24.05.json b/24.05.json
new file mode 100644
index 0000000..d1876bf
--- /dev/null
+++ b/24.05.json
@@ -0,0 +1,85 @@
+{
+ "externals":
+ [
+ {
+ "path": "core_platform",
+ "fetchurl": "https://review.mlplatform.org/ml/ethos-u/ethos-u-core-platform",
+ "pushurl": "ssh://review.mlplatform.org:29418/ml/ethos-u/ethos-u-core-platform",
+ "revision": "24.05"
+ },
+ {
+ "path": "core_software",
+ "fetchurl": "https://review.mlplatform.org/ml/ethos-u/ethos-u-core-software",
+ "pushurl": "ssh://review.mlplatform.org:29418/ml/ethos-u/ethos-u-core-software",
+ "revision": "24.05"
+ },
+ {
+ "path": "core_software/core_driver",
+ "fetchurl": "https://review.mlplatform.org/ml/ethos-u/ethos-u-core-driver",
+ "pushurl": "ssh://review.mlplatform.org:29418/ml/ethos-u/ethos-u-core-driver",
+ "revision": "24.05"
+ },
+ {
+ "path": "core_software/cmsis",
+ "fetchurl": "https://github.com/ARM-software/CMSIS_5.git",
+ "revision": "51f8f89612c8330c0116479cfe3a2cb04c390e2b"
+ },
+ {
+ "path": "core_software/cmsis_6",
+ "fetchurl": "https://github.com/ARM-software/CMSIS_6.git",
+ "revision": "v6.1.0"
+ },
+ {
+ "path": "core_software/cmsis_6/Cortex_DFP",
+ "fetchurl": "https://github.com/ARM-software/Cortex_DFP.git",
+ "revision": "v1.1.0"
+ },
+ {
+ "path": "core_software/cmsis-nn",
+ "fetchurl": "https://github.com/ARM-software/CMSIS-NN.git",
+ "revision": "v6.0.0"
+ },
+ {
+ "path": "core_software/cmsis-view",
+ "fetchurl": "https://github.com/ARM-software/CMSIS-View.git",
+ "revision": "pack/1.2.0"
+ },
+ {
+ "path": "core_software/openamp/libmetal",
+ "fetchurl": "https://github.com/OpenAMP/libmetal",
+ "revision": "959fddbd706a67b0699e0dd7a46e36fe49079ef9"
+ },
+ {
+ "path": "core_software/openamp/openamp",
+ "fetchurl": "https://github.com/OpenAMP/open-amp",
+ "revision": "1680aada793d78b512f98cc1fa8fc2ee837919e5"
+ },
+ {
+ "path": "core_software/rtos/freertos/freertos_kernel",
+ "fetchurl": "https://github.com/FreeRTOS/FreeRTOS-Kernel.git",
+ "revision": "V11.0.1"
+ },
+ {
+ "path": "core_software/rtos/threadx",
+ "fetchurl": "https://github.com/eclipse-threadx/threadx",
+ "revision": "v6.4.1_rel"
+ },
+ {
+ "path": "core_software/tflite_micro",
+ "fetchurl": "https://github.com/tensorflow/tflite-micro",
+ "revision": "8e22946b3faa51564df5dd9194f7540b2694892c"
+ },
+ {
+ "path": "linux_driver_stack",
+ "fetchurl": "https://review.mlplatform.org/ml/ethos-u/ethos-u-linux-driver-stack",
+ "pushurl": "ssh://review.mlplatform.org:29418/ml/ethos-u/ethos-u-linux-driver-stack",
+ "revision": "24.05"
+ },
+ {
+ "path": "vela",
+ "fetchurl": "https://review.mlplatform.org/ml/ethos-u/ethos-u-vela",
+ "pushurl": "ssh://review.mlplatform.org:29418/ml/ethos-u/ethos-u-vela",
+ "revision": "3.12.0"
+ }
+ ]
+}
diff --git a/README.md b/README.md
index 21c1708..82e9363 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,8 @@ Directory
| [.](https://git.mlplatform.org/ml/ethos-u/ethos-u.git) | This is the root directory for all Arm Ethos-U software. |
| [core_platform](https://git.mlplatform.org/ml/ethos-u/ethos-u-core-platform.git) | This directory contains drivers, target specific files and is provided as an example how core software can be built for target platforms. |
| [core_software](https://git.mlplatform.org/ml/ethos-u/ethos-u-core-software.git) | The software executing on Arm Cortex-M is referred to as _Core Software_. This folder provides a small build system that illustrates how to build the key components for the Arm Ethos-U core software. |
-| [cmsis](https://github.com/ARM-software/CMSIS_5) | CMSIS provides generic interfaces to boot and configure the Arm Cortex-M CPUs. |
+| [cmsis](https://github.com/ARM-software/CMSIS_5) | CMSIS 5 provides generic interfaces to boot and configure the Arm Cortex-M CPUs. |
+| [cmsis_6](https://github.com/ARM-software/CMSIS_6) | CMSIS 6 provides generic interfaces to boot and configure the Arm Cortex-M CPUs. |
| [cmsis-nn](https://github.com/ARM-software/CMSIS-NN.git) | CMSIS-NN provides optimized neural network kernels for Arm Cortex-M CPUs. |
| [core_driver](https://git.mlplatform.org/ml/ethos-u/ethos-u-core-driver.git) | The Arm Ethos-U NPU driver. |
| [tflite_micro](https://github.com/tensorflow/tflite-micro) | The TensorFlow Lite microcontroller framework is used to run inferences. |
@@ -88,6 +89,10 @@ Please see [Security](SECURITY.md).
# Releases
+## Release 24.05
+
+The 24.05 release has been tested on Ubuntu 22.04.3 LTS using Tensorflow version 2.16.1 as reference.
+
## Release 24.02
The 24.02 release has been tested on Ubuntu 22.04.3 LTS using Tensorflow version 2.15 as reference.