We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d04c203 commit fe9129cCopy full SHA for fe9129c
helion/autotuner/base_search.py
@@ -900,6 +900,7 @@ def _wait_for_all_step(
900
) -> list[PrecompileFuture]:
901
"""Start up to the concurrency cap, wait for progress, and return remaining futures."""
902
cap = futures[0].search._jobs if futures else 1
903
+ assert cap > 0, "autotune_precompile_jobs must be positive"
904
running = [f for f in futures if f.started and f.ok is None and f.is_alive()]
905
906
# Start queued futures up to the cap
0 commit comments