initial commit for public eval

This commit is contained in:
Sebastian Rust
2026-05-27 21:00:28 +02:00
commit d77a1bf412
36 changed files with 5414 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
"""NFP-4000 memory constants (capacities + access latencies).
Source: Netronome Network Flow Processor 4xxx Family datasheet
(netronomeNetronomeNetworkFlow2018).
"""
from pathlib import Path
def compute(derived: Path) -> tuple[dict[str, str], list[Path]]:
return {
"nfp4000/lmem/capacity-kb": "4",
"nfp4000/lmem/latency-cycles": "1-3",
"nfp4000/ctm/capacity-kb": "256",
"nfp4000/ctm/latency-cycles": "50-100",
}, []