Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task not abortable #467

Open
hhaensel opened this issue Mar 16, 2025 · 2 comments
Open

Task not abortable #467

hhaensel opened this issue Mar 16, 2025 · 2 comments

Comments

@hhaensel
Copy link

When I define a task that calulates fzeros() the task cannot not neither referenced nor aborted until the task finishes.

using Dates

using Roots
f(x) = exp(-x^2) - sin(x)*cos(x)*x^2

function interrupt(tsk::Task)
    @info Dates.seconds(now() - t0), "Interrupting: $(tsk)"
    istaskdone(tsk) || Base.schedule(tsk, InterruptException(), error = true)
end

function timeout(f, args...; delay, timed_out = "Timed out", kwargs...)
    tsk = @task f(args...; kwargs...)
    global t0 = now()
    @info Dates.seconds(now() - t0), "timer defined: $(tsk)"
    Timer(_ -> interrupt(tsk), delay)
    schedule(tsk)
    @info Dates.seconds(now() - t0), "task started 1: $(tsk)"
    @info Dates.seconds(now() - t0), "task started 2: $(tsk)"
    try
        result = fetch(tsk)
        @info Dates.seconds(now() - t0), "task finished"
        result
    catch _
        timed_out
    end
end

The resulting output is

julia> timeout(find_zeros, f, -1e8, 1e8; delay = 0.1, timed_out = "Timed out")
[ Info: (0.0, "timer defined: Task (runnable) @0x00000277d37fc200")
[ Info: (0.0, "task started 1: Task (runnable) @0x00000277d37fc200")
[ Info: (0.378, "task started 2: Task (done) @0x00000277d37fc200")
[ Info: (0.379, "Interrupting: Task (done) @0x00000277d37fc200")
[ Info: (0.38, "task finished")
18635-element Vector{Float64}:
 -9.999966976087256e7
  ⋮
  9.999966976087256e7

# But this works as expected
julia> timeout(sleep, 1; delay = 0.1, timed_out = "Timed out")
[ Info: (0.0, "timer defined: Task (runnable) @0x00000277d37ff080")
[ Info: (0.002, "task started 1: Task (runnable) @0x00000277d37ff080")
[ Info: (0.003, "task started 2: Task (runnable, started) @0x00000277d37ff080")
[ Info: (0.106, "Interrupting: Task (runnable, started) @0x00000277d37ff080")
"Timed out"

This issue relates to GenieFramework/Stipple.jl#282

@jverzani
Copy link
Member

Thanks for the report. Sadly, I'm not sure what would need to be done here to fix the issue. If I had to guess -- and that is really just that -- it would have to do with the recursion that happens when such a large interval is passed (there is an initial guess, and then a refinement if deemed necessary and the refinement recurses.) Did you try this with a function with fewer zeros? This problem returns over 18000.

@hhaensel
Copy link
Author

I wanted something that take long for easier testing.
Thanks for your thoughts!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants