test grouping

This commit is contained in:
Dobromir Popov
2026-07-11 22:11:21 +03:00
parent c195b5ce78
commit 7d259d7c9b
9 changed files with 1424 additions and 19 deletions

View File

@@ -0,0 +1,31 @@
{
"schema_version": 1,
"catalogue_version": "2026.07.1",
"recipes": [
{
"id": "baseline",
"version": "1",
"backend_id": "torch-transformers",
"description": "Backend defaults with no execution overrides.",
"params": {}
},
{
"id": "eager-attention",
"version": "1",
"backend_id": "torch-transformers",
"description": "Force the reference attention path instead of the backend's autoselected one.",
"params": {
"attn_implementation": "eager"
}
},
{
"id": "stateless",
"version": "1",
"backend_id": "torch-transformers",
"description": "Disable the incremental state cache; every step re-runs the full prefill.",
"params": {
"use_cache": false
}
}
]
}