From 66b8b77feb5fafd3696044ee33a80f26cb693a13 Mon Sep 17 00:00:00 2001 From: CaptainJack2491 Date: Mon, 17 Aug 2026 16:15:28 +0100 Subject: feat(gpu): add CUDA support, chunked eval, bisect prime search, and scaling to 100k (48 tests green) --- scripts/run_sweep.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/run_sweep.py b/scripts/run_sweep.py index 9be5592..34cccf7 100644 --- a/scripts/run_sweep.py +++ b/scripts/run_sweep.py @@ -22,7 +22,8 @@ import time from concurrent.futures import ThreadPoolExecutor, as_completed ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) -PY = os.path.join(ROOT, ".venv", "bin", "python") +_venv_py = os.path.join(ROOT, ".venv", "bin", "python") +PY = _venv_py if os.path.exists(_venv_py) else sys.executable def parse_jobs(path: str) -> list[dict]: -- cgit v1.2.3