-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors during parallel computation (Threads.@threads) #664
Comments
Without checking, I think the |
I see. Thanks for your explanation! Is there any workaround to solve several |
Did you try |
See https://github.com/JuliaReach/ReachabilityAnalysis.jl/blob/master/src/Continuous/solve.jl#L46 to use it from the main |
Here is a test: https://github.com/JuliaReach/ReachabilityAnalysis.jl/blob/master/test/algorithms/TMJets.jl#L32 |
I see. Thank you so much! I'll have a try tomorrow! |
Hello, @mforets and @schillic. I have tried
I have tried on two computers (one is linux and one is windows) and the results are the same. This time, the
|
There are some errors when using
Threads.@threads
to slove@ivp
. The specific codes intest.jl
(adopted from page) and errors are as follows,If I delete
Threads.@threads
or usejulia -t 1 test.jl
instead of-t 4
, it works. If I deletesol = solve(prob, tspan=(0.0, 200.0), alg=TMJets21a(orderT=7, orderQ=1));
or write something else there, it works too.Any ideas about this problems?
The text was updated successfully, but these errors were encountered: