You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This module provides an interface to the Cholmod library which is part of the <a href="http://www.cise.ufl.edu/research/sparse/SuiteSparse/">suitesparse</a> package.
22
+
* This module provides an interface to the Cholmod library which is part of the <a href="http://www.suitesparse.com">suitesparse</a> package.
23
23
* It provides the two following main factorization classes:
24
24
* - class CholmodSupernodalLLT: a supernodal LLT Cholesky factorization.
25
25
* - class CholmodDecomposiiton: a general L(D)LT Cholesky factorization with automatic or explicit runtime selection of the underlying factorization method (supernodal or simplicial).
* This module provides an interface to the SPQR library, which is part of the <a href="http://www.cise.ufl.edu/research/sparse/SuiteSparse/">suitesparse</a> package.
20
+
* This module provides an interface to the SPQR library, which is part of the <a href="http://www.suitesparse.com">suitesparse</a> package.
* This module provides an interface to the UmfPack library which is part of the <a href="http://www.cise.ufl.edu/research/sparse/SuiteSparse/">suitesparse</a> package.
22
+
* This module provides an interface to the UmfPack library which is part of the <a href="http://www.suitesparse.com">suitesparse</a> package.
23
23
* It provides the following factorization class:
24
24
* - class UmfPackLU: a multifrontal sequential LU factorization.
Copy file name to clipboardExpand all lines: libs/tensorflow/include/external/eigen_archive/eigen-eigen-70505a059011/Eigen/src/CholmodSupport/CholmodSupport.h
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -273,9 +273,10 @@ class CholmodBase : public SparseSolverBase<Derived>
273
273
const Index size = m_cholmodFactor->n;
274
274
EIGEN_UNUSED_VARIABLE(size);
275
275
eigen_assert(size==b.rows());
276
+
277
+
// Cholmod needs column-major stoarge without inner-stride, which corresponds to the default behavior of Ref.
0 commit comments