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 am running multiple single-threaded Julia programs on a multi-threaded CPU. Each program runs an FFT plan and then executes that plan many times. While each program applies the FFT to different arrays, all the arrays are of the same size and type.
Is this approach thread safe? If not, I can of course generate an FFT plan first on a single thread, but how do I save an existing FFT plan and import it into a different Julia program?