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 b102caa commit b0e978aCopy full SHA for b0e978a
helion/autotuner/base_search.py
@@ -952,6 +952,7 @@ def _wait_for_all_step(
952
) -> list[PrecompileFuture]:
953
"""Start up to the concurrency cap, wait for progress, and return remaining futures."""
954
cap = futures[0].search._jobs if futures else 1
955
+ assert cap > 0, "autotune_precompile_jobs must be positive"
956
running = [f for f in futures if f.started and f.ok is None and f.is_alive()]
957
958
# Start queued futures up to the cap
0 commit comments