This bugzilla service is closed. All entries have been migrated to https://gitlab.com/libeigen/eigen
Bug 683 - Erro when using SVD with MKL 2013 SP1
Summary: Erro when using SVD with MKL 2013 SP1
Status: NEW
Alias: None
Product: Eigen
Classification: Unclassified
Component: SVD (show other bugs)
Version: 3.2
Hardware: All All
: Normal Unknown
Assignee: Nobody
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-17 04:32 UTC by newstzpz
Modified: 2019-12-04 12:43 UTC (History)
0 users



Attachments

Description newstzpz 2013-10-17 04:32:07 UTC
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).
Comment 1 Nobody 2019-12-04 12:43:19 UTC
-- 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.

Note You need to log in before you can comment on or make changes to this bug.