I can't get the native provider to work (I don't see any performance improvement)
Is there a way to tell that it's being used, other than the performance improvement?
Code is as follow:
mRef is a Matrix<double>
vDet is a Vector<double>
Thanks!
Is there a way to tell that it's being used, other than the performance improvement?
Code is as follow:
mRef is a Matrix<double>
vDet is a Vector<double>
Control.LinearAlgebraProvider = new MklLinearAlgebraProvider();
var mRefT = mRef.Transpose(); // reference matrix transposed
var dV = mRefT * vDet;
var A = mRefT * mRef;
var pV = A.LU().Solve(dV);
Using version 2.4.0.26 of MathNet.NumericsThanks!