From 46d07caf186a64a177c590b73fa843b80697cb9e Mon Sep 17 00:00:00 2001 From: Ucizi Mafeni Date: Fri, 5 Jun 2026 16:56:34 +0100 Subject: [PATCH] add run_benchmark.bat --- artemis_scripts/run_benchmark.bat | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 artemis_scripts/run_benchmark.bat diff --git a/artemis_scripts/run_benchmark.bat b/artemis_scripts/run_benchmark.bat new file mode 100644 index 0000000..3a82b21 --- /dev/null +++ b/artemis_scripts/run_benchmark.bat @@ -0,0 +1,13 @@ +@echo off +setlocal + +rem Directory of this script +set "DIR=%~dp0" + +rem Run benchmark via Python orchestrator (cross-platform RSS/CPU sampling). +rem Forwards all args to benchmark.py (e.g. --runs N, --output PATH). +echo Running benchmark +python -m poetry run python "%DIR%benchmark.py" %* + +endlocal +exit /b %ERRORLEVEL%