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.0.0.tar.gz (2.3 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.0.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

ethos_u_vela-5.0.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.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

ethos_u_vela-5.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

ethos_u_vela-5.0.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.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

ethos_u_vela-5.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

ethos_u_vela-5.0.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.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

ethos_u_vela-5.0.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.0.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

ethos_u_vela-5.0.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.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

ethos_u_vela-5.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ethos_u_vela-5.0.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.0.0.tar.gz.

File metadata

  • Download URL: ethos_u_vela-5.0.0.tar.gz
  • Upload date:
  • Size: 2.3 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.0.0.tar.gz
Algorithm Hash digest
SHA256 2aca4502cf3af2788e067e1604649afe5cc48ee41be609220bda8b801c9df28d
MD5 00a7b3867bffbc7efe47064bf3f769da
BLAKE2b-256 682aea4b7c2b6e88f22d3d7f16fdefeaed847f7403b56fcd5e26b0eb0fd93c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 561207d0368afc2f7640ed1bc02bb89c248f19c8b6581f4bfe53ff48fa3b0fb3
MD5 bbcabf244ea7e39cb4caf59d8dddf758
BLAKE2b-256 59e4f0981a3bd86620cc5f9f39f279267c761a26d2ec3f743e9f625130b76d46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ethos_u_vela-5.0.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.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e4b0ff9a1c49b997fc86361ca0b5765e3265f7e269038424bec192cc32be27aa
MD5 f6c5d69fca6a8ea7b05d7c5b89919973
BLAKE2b-256 e8cee6fa3c39e99474094aeb611e4ad1fd3ad45a12cd97b07197cae567b3760c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1acb161cf668da65624aa18dbf9645f39d6a88d7ce979e354c07841ed145f5ef
MD5 88eeb768e1441d2f6a2c1dd3c001a64f
BLAKE2b-256 45aae2f6cf396fe51db9f25ddeca035ea23849be4d1a07e83ff404cfc59c08b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a16e6237e17c037388a4ea87591e32b863b6dae500ee1b066ba20dbb06f984a2
MD5 91d90f6bc79a965a8647edc9a23021db
BLAKE2b-256 05871aa640e3709ccf606fee28ff890444806bf2b5e761c5acdbeaceeec99b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e5b797e9ca065f185bc336b4cce9d06f39672fb8faebb49f6393e4c758fb75e
MD5 d341fca1c75b73b051af2c268529a780
BLAKE2b-256 09739ebb2fe9d0824ced2bedd9d5b57b28798dfa5cf48a9545afcc765015185c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcf67f457838f557c459ba917b7517de1635f95ee4465240231bbe9357199d2d
MD5 23ce47bd06ff01ab54fa159c60d8ea22
BLAKE2b-256 4f99f13276a9c327f821cc1f29fa61fa0d50a1427675070179efd08911c4bccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61549524ab28ac1aa403f30fd2203cddbfa7086105bfca8cb28d3beb76536ab8
MD5 672bd0bf36cffdeeeb2dfc0af49c2df1
BLAKE2b-256 21cc4ab8b57519efff0cfe4223e7f9482b882f05731b31b597d4570c51fb1147

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ethos_u_vela-5.0.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.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b2ba60280971ac098ac723905af5567d525720bfb9744f1ef3d0833a55d2016f
MD5 0293982924191b16aac6ca9129561b4b
BLAKE2b-256 b6b88b22e7e22673257658be78141ee6448671e0d71f13a378890e386295e70b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93505c30a421bce318a0665a51814563b6a62b883f0739fc5c1fb321932f70a0
MD5 369de62f7f0136f9c7538bf2cbeac107
BLAKE2b-256 907cec17eba94a5f3c9410f4f3a4e43c3c3e62b771a3eb3f33a8af2dff78635f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7baf4e78ad746d4467210dcda0f9b08708beefe700d231157c098e3261c050ad
MD5 88c2d994d3a187d6c06b8f4499656600
BLAKE2b-256 f2454e83cf2d328ba979e32176edea609898b78794421d157449baf0e77d565a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 007c57f3b6e39960d208bb5778a76a376bd23b227b6a13231dc439c6761e18d1
MD5 63ee0a6be1758c4857d4a414f9721685
BLAKE2b-256 8bf306530f5fd22c5f7e2d2f171e78dde9fc1331374c4b0aae177bc69d55d493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0a6f88796cb087707468cfa43759d15677275e9a5ee292079ac4b2e532c24de
MD5 0f1ed04d80f45319356d4facb3b1bca2
BLAKE2b-256 56d9d162fd0c7eb9f35283f5e8f1dddfaf298f5da3ea5d3069222b7632004d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eb0452e84fe1e079824625fec6aca42c6860665004a661adcd53ae008c7a4198
MD5 ce8c948145fe7be98809e16bf4c4e213
BLAKE2b-256 d1fb5298a57303e240d92f932b1c00ed34aa0c4271fa35926f3c7a751fb0120b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ethos_u_vela-5.0.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.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d9c837d8837cfe2db220da299f2d5b641e575f86ec715298cb149ce051bbba62
MD5 8975a4c33fd37a393c428c38bf42ffb0
BLAKE2b-256 321fb7d6bfff05c6eae71badda540cb983dde7d0ac7cfaff8995f4b5c8ce50bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8d44fce7d502db93e214b7492130a70c72d36e81a2e21ff6f817747366810dc
MD5 1454ace4c7948d29d194b33a6a571c06
BLAKE2b-256 fb023ccae36af1f3610d4a20bf2b61fe0a399eefe74d8390371c67fcc04b91f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06eabe147bd070e12dd932680d1217f4a00760a957a3ab9050a117e954882ff9
MD5 3d2660e6ababa3e3f616523c4efa755e
BLAKE2b-256 4fc9b24e8c21b5236337e6ae14bd3c6e79f0a1106510abc372b5a8f7192915d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3df48f50927dfffbba6908a6d5fe7804992626dbcb48bd1cf33e0774bc0973a0
MD5 cfe3e3cd0af6807c3ca3259db4dd27ff
BLAKE2b-256 335fa708b50474e1507e24de474215354c7eb42252c404b3232c47d469b8072e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97fce8ef22ee92463f65aae11d8fd0cb619ce8ba8ebb8aaadbf6fcba7ee94ce2
MD5 a617cc8da2b57241f18ed462008f61fa
BLAKE2b-256 d9ce237fb478381b526834680d57ed4b070ecf74b95976c102537c84da73f1a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b1cf6dd8be96edb040336c0f2c6f2928f09d0cff23666593270f78fb991b51d6
MD5 cdf02a15d664c57b4cd43f0195fef4c9
BLAKE2b-256 c989d1bbaa88f16e46261750b9392f2c82b4acd4108d2a728f360b68abe07f18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ethos_u_vela-5.0.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.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bdac3d4d51f7c58598d0490aac8cc8e0cae8c7d1bcbe575d233438ad64bb3e0a
MD5 238312f3cccefc81a79a3ca00c006452
BLAKE2b-256 9af21dd82f8983e14df0af8169f1daea4e169c9d59e2bb30066c8daa1375d68a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1dc9c6df646d85aaa1c327af68b7395d6f3650093822906a7a9a6d3ba683eff
MD5 37a6fa6a6ef00742d04d0026f448b904
BLAKE2b-256 40d288c39b89e661125df743c8c60712f8cc8be6afcd849c2018597a786520ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1afe6e97146aa5269442c89aaee3b8695711d5f6b62d2ed00c634729db4fd63
MD5 8ba0ddab90ea7fe10fcaded3a282bed0
BLAKE2b-256 65e6693f483f9fae8bd49cdb038634d4356f7709961c21cfa82c44980a468a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23fc01b2267e81cf0b2cd12ee5e25960c9dc49f820726037fa362275cf146283
MD5 3892dde6ed2fba4a0717954aed8e64ce
BLAKE2b-256 de16473644e9668edc7cb74ce56f95bc7037c24543727d20f446429dacf06d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32cfa544d8b90b0f4035c95d66e77c4b8fb8dc7c7240c534066094e38dbf40b1
MD5 839044b3117c0ec8a3f952af28bcaed4
BLAKE2b-256 9cd4b1054ecf26afcd9349061baeda41a1999dbfd3e5f762cc96d5c706c1e461

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