From eb7bad5657369d7c0e1b3611bd59aee8892d7906 Mon Sep 17 00:00:00 2001 From: Mika Date: Sat, 28 Mar 2026 16:47:38 +0000 Subject: [PATCH] Add 3_cost_scaling_analysis/tests/data/sample_config.json --- .../tests/data/sample_config.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 3_cost_scaling_analysis/tests/data/sample_config.json diff --git a/3_cost_scaling_analysis/tests/data/sample_config.json b/3_cost_scaling_analysis/tests/data/sample_config.json new file mode 100644 index 0000000..64978e3 --- /dev/null +++ b/3_cost_scaling_analysis/tests/data/sample_config.json @@ -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" + } +} \ No newline at end of file