Externals configuration file

Store configuration of external repositories in a JSON file.

Add command to dump configuration to stdout.

Change-Id: I84d5388d9bd31e4d1c6626260c9418e07446634a
4 files changed
tree: 12a8d4b1cfbcb2e97fb4f7696dcdea17da75a2e6
  1. .gitignore
  2. LICENSE.txt
  3. README.md
  4. externals.json
  5. fetch_externals.py
README.md

Ethos-u

This is the root repository for all Arm Ethos-U software. It is provided to help users download required repositories and place them in a tree structure.

$ ./fetch_externals.py fetch

The script will build following tree structure.

Directory
.
+-- core_software
|   +-- core_driver
|   +-- cmsis
|   +-- tensorflow
+-- linux_driver_stack
+-- vela
DirectoryDescription
.This is the root directory for all Arm Ethos-U software.
core_softwareThe 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.
core_driverThe Arm Ethos-U NPU driver.
cmsisCMSIS provides optimized kernels and generic interfaces to the Arm Cortex-M CPUs.
tensorflowThe TensorFlow Lite microcontroller framework is used to run inferences.
linux_driver_stackExample driver stack showing how Linux can dispatch inferences to an Arm Ethos-U subsystem.
velaThe Vela optimizer takes a TFLu file as input and replaces operators that are supported by the Arm Ethos-U NPU with custom operators designed to run on the NPU. Operators not supported by the NPU are executed in software.