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
This is a duplicate from counter perf in ImageFiltering.
using ImageFiltering, BenchmarkTools, ComputationalResources
Test program to reproduce
using ImageFiltering, BenchmarkTools, ComputationalResources
function test_imfilter(; opt=1)
gk = Kernel.gaussian(2.0f0)
I = rand(Float32,1000 ,1000)
println("julia_num_threads=$(Threads.nthreads())")
for i = 1:9
start = time()
if opt == 1
J = imfilter(CPU1(Algorithm.FIR()), I, gk)
elseif opt == 2
J = imfilter(I, gk)
else
error("Wrong opt value $opt, either 1 (for CPU1), 2 CPUThreads")
end
t = round(time() - start, digits=6)
println("$i imfilter $t sec")
end
end
Issue occurs when multithreading using ImageView or Gtk
This is just an "intent-capture" package and it doesn't do anything on its own (check the src/ directory, there's almost no code here). I don't see the issue report in ImageFiltering. I'd transfer this issue to ImageFiltering but GitHub doesn't let me transfer across organization boundaries, so I'm closing here.
This is a duplicate from counter perf in ImageFiltering.
using ImageFiltering, BenchmarkTools, ComputationalResources
Test program to reproduce
Issue occurs when multithreading using ImageView or Gtk
In this part, see interrupt trace below
The text was updated successfully, but these errors were encountered: