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
I encountered a memory leak when I tried to solve LU-factorizations in parallel:
const m = 100
const n = 100
function doit()
x = speye(m*n)
X = lufact(x)
p = rand(m,n)
for i=1: 10000
@sync @parallel for t= 1:100
ax = X\p[:]
end
println(i)
#@everywhere gc()
end
end
doit()