Groups 24 of 99+ julia-users › Compute eigenvalues in parallel 3 posts by 3 authors AStupidbear May 20 Is there a package in julia to compute eigenvalues in parallel? Tony Kelman May 22 Shared memory or distributed? For the latter I would look at Elemental. For the former, you can use a multithreaded BLAS in the LAPACK eigenvalue calls, though from reports it appears MKL is often better optimized on eigenvalue computation that openblas. AStupidbear May 24 thanks