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
On Interact v0.10.3, Julia 1.3.1, the following code leaks memory:
julia>using Interact
julia>functiongui()
f =rand(100_000_000)
dropd = Widgets.dropdown(["a", "b"])
on(dropd) do _
println(maximum(f))
end
dropd
end
gui (generic function with 2 methods)
julia>nothing; gui(); 11
julia>nothing; gui(); 11...
Memory usage goes up after each call, even after GC.gc().
The text was updated successfully, but these errors were encountered:
On Interact v0.10.3, Julia 1.3.1, the following code leaks memory:
Memory usage goes up after each call, even after
GC.gc()
.The text was updated successfully, but these errors were encountered: