# HG changeset patch # User Tuomo Valkonen # Date 1575557411 -7200 # Node ID f1bbdf68f35b364407958bdc2a21a6756d399635 # Parent fdf2f44be973e64a8c17f679eed5be822b676f7c Use Threads.@spawn instead of the broken hang-prone Distributed. Also fix a few related things. diff -r fdf2f44be973 -r f1bbdf68f35b Project.toml --- a/Project.toml Thu Nov 21 22:17:52 2019 -0500 +++ b/Project.toml Thu Dec 05 16:50:11 2019 +0200 @@ -5,7 +5,6 @@ [deps] AlgTools = "c46e2e78-5339-41fd-a966-983ff60ab8e7" -Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" Images = "916415d5-f1e6-5110-898d-aaa5f9f070e0" Measures = "442fdcdd-2543-5da2-b0f3-8c86c306513e" diff -r fdf2f44be973 -r f1bbdf68f35b src/Visualise.jl --- a/src/Visualise.jl Thu Nov 21 22:17:52 2019 -0500 +++ b/src/Visualise.jl Thu Dec 05 16:50:11 2019 +0200 @@ -5,7 +5,6 @@ module Visualise using Printf -using Distributed using FileIO using Setfield using Images, Plots, Measures @@ -39,8 +38,8 @@ end struct State - vis :: Union{Distributed.RemoteChannel,Bool,Nothing} - visproc :: Union{Nothing,Future} + vis :: Union{Channel,Bool,Nothing} + visproc :: Union{Nothing,Task} start_time :: Union{Real,Nothing} wasted_time :: Real log :: LinkedList{LogEntry} @@ -82,14 +81,14 @@ display(plot([plt(imgs[i]) for i =1:length(imgs)]..., reuse=true, margin=0mm)) end -function visualise(rc_or_vis, imgs) - if isa(rc_or_vis, RemoteChannel) - rc = rc_or_vis +function visualise(channel_or_toggle, imgs) + if isa(channel_or_toggle, Channel) + rc = channel_or_toggle while isready(rc) take!(rc) end put!(rc, imgs) - elseif isa(rc_or_vis, Bool) && rc_or_vis + elseif isa(channel_or_toggle, Bool) && channel_or_toggle do_visualise(imgs) end end @@ -164,8 +163,8 @@ function initialise_visualisation(visualise; iterator=iterate_visualise) # Create visualisation if visualise - rc = RemoteChannel() - visproc = @spawn bg_visualise(rc) + rc = Channel() + visproc = Threads.@spawn bg_visualise(rc) vis =rc #vis = true @@ -182,9 +181,9 @@ end function finalise_visualisation(st) - if isa(st.rc, RemoteChannel) + if isa(st.vis, Channel) # Tell subprocess to finish, and wait - put!(st.rc, nothing) + put!(st.vis, nothing) wait(st.visproc) end end diff -r fdf2f44be973 -r f1bbdf68f35b test/denoise.jl --- a/test/denoise.jl Thu Nov 21 22:17:52 2019 -0500 +++ b/test/denoise.jl Thu Dec 05 16:50:11 2019 +0200 @@ -60,5 +60,5 @@ end # Exit background visualiser - finish_visualisation(st) + finalise_visualisation(st) end