From 59fc8044bfbeb4f9a6a4a57c0c76e1d5a26be8a7 Mon Sep 17 00:00:00 2001 From: Sam Mirazi Date: Sun, 1 Jun 2025 22:15:41 -0700 Subject: [PATCH] 20-core CPU --- run_benchmark_NO_RESTRICTIONS.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_benchmark_NO_RESTRICTIONS.py b/run_benchmark_NO_RESTRICTIONS.py index c351ab1..fa855f9 100644 --- a/run_benchmark_NO_RESTRICTIONS.py +++ b/run_benchmark_NO_RESTRICTIONS.py @@ -156,10 +156,10 @@ def display_table(rows): SCENARIOS = [ { "name": "FastAPI (No Delay)", - "config": "Uvicorn, async (default)", + "config": "Uvicorn, async (41 workers)", "delay": "None", "cmd": ["uvicorn", "app_fastapi.app_no_delay:app", "--host", "0.0.0.0", - "--port", "8000", "--log-level", "warning"], + "--port", "8000", "--log-level", "warning", "--workers", "41"], "url": FASTAPI_SERVER_URL, "bench_arg": "fastapi", # benchmark/run_benchmark.py uses this to pick the URL/method }, -- 2.25.1