From 8847be65e564e598cc4aa149f7e3f3dc9f359e0e Mon Sep 17 00:00:00 2001 From: shirohasuki Date: Wed, 26 Aug 2026 02:29:20 +0800 Subject: [PATCH] feat: add AlexNet MODEL_CMAKE entry for workload builds Registers the CLI model alias 'alexnet' -> -DMODEL value 'alexnet' in the MODEL_CMAKE dict of the workload build step, completing the three-place registration for the new AlexNet ModelTest e2e workload (https://huggingface.co/Pie33000/alexnet). --- api/steps/workload/01_build_event.step.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/api/steps/workload/01_build_event.step.py b/api/steps/workload/01_build_event.step.py index a3eec81..2662d23 100644 --- a/api/steps/workload/01_build_event.step.py +++ b/api/steps/workload/01_build_event.step.py @@ -40,6 +40,11 @@ "buddynext": "BuddyNext", } +# CLI model → -DMODEL cmake value for workload builds. +MODEL_CMAKE = { + "alexnet": "alexnet", +} + def chips_for_model(bbdir: str, model_key: str) -> set[str]: """Chips that currently ship a layout for this model (many-to-many)."""