Skip to main content

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.

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

ethos_u_vela-5.2.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.2.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.2.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.2.0-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

ethos_u_vela-5.2.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.2.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.2.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.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

ethos_u_vela-5.2.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.2.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.2.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.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

ethos_u_vela-5.2.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.2.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.2.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.2.0-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: ethos_u_vela-5.2.0.tar.gz
  • Upload date:
  • Size: 2.5 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.2.0.tar.gz
Algorithm Hash digest
SHA256 d1228738674913ed866a136a6002f93a4b7248b23402fa5b52caa8cfef138eaa
MD5 22971388bf8ac9716b9ba894de8e2c62
BLAKE2b-256 203781c1818330c37ba161b0d94d51f85328661358bdab613851f76cc564e7e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 412b279dcd79e787e3b80920765e6ae32cb1c0c75f54bd07755df793a7ba63a4
MD5 2eff21706af5ceb3538da1faeb7c6ac1
BLAKE2b-256 22e8b942bd63a7e9f332a9f3da9715335a2d09d76c808388daae5a824f95bfcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ethos_u_vela-5.2.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.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c5d3b8a3d5118f2a45461833893e73bab29e3eb592083cfd52bcdc22f19bb71e
MD5 3e1e2f51c0f5223daab9acd401eea864
BLAKE2b-256 229035ac8d0f5e4479267a196d9b3ecab18e7e51e746c94fd318a6eeafb35d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0c8b0efbf839851ce78904c972161fe53704ee5acf42e372c5a5b1ab2881468
MD5 0d5e4b64251bf0dcdc0a3d642c650d7f
BLAKE2b-256 a048463d6a4ec978a736efc42c9d2772a94f2fba61a922768850dc95dbb1bbc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa6d9d95829a06d3cb05f921c6f4324776760e1078d0b094b5dde06e1e63cafb
MD5 103bc2be4bf5a74dbabfe78b2e8bd6e7
BLAKE2b-256 f92c019a46f1c1bddb1833d8b6c963ff81b42acf7d9a092e7dc203d1e67d03a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 777aad78787f30ca26ccf8f822502b5ff8976b6c0d89c24fbd7884957dba2a0f
MD5 69a5c6de4e7e529bc900411b541acd5d
BLAKE2b-256 dd0f878ceb3c0797e0d5db9ed4c1360c975639a8bc2ed3816fcf352f2df1ca8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d205cd08040cc7df4cbfe056d4689b5ea5d43db98c40e29c949c700c0e466062
MD5 13f21ed5147154c628ca897ef9188a2a
BLAKE2b-256 7dc0c251b2e926efed12bde899e46cc7578f8d97874160b57af5df4bf3406070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 83a176d410121be0efb0cb542e1f81556610a46af075fa54a0847a4326d52760
MD5 873dace52ff5dbb5a834c6aa26bd6688
BLAKE2b-256 34398acf06876fc4a3aa1cc08a9c8c4094399353a35d3d14ca0cb31449c30006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ethos_u_vela-5.2.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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 364794f46575565494f4316154b98a2469131272890218646cb749a88dc7e4fd
MD5 a457b37ec50b218a82ef8e66e1958fa2
BLAKE2b-256 b3645c63c01f42908555d6d822d9eedb37366e62156912d2b4d52c9bfa73a64a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24be89efcb10f1711ea10b25246e7ce97d487716eb80bcc69f9b182c1298153c
MD5 099597a32f90a4558fccebf67dbfbf03
BLAKE2b-256 f17b546045504270b4f7ded3df06ef3759a6aef688e5cd0f6beb03d778146cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b27fcd36decff09fccafd456805ce397526f8df0031b934206caaa3a21824fd6
MD5 1579a440f91388cbf31ff945a2b0efda
BLAKE2b-256 64ed103c81b917fe9f838ad40c58bc35a414e0d73dabbdb443227ee0df435680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 317928cc8421ef6ca58c62210b545f4c6eff0d08d73c6fdf42aaa83604d707e2
MD5 202a93386234c10061925cd0096f10f1
BLAKE2b-256 401eee4f05a4a1d26bd70c7ba4e83ff76100ab2940c68aa76627312f171b4b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41f85b5b4ab3e5f00c5d31b2be1452acb6c899f979f21555f5263d7ee040fb07
MD5 dab9398be016ab1b6754f88e981b48ac
BLAKE2b-256 f22618716390fd4092d9d05b291a3da26b74c090e791fdb98776ad3e94d24275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e597a5bf396aa8368b7ebbf7aafca5848b6760361375d94dd92b1aff3ec4d68
MD5 05b720a6729e9b7e56282c4c3a82d6ab
BLAKE2b-256 d0e8f268cdc0c804a7bab871d3fc4a4033281dcad486a521ba862d321276c9a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ethos_u_vela-5.2.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.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a27f42caeae641aaba48266d261cdb690eda001076978192a48b4b205dcddf99
MD5 8526e31f53d05c09e4c93a8c935dfae0
BLAKE2b-256 f8f177450b71931ed6a983506b8cda2a0fd2cf424d527e9025b47dd8808e2faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a12db89e014ad0d19f1a5156ec1ba45e0d0f30d3428f4ca8abea88e3d64a0ad2
MD5 8a44aa64c2cf18bb46cc2bdce2e26b63
BLAKE2b-256 7d37abca9e21090a8b4ce2b068df471d9cb7b85d3f67eda99816aa76b8b6f05f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bf5eac668f0e99e5372959bff8b2aca00cd94aded86e84319e5f9216f8c8b66
MD5 11a179cc54207b391cbe62a0d5d4e41b
BLAKE2b-256 9b905c478d31a1f6a57b314bb7e960ca95fe07cd5bc428702a7d7576d543aedd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0d331819e9cf9f3460509ebe45e7493d8ec1aa2e1c947e4b9eb86df12672a95
MD5 6b2faeab54961fcfe1f26647ce452c65
BLAKE2b-256 73b4e1ce707d080c48fe4a86fe34895513342d7a852b1e91fdc7d1b00da5d19a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b59c441b785bcd38d39d2395fa5a62e74ae7bae31a238c23be105f58442fbd9
MD5 5bbc0383848a9e35e209caf95dedc82a
BLAKE2b-256 13558ea86eb1449b68e24f8365292775d49424d0412fad8521d8e70310730139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4a0da48e8def19b94e08c745be3e4ea0722fabc91ffaa4eb5291951683b6644
MD5 a609587022382b4cf2b5daaecd75ba66
BLAKE2b-256 d0bee279b67a98e05073d4154e30957e81be08e9fd588331bd6e478dfad393e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ethos_u_vela-5.2.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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d0c1c01014057505977a38fae9b067e5e57cd82f7fc6c377f8b50f2bd1e9c1fd
MD5 95c291c9774371acd37da30469caac21
BLAKE2b-256 c5ee6d2af87dffca96965caedfb89822605e388892e549e89850245cb568abf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34f52bd9d9722dc8b4980bbc2ad4ce4b4009c7e879a66c02c82d085e5a85b109
MD5 23d1a9e4b3a323565a29e5af7d353725
BLAKE2b-256 b3f2ce3682bb9322ca8d898910b211f9e3e344002325c834b06f2c885ea7b4ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39fb6e70ec60e3c48439780e762ce455b1e2f008ea66c8c9baf3ce59869a88ec
MD5 82838d18faa4f0ee900010445efe5dc6
BLAKE2b-256 42861d6e2c8a61dbb935a531d0269f7b2cba30d8876714126601ecae82a5dd09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8766faf814e65cee5f52b36739249a4a29eab2e10514a3d84c08cf94a5d5a2da
MD5 eaa3c0787a195503f526ef71b3e88229
BLAKE2b-256 b0a4a7c4b36e2cae0b27c444ee28d465d93465005fa2b5d6e1da51a0788685cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for ethos_u_vela-5.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56d887bfc94d773e12f5f189a7f34d2537d3d2841a0910d94c5b76d5a30f6d22
MD5 b77bf53d5fe7058c7fb82cc7bce6cc3b
BLAKE2b-256 b7bd90fd34afd079fbb9cbea7cc0c58ba460507c46c0db4af1d0363099c5f446

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

5.2.0 This release

25 files

5.1.0

25 files

5.0.0

25 files

4.5.0

25 files

4.4.1

31 files

4.4.0

31 files

4.3.0

31 files

4.2.0

31 files

4.1.0

31 files

4.0.1

24 files

4.0.0

1 file

3.12.0

1 file

3.11.0

1 file

3.10.0

1 file

3.9.0

1 file

3.8.0

1 file

3.7.0

1 file

3.6.0

1 file

3.5.0

1 file

3.4.0

1 file

3.3.0

1 file

3.2.0

1 file

3.1.0

1 file

3.0.0

1 file

2.1.1

1 file

2.0.1

1 file

2.0.0

1 file

1.2.0

1 file

1.1.0

1 file

1.0.0

1 file

0.1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page