[julia-users] Compute eigenvalues in parallel

2016-05-20 Thread AStupidbear
Is there a package in julia to compute eigenvalues in parallel?

[julia-users] Compute eigenvalues in parallel

2016-05-21 Thread Tony Kelman
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.

Re: [julia-users] Compute eigenvalues in parallel

2016-05-24 Thread Yao Lu
thanks On Sun, May 22, 2016 at 2:41 PM, Tony Kelman wrote: > 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 c