RAVEL
RAVEL (Rate-Aware Vectorized Engine for Low-latency) generates a specialized, hls4ml-compatible FPGA inference project. Aria 1.1.0 implements the qualified pair-parallel, two-row wide-stream profile for the CNN-for-Arianna model family, which is capable of processing an 8-channel ADC stream with a rate of up to 4.4 GSa/s on the KU5P. This model distinguishes in real time between neutrino signals generated by Askaryn Radiation and noise, and can detect over 99% of neutrinos at a trigger rate of 1 Hz.
Performance
Like-for-like HLS comparison
Both flows below use the exact same Keras model, hls4ml configuration, part, and clock target. The vanilla project is emitted directly by hls4ml without manual changes to generated C++, headers, Tcl, or YAML.
| Flow | II | Latency (cycles) | BRAM_18K | DSP | FF | LUT |
|---|---|---|---|---|---|---|
| Vanilla hls4ml | 3076 | 3084 | 18 | 0 | 26275 | 38365 |
| RAVEL Aria 1.1.0 | 178 | 183 | 0 | 4 | 3483 | 28922 |
RAVEL delivers a 17.3x lower initiation interval and 16.9x lower cycle latency, with 86.7% fewer FF, 24.6% fewer LUT, and no BRAM_18K. It uses four DSPs instead of zero. The estimated clock periods are 3.619 ns for vanilla hls4ml and 3.647 ns for RAVEL, both below the 5 ns target. Resource figures in this table are Vitis HLS estimates; see the source-backed comparison evidence and original reports for the full audit.
More Information about implementation using RAVEL, please see the performance of the CNN-Core-Generator.
Install
Use a clean Python 3.11 environment on Linux for the fully qualified generation, C++ verification, and Vitis HLS workflow:
python -m pip install ravel-hls==1.1.0
ravel-hls doctor --json
For an editable source checkout, replace the install command with:
python -m pip install -c constraints/aria-reference.txt -e .
Do not co-install the retired HGQ distribution with hgq2; both own the
hgq Python namespace and RAVEL rejects that conflict before generation.
Python API
import hls4ml
import keras
from hgq.layers import QConv2D, QDense
import ravel_hls as ravel
model = keras.models.load_model(
"model.keras", custom_objects={"QConv2D": QConv2D, "QDense": QDense}
)
hls = hls4ml.utils.config_from_keras_model(
model, granularity="name", backend="Vitis"
)
hls["Model"].update({"Strategy": "Latency", "ReuseFactor": 1})
config = {
"Project": {"Name": "cnn_core", "OutputDir": "cnn_core"},
"HLS": {
"Backend": "Vitis",
"IOType": "io_stream",
"Part": "xcku5p-ffvb676-2-e",
"ClockPeriod": 5.0,
"Config": hls,
},
"Verification": {"Mode": "required", "Samples": 32, "Seed": 19},
"Vitis": {"Run": False},
}
project = ravel.convert(model, config)
print(project.status)
Vitis.Run defaults to False. Set it to True to run
vitis_hls -f build_prj.tcl after atomic project publication and automatically
record the synthesis report. The default Vitis stages are reset and synthesis;
CSim, CoSim, validation, export, and Vivado synthesis remain disabled unless
their booleans under Vitis.Stages are enabled explicitly. The same operation
can be requested later with project.build().
The concise project lifecycle is Project.open(path), project.refresh(model),
project.build(), project.record(report_dir), and project.link(). The CLI
command ravel-hls inspect PROJECT --json performs full source-integrity
checking; add --fast when payload hashing should be skipped.
Parameter packages
Parameters stores portable generation-relevant inference state without
generated HLS sources or executable Python objects:
parameters = ravel.Parameters.extract(model)
parameters.save("trained.ravelparams")
project = ravel.Project.open("cnn_core")
project.refresh(ravel.Parameters.load("trained.ravelparams"))
The deterministic archive contains JSON plus NPY arrays for kernel, bias, and learned K/I/F quantizer state. Static quantizer contracts and slot schemas are compatibility-checked before a complete staged regeneration. A parameter package is not encrypted.
Other Information
See the executable CNN-for-Arianna reference, architecture, compatibility, and project format for the full contracts.
Our Project used RAVEL
License
This project licensed under Apache-2.0. See LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ravel_hls-1.2.4.tar.gz.
File metadata
- Download URL: ravel_hls-1.2.4.tar.gz
- Upload date:
- Size: 100.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ed5b25536652c0c3ec5fcb8c91701e1ca8f9b45884a298426ccdb11491fea92
|
|
| MD5 |
6d9058a7a6b1e96769d0f0ab68d7e592
|
|
| BLAKE2b-256 |
693cc44a09f9e13d9fb2a30b1df3d2ede48ce92fa93a633864af94fc1078b4c8
|
Provenance
The following attestation bundles were made for ravel_hls-1.2.4.tar.gz:
Publisher:
publish.yml on albertc9/RAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ravel_hls-1.2.4.tar.gz -
Subject digest:
7ed5b25536652c0c3ec5fcb8c91701e1ca8f9b45884a298426ccdb11491fea92 - Sigstore transparency entry: 2412984488
- Sigstore integration time:
-
Permalink:
albertc9/RAVEL@c2ff52473462fcf53d532447a69659d441bfde93 -
Branch / Tag:
refs/tags/v1.2.4 - Owner: https://github.com/albertc9
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c2ff52473462fcf53d532447a69659d441bfde93 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ravel_hls-1.2.4-py3-none-any.whl.
File metadata
- Download URL: ravel_hls-1.2.4-py3-none-any.whl
- Upload date:
- Size: 45.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aed22e97f65edf59e9801f9d590581cf09e4e452f0728c5d3f4796fe81bb0f8a
|
|
| MD5 |
7cd1f66993b851040406a007b91488e6
|
|
| BLAKE2b-256 |
30358edbaa8fe6ffea4cab2e289810bb1ef460d29050d644909a938117be8eb7
|
Provenance
The following attestation bundles were made for ravel_hls-1.2.4-py3-none-any.whl:
Publisher:
publish.yml on albertc9/RAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ravel_hls-1.2.4-py3-none-any.whl -
Subject digest:
aed22e97f65edf59e9801f9d590581cf09e4e452f0728c5d3f4796fe81bb0f8a - Sigstore transparency entry: 2412984580
- Sigstore integration time:
-
Permalink:
albertc9/RAVEL@c2ff52473462fcf53d532447a69659d441bfde93 -
Branch / Tag:
refs/tags/v1.2.4 - Owner: https://github.com/albertc9
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c2ff52473462fcf53d532447a69659d441bfde93 -
Trigger Event:
push
-
Statement type: