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 first make multiple copies of a PyObject, and then access them in multiple threads. Finally, I meet this error. julia -t5
using PyCall
py"""
class A():
x = 0.0
a = A()
"""
alist = [deepcopy(py"a") for i in 1:10]
# @show alist
for j in 1:100
Threads.@threads for i in 1:10
alist[i].x
end
end
Julia version
Julia Version 1.9.3
Commit bed2cd540a1 (2023-08-24 14:43 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
LIBM: libopenlibm
LLVM: libLLVM-14.0.6 (ORCJIT, goldmont)
Thanks.
The text was updated successfully, but these errors were encountered:
I first make multiple copies of a PyObject, and then access them in multiple threads. Finally, I meet this error.
julia -t5
Julia version
Thanks.
The text was updated successfully, but these errors were encountered: