Skip to main content

Neural network model compiler for Arm Ethos-U NPUs

Project description

Vela

Vela is a compiler for Arm Ethos-U NPU edge AI devices. It is used to convert neural networks defined in TOSA or TensorFlow Lite/LiteRT format into Ethos-U command streams.

The input network must have quantised activations and quantised weights in order to be accelerated by the Ethos-U.

More details about Ethos-U devices:

Installation

Vela runs on:

  • Apple macOS
  • Linux
  • Microsoft Windows

The simplest way to obtain Vela is to install it directly from PyPi. The following will install the latest released version:

pip3 install ethos-u-vela

Requirements

If your system does not match one of the pre-built binary wheels on PyPi then the installation process will attempt to build Vela from its source code. To do this it requires the following:

Manually Building

The source code is available from Arm's GitLab Instance, see Building From Source for more details.

Development builds

Development builds are also available as Python wheels in the GitLab Package Registry. The development builds reflect the current state of the code and are not of release quality.

Install the latest nightly build

pip3 install --pre --only-binary=ethos-u-vela \
  --index-url=https://gitlab.arm.com/api/v4/projects/10397/packages/pypi/simple \
  ethos-u-vela

Install a specific nightly build

pip3 install --only-binary=ethos-u-vela \
  --index-url=https://gitlab.arm.com/api/v4/projects/10397/packages/pypi/simple \
  "ethos-u-vela==<exact dev version>"

Discover available nightly versions

Use pip index versions with pre-releases enabled and restrict to wheels:

pip3 index versions --pre --only-binary=ethos-u-vela \
  --index-url=https://gitlab.arm.com/api/v4/projects/10397/packages/pypi/simple \
  ethos-u-vela

Or browse the Package Registry on GitLab: https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/packages

Getting Started

Once installed, Vela can be run from the command line by specifying just two settings:

  • Target Ethos-U device; --accelerator-config
  • Neural network file; .tflite or .tosa
vela --accelerator-config ethos-u55-128  my_network.tflite

However, it is highly recommended that you specify some additional settings that describe the Ethos-U system and what optimisation strategy the compiler should use. The three additional settings are:

  • System configuration; --system-config
  • Memory mode; --memory-mode
  • Optimisation strategy; --optimise

The system configuration and memory mode refer to definitions in a configuration file. These are specific to the target system. However an example configuration (Arm/vela.ini) containing some generic reference systems is provided as part of the installation.

The optimisation strategy indicates whether the compiler should minimise inference time or runtime memory usage.

See CLI Options for more information.

Example of how to set the system configuration and memory mode:

vela --config Arm/vela.ini --system-config Ethos_U85_SYS_DRAM_High --memory-mode Dedicated_Sram_384KB --accelerator-config ethos-u85-256  my_network.tosa

Example of how to set the optimisation strategy:

vela --optimise Size --accelerator-config ethos-u55-64  my_network.tflite

Command to list all known configuration files:

vela --list-config-files

Command to list all configurations in a configuration file:

vela --list-configs Arm/vela.ini

Output

The result of the compilation is an optimised network in either TFLite or Raw format depending upon the input network. This can be overridden using the --output-format option.

TFLite output contains TensorFlow Lite Custom operators for those parts of the network that can be accelerated by the Ethos-U NPU. Parts of the network that cannot be accelerated are left unchanged.

Raw output contains the command stream and weight data required to run Ethos-U parts of the optimised network. This is stored in .npz format. See the Output format CLI Option for more information. This does not contain CPU parts of the network and so cannot be used for converting TFLite to TOSA.

Raw output includes tensor quantization metadata in the .npz output.

Warnings

It is important to thoroughly review and understand all warning messages generated by the compiler as they could indicate that not all operators were optimally converted to run on the Ethos-U.

Performance information

A performance estimation summary is reported after compilation. The cycle and bandwidth numbers should not be taken as accurate representations of real performance numbers and they should not be compared against those from other compilations that use different settings or configurations. The numbers reported allow the compiler to make its optimisation decisions only. For accurate performance numbers the network should be run and profiled on an FPGA. For approximate performance numbers the network can be run on a Fixed Virtual Platform (FVP) Model.

Additional Vela Information

Inclusive language commitment

This product conforms to Arm’s inclusive language policy and, to the best of our knowledge, does not contain any non-inclusive language. If you find something that concerns you then email terms@arm.com.

License

Vela is licensed under Apache License 2.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ethos_u_vela-5.1.0.tar.gz (2.4 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ethos_u_vela-5.1.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

ethos_u_vela-5.1.0-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ethos_u_vela-5.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ethos_u_vela-5.1.0-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

ethos_u_vela-5.1.0-cp312-cp312-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ethos_u_vela-5.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ethos_u_vela-5.1.0-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

ethos_u_vela-5.1.0-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ethos_u_vela-5.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ethos_u_vela-5.1.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

ethos_u_vela-5.1.0-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ethos_u_vela-5.1.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file ethos_u_vela-5.1.0.tar.gz.

File metadata

  • Download URL: ethos_u_vela-5.1.0.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for ethos_u_vela-5.1.0.tar.gz
Algorithm Hash digest
SHA256 5f260e3aabfb54f5758311efbdd86f742b5e54aba27caffefcfc3175e301341a
MD5 2c596728eb868e132b95787a76c13afe
BLAKE2b-256 c6c3888199b4e71ab779df8db8793e58bb30e0eeb81d318d5cb89a984fd96e7a

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c73f1c8101647130a59c5f6f1cd59005ed60855225469f0746776527a48f7a8b
MD5 3726dfd9d078de015ec451299fcff334
BLAKE2b-256 ed812c0d67368cf06290c873f36a1e21f80bd2005b865ad1ee7b19719e7b7b1d

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: ethos_u_vela-5.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for ethos_u_vela-5.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3f8061757c8b3d3ba6be9273e809cf048cea2b00fd865e12e90255fe16029314
MD5 9b6ed78b360627e5b4fe2438e58f19a1
BLAKE2b-256 d7848e91040bf4aacc9202805dcbc0ca9b534909c40c066e87b129311eb66b5e

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3427c97dea913627b540d30f5a110d0dce96baf9ecb81c862d59fcc153e1f601
MD5 d25e4f78a3b63469e7417ed230c804f8
BLAKE2b-256 d4bb72f40ab8c0be9e92825574276bc440a62517f40f425d03fab7feb04b7c38

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f9d0e252a5c9d92bbbeb316c8d1056ef8cf29c6f4030a97f2e41f7685994e004
MD5 c2895a4544e41765aab63c9fe8ba2708
BLAKE2b-256 16a66ff29e908239cb44f1500ed33175a815398a0e70c20efbf1414ad10cb127

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60cfdec5fb5cc7a8e8f4c1d6f3ff68ce872c8f1f20e0d6bce479dcb39e3356d2
MD5 1a5f470fb649d139c886427f9bd4b009
BLAKE2b-256 4c15bb033d0263a267e043ebcd93611acdbf17c335e7c461d1230afd529035b9

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ea0ce4bf843f71a7f6054716493ff55e4557906f39d565581f8d740b56fd558
MD5 cd1eb50e3d98fad4a6582d442a26a2fc
BLAKE2b-256 6d36b32de2ae0443752a6153daf92c8d648b480a3563642ca35dee632ebb9439

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 80ab51a0f2746789ea8881f05cb5d6716bc8813cc0e1d55f69e6d1ba53cecd58
MD5 224182e5ee761b3c875975dc58c16168
BLAKE2b-256 93a08e6858c6ee6fcfca00221bea67481a777cd21c44864a27fb252fc7d34029

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: ethos_u_vela-5.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for ethos_u_vela-5.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2a8da46435225519839e7fd50536272eb5613e72eceaeb081d3c82dbc40b7e13
MD5 149bf84947eb4252e209bfa5c9956a63
BLAKE2b-256 7af1dc6c418bc830232ff53798aa2d3e87ad04a3c0bd3b1fb1de1a0276d10c74

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 030d66891de585c7ecaea2e661903872cc8505bcf0a30e7224013510472ad605
MD5 633cf034301fc7753f77e73a686166ab
BLAKE2b-256 97c8f7f7a4e7175ba425e1ae2b5adb5f8525d63993bad6a2888e3033e1928e04

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ed077b982ee32d05877e11c458330e8593c3ac2f7f2fa70254c0d4faf5d0e3c
MD5 702b5ee9679b0a3ef9335418d022f67b
BLAKE2b-256 30f60760bbf64b49ce0ebb19c21d9d694887a16887e0395a0977e20797907898

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24c5c5f8d046c4bf34e3ea9a22cecbdcbaf1c9010d4ccfa6b780e903e43fdc9a
MD5 e18580e41ccefadaa1e5b20d60d0fe03
BLAKE2b-256 d0a8a12e2ac29b7b71931cb4f8a5d09df5c9e3c65397ba85cff52674c8e832e8

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59db64f3cc35fb4be2c38d82b2a241c8e42f5a9a4d7b6f52a112d9f229e964de
MD5 86be3466cb15727c465b31ce4a21cc0d
BLAKE2b-256 3d2998349546a106ebfae43fc6bedad4ee430fec31d27a714ce220202e951012

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a2b63a04005eb9f8de203a402e58c62a15eef768355ca5cd08770619aa9d5db6
MD5 b00a4c62e43c2ef49a26f6e9d7eb50a8
BLAKE2b-256 8ca9c0c8f40ba6b0dfbf012e44d3d31f0a32762e5d541593162534c0284b56f5

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: ethos_u_vela-5.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for ethos_u_vela-5.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e494c996c6f7f7ff834a537c2357b6f19fa09f78fc83af8e1b9d6ab73105b6a0
MD5 49b734a13f544947c003d64de3153f34
BLAKE2b-256 57ae604df0c5d2b0ffdffe119396a06cfcfe2d27fcbfb90518640d44fc186043

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbee0172b6c1aa3bc48f53fe2fe95b24da3265f836742ab93244e37c6f648276
MD5 534f97a49599206c255c2dd3a9cf6c4a
BLAKE2b-256 3bb0126de0fe3f5fd9b4326ec7e3767afe1643bdfad8c0bb69e42b8a23cff3f5

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de22d2ac87050b7e70369f3a9473a9e0483707e7f0f45b2711420d1c6a2cf433
MD5 6e7ac29ba871956fa553d08f9556ef7a
BLAKE2b-256 dddb93d02404c1b84c8b7cc55c0c0c0562cc1bbefbc3925b0452388abae2022b

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b27d01cb6e3e6b527406416e3bc13d5fffbd3c95663457af049e06c0e501500d
MD5 d9811ceebf509eba6d962ec282b7dccc
BLAKE2b-256 474f893acda8083b640c14fae80cfc03f9d4e0ffd5c0ce27f6ae89546dd208e6

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a7f0cfa691d6f95b031a524c412613ee891ccc4e17cb86bde8ffac4e2b7be66
MD5 ed9d253ad7bd18f76850573c20d70b3b
BLAKE2b-256 22e756cd4a85ba854b0834bd7372652f60d138519b46a4591bad7183d738b897

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a3beb3c603b5e832536fc75996326c94bb967a696e47bd2396c3420c74c811c
MD5 710fd67773883a443aec816f0b577a78
BLAKE2b-256 7febb819aa8c6dfc074274530bc316bb6b0336f1cc14604707d04d9732b402b3

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: ethos_u_vela-5.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for ethos_u_vela-5.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 12a3edfcdc02fb03ee1010fab5b5bc45e1e805212f1c55620f2cdf0a8524884d
MD5 afcadd88b277f87c4543f390099132bb
BLAKE2b-256 8198adbab6064ae785e6336258d14c1e7d2f5cfba40e723fce041fa4cc4ced97

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 028f31502045c6de61800dab2a2327903c78f8d03da5c3f16297ac77e0f83460
MD5 5b838fea097b920aec231474a394d0ea
BLAKE2b-256 aee2b39016a9308c14a7b861f02b09fe03ef0d0e685822293068619795adf10d

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb6ad1b3c72b7ce3848fffae768b15977ec62b940939be7684d531f9e2765d47
MD5 a047b1b3b93e76d33ddde1e07d908fa5
BLAKE2b-256 a5cde8a81d7dd40312697ce4a54a7bff941e74d41fcdbc588a2c749013f7b205

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1851873aac9d277fd89ce970cf4507456bd75d3903d4091baece9fd93a44ea6b
MD5 ea964841dbe1f25765d87145d538ade1
BLAKE2b-256 93609c54c6dadbf3d6cba16f5b438b12bc24bd0195c12b4b9b3c911f3bc1e2c9

See more details on using hashes here.

File details

Details for the file ethos_u_vela-5.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ethos_u_vela-5.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1e84785a58b6e8f5f789355355f8eced2fb14f70c3f999dbadc9d93704379f4
MD5 ee1417285636240f345678e0136de8b4
BLAKE2b-256 6e11ffdd4d0aa87b1009e7041fad2ddf5617ec140a9504fac14c855fd095e339

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page