Skip to content

Commit a1eb048

Browse files
authored
Replace mlplatform links for ethos-u with updated gitlab links (#3148) (#3149)
BUG=#3148 * Updates all references from mlplatform to gitlab when referring to ethos-u dependencies Signed-off-by: Ryan O'Shea <[email protected]>
1 parent bbf70db commit a1eb048

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

tensorflow/lite/micro/cortex_m_corstone_300/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://developer.arm.com/ip-products/subsystem/corstone/corstone-300)
1010

1111
Building the Corstone-300 based target has the following dependencies:
1212

13-
- [Arm Ethos-U Core Platform](https://review.mlplatform.org/admin/repos/ml/ethos-u/ethos-u-core-platform)
13+
- [Arm Ethos-U Core Platform](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-platform)
1414
- Arm Ethos-U Core Platform provides the linker file as well as UART and retarget functions.
1515
- [CMSIS](https://github.com/ARM-software/CMSIS_6) + [CMSIS-Cortex_DFP](https://github.com/ARM-software/Cortex_DFP)
1616
- CMSIS provides startup functionality, e.g. for setting up interrupt handlers and clock speed.

tensorflow/lite/micro/kernels/ethos_u/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Arm(R) Ethos(TM)-U is a new class of machine learning processors, called a
55
microNPU, specifically designed to accelerate ML inference in area-constrained
66
embedded and IoT devices. This readme briefly describes how to integrate Ethos-U
7-
related hardware and software into TFLM. See also [Ethos-U ML Evaluation kit examples](https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ml-embedded-evaluation-kit).
7+
related hardware and software into TFLM. See also [Ethos-U ML Evaluation kit examples](https://gitlab.arm.com/artificial-intelligence/ethos-u/ml-embedded-evaluation-kit).
88

99
To enable the Ethos-U software stack, add `CO_PROCESSOR=ethos_u` to the make
1010
command. Use ETHOSU_ARCH to specify the architecture. See examples below.
@@ -18,7 +18,7 @@ The TFLM runtime will dispatch workloads to Ethos-U when it encounters an
1818
Ethos-U custom op in the tflite file. See an ASCII art example below.
1919
The Ethos-U custom op is added by a tool called Ethos-U Vela and contains
2020
information the Ethos-U hardware need to execute the workload. More info in the
21-
[Vela repository](https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u-vela).
21+
[Vela repository](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela).
2222

2323
```
2424
| tensor0
@@ -44,9 +44,9 @@ information the Ethos-U hardware need to execute the workload. More info in the
4444
```
4545

4646
Note that the `ethousu_init()` API of the Ethos-U driver need to be called at
47-
startup, before calling the TFLM API. More info in the [Ethos-U driver repo](https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u-core-driver).
47+
startup, before calling the TFLM API. More info in the [Ethos-U driver repo](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver).
4848

49-
For even more info regarding Vela and Ethos-U, checkout [Ethos-U landing page](https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u/+/refs/heads/master).
49+
For even more info regarding Vela and Ethos-U, checkout [Ethos-U landing page](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u/-/tree/main).
5050

5151
# Some examples of compiling a binary and running a network with Ethos-U support.
5252
In order to run a test with Ethos-U55 enabled, a platform with corresponding

tensorflow/lite/micro/tools/make/ethos_u_core_driver_download.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2024 The TensorFlow Authors. All Rights Reserved.
2+
# Copyright 2025 The TensorFlow Authors. All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ else
5151
exit 1
5252
fi
5353

54-
git clone "https://review.mlplatform.org/ml/ethos-u/ethos-u-core-driver" \
54+
git clone "https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver" \
5555
${DOWNLOADED_ETHOS_U_CORE_DRIVER_PATH} >&2
5656
pushd ${DOWNLOADED_ETHOS_U_CORE_DRIVER_PATH} > /dev/null
5757
git -c advice.detachedHead=false checkout 9622608a5cc318c0933bcce720b59737d03bfb6f

tensorflow/lite/micro/tools/make/ethos_u_core_platform_download.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2024 The TensorFlow Authors. All Rights Reserved.
2+
# Copyright 2025 The TensorFlow Authors. All Rights Reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ else
5151
exit 1
5252
fi
5353

54-
git clone "https://review.mlplatform.org/ml/ethos-u/ethos-u-core-platform" ${DOWNLOADED_ETHOS_U_CORE_PLATFORM_PATH} >&2
54+
git clone "https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-platform" ${DOWNLOADED_ETHOS_U_CORE_PLATFORM_PATH} >&2
5555
pushd ${DOWNLOADED_ETHOS_U_CORE_PLATFORM_PATH} > /dev/null
5656
git checkout e25a89dec1cf990f3168dbd6c565e3b0d51cb151 >&2
5757
rm -rf .git

0 commit comments

Comments
 (0)