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 get this error intermittently on exit from Julia. I was able to trace it to the finalizer of CudaPtr (pointer.jl:44), in particular to the statement haskey(cuda_ptrs, p). Here is what I know so far:
If I comment out the CudaPtr finalizer (pointer.jl:38) the error disappears.
If I comment out haskey(cuda_ptrs, p) (pointer.jl:46) the error disappears.
The error does not consistently appear: Sometimes if a gc or a user-free occurs before Julia exit and calls the CudaPtr finalizer the error disappears. I am still trying to pinpoint the exact condition.
Continuing from: https://groups.google.com/d/topic/julia-dev/NqPz4f_0VLg/discussion
I get this error intermittently on exit from Julia. I was able to trace it to the finalizer of CudaPtr (pointer.jl:44), in particular to the statement haskey(cuda_ptrs, p). Here is what I know so far:
The text was updated successfully, but these errors were encountered: