Add 3_cost_scaling_analysis/tests/data/sample_config.json

This commit is contained in:
Mika 2026-03-28 16:47:38 +00:00
parent bd0c7e098c
commit eb7bad5657

View file

@ -0,0 +1,14 @@
{
"workers": [
{"worker_count": 1, "cost_per_worker": 10.0, "total_cost": 10.0},
{"worker_count": 2, "cost_per_worker": 9.5, "total_cost": 19.0},
{"worker_count": 4, "cost_per_worker": 8.0, "total_cost": 32.0},
{"worker_count": 8, "cost_per_worker": 7.5, "total_cost": 60.0},
{"worker_count": 16, "cost_per_worker": 7.0, "total_cost": 112.0}
],
"metadata": {
"description": "Beispielkonfiguration für Worker-Kostenanalyse.",
"generated_for": "Unit-Tests der CostMetrics-Analyse",
"version": "1.0"
}
}