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 suppose threads aren't yet implemented. I suppose it's hard so feel free to skip. Or at least comment on how difficult.
Since you already did mandelbrot I thought it might be low-hanging fruit as for another Julia program at Debian Benchmark Game, but the one there is already threaded so I may give up on that one.
Taking out write I got allocations (assuming because of the threading):
Since it's a constant known amount of threads and thus allocations, then maybe this actually would just work? Allocations only a problem if they actually trigger GC, and I could rely on not happening for such a small amount of?
The text was updated successfully, but these errors were encountered:
Ah yeah, so as I understand it, enabling multithreading in StaticCompiler currently would be rather hard. On the StaticTools side, some of the Libc functions that StaticTools calls may not be thread-safe unless your Libc is thread-safe, but that's not likely what's causing any errors you'd get. Someday I'd like to be able to use MPI in StaticCompiler'd programs, but that's unlikely to work out of the box
I suppose threads aren't yet implemented. I suppose it's hard so feel free to skip. Or at least comment on how difficult.
Since you already did mandelbrot I thought it might be low-hanging fruit as for another Julia program at Debian Benchmark Game, but the one there is already threaded so I may give up on that one.
Taking out write I got allocations (assuming because of the threading):
Since it's a constant known amount of threads and thus allocations, then maybe this actually would just work? Allocations only a problem if they actually trigger GC, and I could rely on not happening for such a small amount of?
The text was updated successfully, but these errors were encountered: