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%