When using SVD with MKL support (EIGEN_USE_MKL_ALL is on), the following code will fail for MKL from Intel Composer XE 2013 SP1. void test_svd() { Eigen::RowVector3d vec(1, 2, 3); Eigen::MatrixXd mat(76, 3); mat.rowwise() = vec; // failure here Eigen::JacobiSVD<MatrixXd> svd(mat, Eigen::ComputeThinV); } The error message is: Intel MKL ERROR: Parameter 13 was incorrect on entry to DGESVD. This happens when the number of rows >=76, and only happens on the newest version of MKL (2013 sp1).
-- GitLab Migration Automatic Message -- This bug has been migrated to gitlab.com's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.com/libeigen/eigen/issues/683.