My objective is to find Eigen values and vectors of an input matrix of mxn
size. Since it a rectangular matrix, converted the same to square-symmetric matrix by doing a transpose and then matrix-multiplication with source matrix.
After this, i am using Intel MKL library to determine Eigen values and vectors of square-symmetric matrix. Unfortunately, for square symmetric matrix size of 1000000 x 100000
the time taken is ~35 to ~40 secs, which does not suit my application.
Any suggestions on improving the performance would be really helpful.
Thanks in advance