You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix hanging issue in autotune timeout mechanism (#717)
- Replace manual polling loop with Julia's built-in timedwait() function
- Avoid using Base.throwto() which can cause hangs with sleeping tasks
- Let timed-out tasks continue in background rather than trying to kill them
- Use Channels for clean communication between tasks
- Close channels properly to prevent resource leaks
This fixes the issue where autotune would hang indefinitely when trying
to interrupt tasks that exceeded the timeout limit.
Co-authored-by: ChrisRackauckas <[email protected]>
0 commit comments