From 38d6553048808f6b53488894fdb4c83211590ad4 Mon Sep 17 00:00:00 2001 From: Void Agent Date: Sat, 15 Aug 2026 00:00:41 +0100 Subject: speedup: batched eval (46x, sieve-stub verified), run_sweep orchestrator (2-way parallel, idempotent, summaries), E1 jobs; 36 tests --- tests/test_eval_classification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_eval_classification.py') diff --git a/tests/test_eval_classification.py b/tests/test_eval_classification.py index 3f9994d..7114166 100644 --- a/tests/test_eval_classification.py +++ b/tests/test_eval_classification.py @@ -45,7 +45,7 @@ class StubModel(torch.nn.Module): def _sieve35(n): c = n + 1 - while any(c % d == 0 for d in (2, 3, 5, 7)): + while any(c % d == 0 for d in (2, 3, 5, 7) if d < c): c += 1 return c -- cgit v1.2.3