ethos-u-vela


Nameethos-u-vela JSON
Version 4.4.1 PyPI version JSON
download
home_pageNone
SummaryNeural network model compiler for Arm Ethos-U NPUs
upload_time2025-10-08 11:49:15
maintainerNone
docs_urlNone
authorNone
requires_python~=3.9
licenseNone
keywords ethos-u vela tosa tflite npu compiler
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!--
SPDX-FileCopyrightText: Copyright 2020-2025 Arm Limited and/or its affiliates <open-source-office@arm.com>

SPDX-License-Identifier: Apache-2.0

Licensed under the Apache License, Version 2.0 (the License); you may
not use this file except in compliance with the License.
You may obtain a copy of the License at

www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an AS IS BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
# Vela

Vela is a compiler for [Arm Ethos-U NPU](https://www.arm.com/products/silicon-ip-cpu)
edge AI devices.  It is used to convert neural networks defined in [TOSA](https://www.mlplatform.org/tosa/)
or [TensorFlow Lite/LiteRT](https://ai.google.dev/edge/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:
* Ethos-U55, [product](https://www.arm.com/products/silicon-ip-cpu/ethos/ethos-u55) and [developer](https://developer.arm.com/Processors/Ethos-U55) information
* Ethos-U65, [product](https://www.arm.com/products/silicon-ip-cpu/ethos/ethos-u65) and [developer](https://developer.arm.com/Processors/Ethos-U65) information
* Ethos-U85, [product](https://www.arm.com/products/silicon-ip-cpu/ethos/ethos-u85) and [developer](https://developer.arm.com/Processors/Ethos-U85) information

## Installation

Vela runs on:
* Apple macOS
* Linux
* Microsoft Windows

The simplest way to obtain Vela is to install it directly from [PyPi](https://pypi.org/project/ethos-u-vela/).
The following will install the latest released version:

```bash
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:
* Development version of Python 3 containing the Python/C API header files
   - e.g. `apt install python3.10-dev`
* C99 and C++17 capable compiler and toolchain
    - For Apple macOS; XCode or Command Line Tools are recommended,
      see <https://developer.apple.com/xcode/resources/> or `xcode-select --install`
    - For Linux operating systems; a GNU or Clang toolchain is recommended,
      e.g. `apt install build-essential`
    - For Microsoft Windows 10; the Microsoft Visual C++ 14.2 Build Tools are recommended,
      see <https://wiki.python.org/moin/WindowsCompilers>
* CMake
    - See <https://cmake.org/download/>

### Manually Building

The source code is available from [Arm's GitLab Instance](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela),
see [Building From Source](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/BUILD.md) for more details.

## 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`

```bash
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](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/OPTIONS.md) for more information.

Example of how to set the system configuration and memory mode:
```bash
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:
```bash
vela --optimise Size --accelerator-config ethos-u55-64  my_network.tflite
```

Command to list all known configuration files:
```bash
vela --list-config-files
```

Command to list all configurations in a configuration file:
```bash
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`](https://numpy.org/doc/stable/reference/generated/numpy.lib.format.html#module-numpy.lib.format)
format.  See the Output format [CLI Option](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/OPTIONS.md) for more information.
This does not contain CPU parts of the network and so cannot be used for
converting TFLite to TOSA.

#### 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
* [External APIs](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/API.md)
* [Bug Reporting](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/BUGS.md)
* [Building From Source](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/BUILD.md)
* [Contributing](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/CONTRIBUTING.md)
* [CLI Options](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/OPTIONS.md)
* [Debug Database](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/DEBUG_DB.md)
* [Performance Estimations](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/PERFORMANCE.md)
* [Operator Support](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/SUPPORTED_OPS.md)
* [Changelog](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/CHANGELOG.md)
* [Security Vulnerabilities](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/SECURITY.md)
* [Testing](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/TESTING.md)

## 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](mailto:terms@arm.com).

## License

Vela is licensed under [Apache License 2.0](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/LICENSE.txt).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "ethos-u-vela",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.9",
    "maintainer_email": null,
    "keywords": "ethos-u, vela, tosa, tflite, npu, compiler",
    "author": null,
    "author_email": "Arm Ltd <mlg-vela@arm.com>",
    "download_url": "https://files.pythonhosted.org/packages/3a/7e/e520699ab3934097a83a834fab68b1424c148bf998dfaf2e1bb88150f36a/ethos_u_vela-4.4.1.tar.gz",
    "platform": null,
    "description": "<!--\nSPDX-FileCopyrightText: Copyright 2020-2025 Arm Limited and/or its affiliates <open-source-office@arm.com>\n\nSPDX-License-Identifier: Apache-2.0\n\nLicensed under the Apache License, Version 2.0 (the License); you may\nnot use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nwww.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an AS IS BASIS, WITHOUT\nWARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n-->\n# Vela\n\nVela is a compiler for [Arm Ethos-U NPU](https://www.arm.com/products/silicon-ip-cpu)\nedge AI devices.  It is used to convert neural networks defined in [TOSA](https://www.mlplatform.org/tosa/)\nor [TensorFlow Lite/LiteRT](https://ai.google.dev/edge/litert) format into\nEthos-U command streams.\n\nThe input network must have quantised activations and quantised weights in order\nto be accelerated by the Ethos-U.\n\nMore details about Ethos-U devices:\n* Ethos-U55, [product](https://www.arm.com/products/silicon-ip-cpu/ethos/ethos-u55) and [developer](https://developer.arm.com/Processors/Ethos-U55) information\n* Ethos-U65, [product](https://www.arm.com/products/silicon-ip-cpu/ethos/ethos-u65) and [developer](https://developer.arm.com/Processors/Ethos-U65) information\n* Ethos-U85, [product](https://www.arm.com/products/silicon-ip-cpu/ethos/ethos-u85) and [developer](https://developer.arm.com/Processors/Ethos-U85) information\n\n## Installation\n\nVela runs on:\n* Apple macOS\n* Linux\n* Microsoft Windows\n\nThe simplest way to obtain Vela is to install it directly from [PyPi](https://pypi.org/project/ethos-u-vela/).\nThe following will install the latest released version:\n\n```bash\npip3 install ethos-u-vela\n```\n\n### Requirements\n\nIf your system does not match one of the pre-built binary wheels on PyPi then\nthe installation process will attempt to build Vela from its source code.  To do\nthis it requires the following:\n* Development version of Python 3 containing the Python/C API header files\n   - e.g. `apt install python3.10-dev`\n* C99 and C++17 capable compiler and toolchain\n    - For Apple macOS; XCode or Command Line Tools are recommended,\n      see <https://developer.apple.com/xcode/resources/> or `xcode-select --install`\n    - For Linux operating systems; a GNU or Clang toolchain is recommended,\n      e.g. `apt install build-essential`\n    - For Microsoft Windows 10; the Microsoft Visual C++ 14.2 Build Tools are recommended,\n      see <https://wiki.python.org/moin/WindowsCompilers>\n* CMake\n    - See <https://cmake.org/download/>\n\n### Manually Building\n\nThe source code is available from [Arm's GitLab Instance](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela),\nsee [Building From Source](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/BUILD.md) for more details.\n\n## Getting Started\n\nOnce installed, Vela can be run from the command line by specifying just two\nsettings:\n* Target Ethos-U device; `--accelerator-config`\n* Neural network file; `.tflite` or `.tosa`\n\n```bash\nvela --accelerator-config ethos-u55-128  my_network.tflite\n```\n\nHowever, it is highly recommended that you specify some additional settings that\ndescribe the Ethos-U system and what optimisation strategy the compiler should\nuse.  The three additional settings are:\n* System configuration; `--system-config`\n* Memory mode; `--memory-mode`\n* Optimisation strategy; `--optimise`\n\nThe system configuration and memory mode refer to definitions in a configuration\nfile.  These are specific to the target system.  However an example\nconfiguration (`Arm/vela.ini`) containing some generic reference systems is\nprovided as part of the installation.\n\nThe optimisation strategy indicates whether the compiler should minimise\ninference time or runtime memory usage.\n\nSee [CLI Options](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/OPTIONS.md) for more information.\n\nExample of how to set the system configuration and memory mode:\n```bash\nvela --config Arm/vela.ini --system-config Ethos_U85_SYS_DRAM_High --memory-mode Dedicated_Sram_384KB --accelerator-config ethos-u85-256  my_network.tosa\n```\n\nExample of how to set the optimisation strategy:\n```bash\nvela --optimise Size --accelerator-config ethos-u55-64  my_network.tflite\n```\n\nCommand to list all known configuration files:\n```bash\nvela --list-config-files\n```\n\nCommand to list all configurations in a configuration file:\n```bash\nvela --list-configs Arm/vela.ini\n```\n\n### Output\n\nThe result of the compilation is an optimised network in either TFLite or Raw\nformat depending upon the input network.  This can be overridden using the\n`--output-format option`.\n\nTFLite output contains TensorFlow Lite Custom operators for those parts of\nthe network that can be accelerated by the Ethos-U NPU.  Parts of the network\nthat cannot be accelerated are left unchanged.\n\nRaw output contains the command stream and weight data required to run Ethos-U\nparts of the optimised network.  This is stored in [`.npz`](https://numpy.org/doc/stable/reference/generated/numpy.lib.format.html#module-numpy.lib.format)\nformat.  See the Output format [CLI Option](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/OPTIONS.md) for more information.\nThis does not contain CPU parts of the network and so cannot be used for\nconverting TFLite to TOSA.\n\n#### Warnings\n\nIt is important to thoroughly review and understand all warning messages\ngenerated by the compiler as they could indicate that not all operators were\noptimally converted to run on the Ethos-U.\n\n#### Performance information\n\nA performance estimation summary is reported after compilation.  The cycle and\nbandwidth numbers should not be taken as accurate representations of real\nperformance numbers and they should not be compared against those from other\ncompilations that use different settings or configurations.  The numbers\nreported allow the compiler to make its optimisation decisions only.  For\naccurate performance numbers the network should be run and profiled on an FPGA.\nFor approximate performance numbers the network can be run on a Fixed\nVirtual Platform (FVP) Model.\n\n## Additional Vela Information\n* [External APIs](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/API.md)\n* [Bug Reporting](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/BUGS.md)\n* [Building From Source](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/BUILD.md)\n* [Contributing](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/CONTRIBUTING.md)\n* [CLI Options](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/OPTIONS.md)\n* [Debug Database](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/DEBUG_DB.md)\n* [Performance Estimations](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/PERFORMANCE.md)\n* [Operator Support](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/SUPPORTED_OPS.md)\n* [Changelog](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/CHANGELOG.md)\n* [Security Vulnerabilities](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/SECURITY.md)\n* [Testing](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/TESTING.md)\n\n## Inclusive language commitment\n\nThis product conforms to Arm\u2019s inclusive language policy and, to the best of our\nknowledge, does not contain any non-inclusive language.  If you find something\nthat concerns you then email [terms@arm.com](mailto:terms@arm.com).\n\n## License\n\nVela is licensed under [Apache License 2.0](https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela/-/blob/4.4.1/LICENSE.txt).\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Neural network model compiler for Arm Ethos-U NPUs",
    "version": "4.4.1",
    "project_urls": {
        "Homepage": "https://gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-vela"
    },
    "split_keywords": [
        "ethos-u",
        " vela",
        " tosa",
        " tflite",
        " npu",
        " compiler"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1eafb4fed37f5a10c06d066ebf857fbf0b010927c926a0004491ebe7403b5e9",
                "md5": "6e0e9f1adcf85d04bea0eb88b113bc8f",
                "sha256": "0b0bfc5dd558a053bb94b6416d8b5092d5444b17fb8f026305652ccab489ac21"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6e0e9f1adcf85d04bea0eb88b113bc8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "~=3.9",
            "size": 1683419,
            "upload_time": "2025-10-08T11:48:22",
            "upload_time_iso_8601": "2025-10-08T11:48:22.486907Z",
            "url": "https://files.pythonhosted.org/packages/d1/ea/fb4fed37f5a10c06d066ebf857fbf0b010927c926a0004491ebe7403b5e9/ethos_u_vela-4.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2a0c3b9ce1d6fe9f7459e0f231eae6cbd07a0cb89bdc27250afdad63bb419b4",
                "md5": "63505e252b7e263c0d97340cb53e6317",
                "sha256": "ab81b3eaf7b60c7ab2e558f0d6fc95c078d6315ca49cf09d6efb4d4cc0973bb7"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "63505e252b7e263c0d97340cb53e6317",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "~=3.9",
            "size": 1749944,
            "upload_time": "2025-10-08T11:48:24",
            "upload_time_iso_8601": "2025-10-08T11:48:24.061673Z",
            "url": "https://files.pythonhosted.org/packages/b2/a0/c3b9ce1d6fe9f7459e0f231eae6cbd07a0cb89bdc27250afdad63bb419b4/ethos_u_vela-4.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6608917435456cb60b7924767e91099c04a044f44fad572698eb99d6919f5dd",
                "md5": "a9ea5682aaee5b510b081a8ab612c374",
                "sha256": "6d07514c6744d8c537206a8427c8e5f8759118a82e54af42a967916ea26d20f4"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a9ea5682aaee5b510b081a8ab612c374",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "~=3.9",
            "size": 1917308,
            "upload_time": "2025-10-08T11:48:26",
            "upload_time_iso_8601": "2025-10-08T11:48:26.087239Z",
            "url": "https://files.pythonhosted.org/packages/d6/60/8917435456cb60b7924767e91099c04a044f44fad572698eb99d6919f5dd/ethos_u_vela-4.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8dae0e2fc69f388c4b233026e3d7035813e4eaebc61e6b691f34e7bc9d15620",
                "md5": "53b61e816b02e778c883f8c5c5add827",
                "sha256": "d591d4ccc2e6c9cbcde1858c5e3d75f5b74294437eb8b4fceeb9594b69ea698e"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53b61e816b02e778c883f8c5c5add827",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "~=3.9",
            "size": 1856224,
            "upload_time": "2025-10-08T11:48:28",
            "upload_time_iso_8601": "2025-10-08T11:48:28.884336Z",
            "url": "https://files.pythonhosted.org/packages/b8/da/e0e2fc69f388c4b233026e3d7035813e4eaebc61e6b691f34e7bc9d15620/ethos_u_vela-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "132208be1d799d4f859007c0ae6a6a7ab4fd0c3ca5a38a6259f73ec4c9a477f0",
                "md5": "5a0398559a526645ebbd8071b5d033b6",
                "sha256": "7b741f4c7a9688a49ea49e063c61f316e52137023a9998f33cf04bbf47d41ff4"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "5a0398559a526645ebbd8071b5d033b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "~=3.9",
            "size": 1408359,
            "upload_time": "2025-10-08T11:48:30",
            "upload_time_iso_8601": "2025-10-08T11:48:30.720340Z",
            "url": "https://files.pythonhosted.org/packages/13/22/08be1d799d4f859007c0ae6a6a7ab4fd0c3ca5a38a6259f73ec4c9a477f0/ethos_u_vela-4.4.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a53e5846f70014affef49ddb4bfa55835d298372f3a21711f6f8f454ee6540c0",
                "md5": "af0aff41db967949fc7ac95bf6d33380",
                "sha256": "7e3df63cb7daaa5b07dfa8e8bc7ec9c66b4cb476c9b787528e0dc456d8aef99a"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "af0aff41db967949fc7ac95bf6d33380",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "~=3.9",
            "size": 1559812,
            "upload_time": "2025-10-08T11:48:32",
            "upload_time_iso_8601": "2025-10-08T11:48:32.093588Z",
            "url": "https://files.pythonhosted.org/packages/a5/3e/5846f70014affef49ddb4bfa55835d298372f3a21711f6f8f454ee6540c0/ethos_u_vela-4.4.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc73696b77f9e70932b724356439987ea91b83503df2095daa1c62b90a7083f8",
                "md5": "63200f6cc8265fcd1cd0ef63f19b0eb6",
                "sha256": "374abd2b9bd6d5fee9e00de876680b86ac05280fda7dd747e3d5e0a94501f9e0"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "63200f6cc8265fcd1cd0ef63f19b0eb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "~=3.9",
            "size": 1684399,
            "upload_time": "2025-10-08T11:48:33",
            "upload_time_iso_8601": "2025-10-08T11:48:33.811332Z",
            "url": "https://files.pythonhosted.org/packages/fc/73/696b77f9e70932b724356439987ea91b83503df2095daa1c62b90a7083f8/ethos_u_vela-4.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a4bb5dcbe1f758f9c48438f4cbc37d68e43df23e7b942f249edc1ac553a0dfb",
                "md5": "17e198ab99dcc0446a9c2fdcee8bd794",
                "sha256": "45a53cd014caced4d22765ecf6d1f0b92bdc6225817560ce53e1f187d408015a"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "17e198ab99dcc0446a9c2fdcee8bd794",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "~=3.9",
            "size": 1750588,
            "upload_time": "2025-10-08T11:48:35",
            "upload_time_iso_8601": "2025-10-08T11:48:35.378143Z",
            "url": "https://files.pythonhosted.org/packages/2a/4b/b5dcbe1f758f9c48438f4cbc37d68e43df23e7b942f249edc1ac553a0dfb/ethos_u_vela-4.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79dbba00b4abe9661419e6d5ba8ae2c910fe7aeb2941983e938163627bdffb02",
                "md5": "5aaee40bbfeb2fbcbf82bbc3c3598377",
                "sha256": "fa5f3b8c95ce3aefa2ecd5872ba3b6308cdeaa2454f3a2483ca33f401ba8438e"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5aaee40bbfeb2fbcbf82bbc3c3598377",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "~=3.9",
            "size": 1917165,
            "upload_time": "2025-10-08T11:48:37",
            "upload_time_iso_8601": "2025-10-08T11:48:37.177780Z",
            "url": "https://files.pythonhosted.org/packages/79/db/ba00b4abe9661419e6d5ba8ae2c910fe7aeb2941983e938163627bdffb02/ethos_u_vela-4.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69aae70a1d39330591f272e95c81f3d23f2e143ab23eccf523c244a45583f9c6",
                "md5": "6948315012f947a790cab2f7642e6dbc",
                "sha256": "508c59146397d9b5f13ad822f4f02de99427514424cb88388ace1af6d56795eb"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6948315012f947a790cab2f7642e6dbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "~=3.9",
            "size": 1857420,
            "upload_time": "2025-10-08T11:48:38",
            "upload_time_iso_8601": "2025-10-08T11:48:38.596915Z",
            "url": "https://files.pythonhosted.org/packages/69/aa/e70a1d39330591f272e95c81f3d23f2e143ab23eccf523c244a45583f9c6/ethos_u_vela-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e116d8c6936ae6d3d947c8d45b097151a469c0d0ce6c1ce28d210c100eed3f7f",
                "md5": "91514d2f6c89879a7e75050878504f05",
                "sha256": "3583812f6f601a41cf2186eedd12426ca72febc4a2b032d561b702a6bee331bc"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "91514d2f6c89879a7e75050878504f05",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "~=3.9",
            "size": 1409143,
            "upload_time": "2025-10-08T11:48:39",
            "upload_time_iso_8601": "2025-10-08T11:48:39.956060Z",
            "url": "https://files.pythonhosted.org/packages/e1/16/d8c6936ae6d3d947c8d45b097151a469c0d0ce6c1ce28d210c100eed3f7f/ethos_u_vela-4.4.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4fe2476c123397fedd1854d6b3f6bacbf27bea7da9222bfdc22365221ceb377",
                "md5": "83dc762e9c44b2e0fea88b925b106ef1",
                "sha256": "926637ab2641ff6e41d0c2f23c38819bab82f81b3c95c9dbb61c198f23f8b0ae"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "83dc762e9c44b2e0fea88b925b106ef1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "~=3.9",
            "size": 1560754,
            "upload_time": "2025-10-08T11:48:41",
            "upload_time_iso_8601": "2025-10-08T11:48:41.651293Z",
            "url": "https://files.pythonhosted.org/packages/f4/fe/2476c123397fedd1854d6b3f6bacbf27bea7da9222bfdc22365221ceb377/ethos_u_vela-4.4.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0175bbf5c7ac82046ced69d212433ea0e9f25a05845b638b96c7c5eff7802e3c",
                "md5": "24906eec62d9b0c084c4e6de2bd53953",
                "sha256": "d287c45906f01a5f844416842335ec797d78bdec6e94de350cd11423e4f30b7b"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "24906eec62d9b0c084c4e6de2bd53953",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "~=3.9",
            "size": 1684687,
            "upload_time": "2025-10-08T11:48:43",
            "upload_time_iso_8601": "2025-10-08T11:48:43.410165Z",
            "url": "https://files.pythonhosted.org/packages/01/75/bbf5c7ac82046ced69d212433ea0e9f25a05845b638b96c7c5eff7802e3c/ethos_u_vela-4.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ddcfc08c292f423ea4fd99df897a899f0cf908ebcb4d817b9b81ea7e305743dd",
                "md5": "0f2f07b741cf995566dd2e7af77b12b9",
                "sha256": "556650908e70fa2fd122d52ac013ebd4b3dc0c29acbe07f3399b88c2b3fda75b"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f2f07b741cf995566dd2e7af77b12b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "~=3.9",
            "size": 1750209,
            "upload_time": "2025-10-08T11:48:45",
            "upload_time_iso_8601": "2025-10-08T11:48:45.143804Z",
            "url": "https://files.pythonhosted.org/packages/dd/cf/c08c292f423ea4fd99df897a899f0cf908ebcb4d817b9b81ea7e305743dd/ethos_u_vela-4.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "402a6935d7ee7e9630ab1e69bc8c5ae2e1d9d378ad1fd211ee9cb5d7080622d5",
                "md5": "b89a373a0a5d0c38f125a75a8b6a535a",
                "sha256": "3808131cd1540e743dc3a5744158b3232453fa895e3446b32ac1829d1fb187a4"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b89a373a0a5d0c38f125a75a8b6a535a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "~=3.9",
            "size": 1917484,
            "upload_time": "2025-10-08T11:48:47",
            "upload_time_iso_8601": "2025-10-08T11:48:47.192389Z",
            "url": "https://files.pythonhosted.org/packages/40/2a/6935d7ee7e9630ab1e69bc8c5ae2e1d9d378ad1fd211ee9cb5d7080622d5/ethos_u_vela-4.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d274402bfc0f5b284ba9e9aec4b83919cee5df671ed385033a4b69b557d99a09",
                "md5": "e621068217d66d6039bed05bd0c920bf",
                "sha256": "00ec92caa2323c7ef327a2c9486e002a6221748a7830809d9b9c42f1533cca3e"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e621068217d66d6039bed05bd0c920bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "~=3.9",
            "size": 1857856,
            "upload_time": "2025-10-08T11:48:49",
            "upload_time_iso_8601": "2025-10-08T11:48:49.763469Z",
            "url": "https://files.pythonhosted.org/packages/d2/74/402bfc0f5b284ba9e9aec4b83919cee5df671ed385033a4b69b557d99a09/ethos_u_vela-4.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af40c3b6dea31bed68d3d608faf493693a19c565e210ff5e0f1ac650b9137909",
                "md5": "860b9080847c5076c09f55097c089a40",
                "sha256": "5080a5ece682e9c0cdb63dac490d181971a216691bd45f7f6ea763ec818764a0"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "860b9080847c5076c09f55097c089a40",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "~=3.9",
            "size": 1409064,
            "upload_time": "2025-10-08T11:48:51",
            "upload_time_iso_8601": "2025-10-08T11:48:51.100939Z",
            "url": "https://files.pythonhosted.org/packages/af/40/c3b6dea31bed68d3d608faf493693a19c565e210ff5e0f1ac650b9137909/ethos_u_vela-4.4.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0042d9f13a2f69cef963e5b708d69d9723ea5af19688e687419f16ee56a2eec7",
                "md5": "31d34bf82a2dc1ac40b50d923523289c",
                "sha256": "da1e45b32403e0027aeabbb425091686d902db226111e98dfb0444c1ab9e9e41"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "31d34bf82a2dc1ac40b50d923523289c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "~=3.9",
            "size": 1561420,
            "upload_time": "2025-10-08T11:48:52",
            "upload_time_iso_8601": "2025-10-08T11:48:52.603420Z",
            "url": "https://files.pythonhosted.org/packages/00/42/d9f13a2f69cef963e5b708d69d9723ea5af19688e687419f16ee56a2eec7/ethos_u_vela-4.4.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb32a8ca676406c549d74307ec768410cf2b5dc9ca437db48dfe0dadcce17986",
                "md5": "658dd078512a62a9a34c73f0d5eb780c",
                "sha256": "743a591b157babcab5811667740a4752b2d44befe7d97a40d4936cb0afbdb82f"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "658dd078512a62a9a34c73f0d5eb780c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "~=3.9",
            "size": 1684817,
            "upload_time": "2025-10-08T11:48:54",
            "upload_time_iso_8601": "2025-10-08T11:48:54.257996Z",
            "url": "https://files.pythonhosted.org/packages/cb/32/a8ca676406c549d74307ec768410cf2b5dc9ca437db48dfe0dadcce17986/ethos_u_vela-4.4.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24782dca2a8542c730cea4bfa4029ba6af629912b51c40c5a532c10dede55956",
                "md5": "1091b70d4a13b83d6d1a3e096cea4908",
                "sha256": "ca762fe4b66a3deff3f4f764b304714a9bfc1c0f46448263582531907197cba9"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1091b70d4a13b83d6d1a3e096cea4908",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "~=3.9",
            "size": 1750126,
            "upload_time": "2025-10-08T11:48:56",
            "upload_time_iso_8601": "2025-10-08T11:48:56.084903Z",
            "url": "https://files.pythonhosted.org/packages/24/78/2dca2a8542c730cea4bfa4029ba6af629912b51c40c5a532c10dede55956/ethos_u_vela-4.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aacbf00f6b670b45117595949715e21b80f1d275a5fba0bbb6152099565ab62f",
                "md5": "9a774f15ab848ffed8513ca6ba595d40",
                "sha256": "807ef6bb41f516b85328160cdffce4e27d52d425a30ac88d1a5ef986d4295dc0"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9a774f15ab848ffed8513ca6ba595d40",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "~=3.9",
            "size": 1917290,
            "upload_time": "2025-10-08T11:48:58",
            "upload_time_iso_8601": "2025-10-08T11:48:58.749334Z",
            "url": "https://files.pythonhosted.org/packages/aa/cb/f00f6b670b45117595949715e21b80f1d275a5fba0bbb6152099565ab62f/ethos_u_vela-4.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4acfe5682e047eb8b1e487a721d8638fab80011851b3ce1ede7bdfc9dc42e6e",
                "md5": "0fe94973f23cd59756d3593f5a5f05ba",
                "sha256": "c2e6cd0460601256dd4e3e6fdbe56fc7024dad1aa7823317c31e840836fd0b20"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fe94973f23cd59756d3593f5a5f05ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "~=3.9",
            "size": 1858070,
            "upload_time": "2025-10-08T11:49:00",
            "upload_time_iso_8601": "2025-10-08T11:49:00.137251Z",
            "url": "https://files.pythonhosted.org/packages/d4/ac/fe5682e047eb8b1e487a721d8638fab80011851b3ce1ede7bdfc9dc42e6e/ethos_u_vela-4.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ef8aba0bfcdf61f8ee0b3bd431f2499ba644e1e4ac7c56597b4dad51e38d460",
                "md5": "4216d333685c0921f01387e2d4b00101",
                "sha256": "e127ce5fe001a5466d1b5c6719535ca1406034c283b24aef543a06cda883485f"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "4216d333685c0921f01387e2d4b00101",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "~=3.9",
            "size": 1409287,
            "upload_time": "2025-10-08T11:49:01",
            "upload_time_iso_8601": "2025-10-08T11:49:01.460665Z",
            "url": "https://files.pythonhosted.org/packages/2e/f8/aba0bfcdf61f8ee0b3bd431f2499ba644e1e4ac7c56597b4dad51e38d460/ethos_u_vela-4.4.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "913d82091e2a405a2948f7939336a8e616bc8a98d327c0183c65055ac48d39e3",
                "md5": "8ba3f8bc788426f5f5e3c8891aa19dee",
                "sha256": "679801a1cfc7543183493b25bbf623d9895ce661c7c778dba8568812f77e8c04"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8ba3f8bc788426f5f5e3c8891aa19dee",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "~=3.9",
            "size": 1561372,
            "upload_time": "2025-10-08T11:49:02",
            "upload_time_iso_8601": "2025-10-08T11:49:02.956298Z",
            "url": "https://files.pythonhosted.org/packages/91/3d/82091e2a405a2948f7939336a8e616bc8a98d327c0183c65055ac48d39e3/ethos_u_vela-4.4.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48e704635937bdfe6945b2baa273dba7b02fb85cef9cc2163fe7aae7fd8b8c74",
                "md5": "c9f978ee855e596753416ec484b3d59e",
                "sha256": "39207fb7bfbd9a4624aaece4a7e0a02781cebec8a9b1d4596cafae42399671c9"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c9f978ee855e596753416ec484b3d59e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "~=3.9",
            "size": 1683459,
            "upload_time": "2025-10-08T11:49:04",
            "upload_time_iso_8601": "2025-10-08T11:49:04.749013Z",
            "url": "https://files.pythonhosted.org/packages/48/e7/04635937bdfe6945b2baa273dba7b02fb85cef9cc2163fe7aae7fd8b8c74/ethos_u_vela-4.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9825a7809b843f8bda2720e0afaa5980e089a7d771d3226d6026ecb568808726",
                "md5": "3e3ee86a2c7436d6d5e01c448aee8069",
                "sha256": "3a521b1739e816663ab67ca291acd9a2d4c75401ce60bb52d249fe40472ae3cc"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e3ee86a2c7436d6d5e01c448aee8069",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "~=3.9",
            "size": 1750395,
            "upload_time": "2025-10-08T11:49:06",
            "upload_time_iso_8601": "2025-10-08T11:49:06.142288Z",
            "url": "https://files.pythonhosted.org/packages/98/25/a7809b843f8bda2720e0afaa5980e089a7d771d3226d6026ecb568808726/ethos_u_vela-4.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bbaf7b4ecec2a4b7d470f09b6133eeca63dbdea2ae471e7260462bd48aeae09",
                "md5": "24afa94c548ae9ab731a54ccd6b6a6ac",
                "sha256": "11b653f96fff7d47be876b778b073c15867297f008e8df8b7bed06c843d39591"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "24afa94c548ae9ab731a54ccd6b6a6ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "~=3.9",
            "size": 1916998,
            "upload_time": "2025-10-08T11:49:07",
            "upload_time_iso_8601": "2025-10-08T11:49:07.923020Z",
            "url": "https://files.pythonhosted.org/packages/3b/ba/f7b4ecec2a4b7d470f09b6133eeca63dbdea2ae471e7260462bd48aeae09/ethos_u_vela-4.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "400ae1cc5163f30facd764c613bccfe3362991f7f6fb920c4596567f9c6782b7",
                "md5": "4f098865b26705b89d0ac844a9afa6f2",
                "sha256": "1272e54ae90e290dc185fab17ae0efbcfb338c53108b54f21109298368b4bf95"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f098865b26705b89d0ac844a9afa6f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "~=3.9",
            "size": 1856896,
            "upload_time": "2025-10-08T11:49:09",
            "upload_time_iso_8601": "2025-10-08T11:49:09.294585Z",
            "url": "https://files.pythonhosted.org/packages/40/0a/e1cc5163f30facd764c613bccfe3362991f7f6fb920c4596567f9c6782b7/ethos_u_vela-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea178ec95a6a50e24ad55020b6fb07716f0258592e9f6dc8c78e4b2f35d6274e",
                "md5": "3b4935228321a61c73e83ed789c053c7",
                "sha256": "246edc49c7ccb6a9042da77d73ea1848147288351b84cb72c2be99bba37e5fac"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "3b4935228321a61c73e83ed789c053c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "~=3.9",
            "size": 1408980,
            "upload_time": "2025-10-08T11:49:11",
            "upload_time_iso_8601": "2025-10-08T11:49:11.026259Z",
            "url": "https://files.pythonhosted.org/packages/ea/17/8ec95a6a50e24ad55020b6fb07716f0258592e9f6dc8c78e4b2f35d6274e/ethos_u_vela-4.4.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e47b2b2234ec0162135683097fa5737c20cf429a287d54665a5a793878e1085d",
                "md5": "b88e700a8e8fadf9eeb1c6d109ce4d94",
                "sha256": "29c17252c0e0ff7391c093d0dbe021cb8a9ae7867df2e19d9b4399ccc61377e0"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b88e700a8e8fadf9eeb1c6d109ce4d94",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "~=3.9",
            "size": 1568728,
            "upload_time": "2025-10-08T11:49:12",
            "upload_time_iso_8601": "2025-10-08T11:49:12.688649Z",
            "url": "https://files.pythonhosted.org/packages/e4/7b/2b2234ec0162135683097fa5737c20cf429a287d54665a5a793878e1085d/ethos_u_vela-4.4.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a7ee520699ab3934097a83a834fab68b1424c148bf998dfaf2e1bb88150f36a",
                "md5": "2021992a7b7b36a2259bde6509306fac",
                "sha256": "0711c94df4079dbeda41671b2d4f72b318e2d00b078d702ed383b462d14bf001"
            },
            "downloads": -1,
            "filename": "ethos_u_vela-4.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "2021992a7b7b36a2259bde6509306fac",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.9",
            "size": 2271519,
            "upload_time": "2025-10-08T11:49:15",
            "upload_time_iso_8601": "2025-10-08T11:49:15.646776Z",
            "url": "https://files.pythonhosted.org/packages/3a/7e/e520699ab3934097a83a834fab68b1424c148bf998dfaf2e1bb88150f36a/ethos_u_vela-4.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-08 11:49:15",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ethos-u-vela"
}
        
Elapsed time: 1.75397s