HomeSort by relevance Sort by last modified time
    Searched refs:SuperLU (Results 1 - 5 of 5) sorted by null

  /external/eigen/test/
superlu_support.cpp 16 SuperLU<SparseMatrix<double> > superlu_double_colmajor;
17 SuperLU<SparseMatrix<std::complex<double> > > superlu_cplxdouble_colmajor;
  /external/eigen/bench/
sparse_lu.cpp 2 // g++ -I.. sparse_lu.cpp -O3 -g0 -I /usr/include/superlu/ -lsuperlu -lgfortran -DSIZE=1000 -DDENSITY=.05 && ./a.out
122 doEigen<Eigen::SuperLU>("Eigen/SuperLU (nat)", sm1, b, x, Eigen::NaturalOrdering);
123 // doEigen<Eigen::SuperLU>("Eigen/SuperLU (MD AT+A)", sm1, b, x, Eigen::MinimumDegree_AT_PLUS_A);
124 // doEigen<Eigen::SuperLU>("Eigen/SuperLU (MD ATA)", sm1, b, x, Eigen::MinimumDegree_ATA);
125 doEigen<Eigen::SuperLU>("Eigen/SuperLU (COLAMD)", sm1, b, x, Eigen::ColApproxMinimumDegree);
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 85 * A wrapper class for SuperLU matrices. It supports only compressed sparse matrices
145 eigen_assert(false && "Scalar type not supported by SuperLU");
153 eigen_assert( ((MatrixType::Flags&RowMajorBit)!=RowMajorBit) && "row-major dense matrices are not supported by SuperLU");
199 eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by SuperLU");
211 eigen_assert( ((Options&RowMajor)!=RowMajor) && "row-major dense matrices is not supported by SuperLU");
258 eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by SuperLU");
288 * \brief The base class for the direct and incomplete LU factorization of SuperLU
346 eigen_assert(m_isInitialized && "SuperLU is not initialized.");
348 && "SuperLU::solve(): invalid number of rows of the right hand side matrix b");
359 eigen_assert(m_isInitialized && "SuperLU is not initialized.")
    [all...]
  /external/eigen/test/eigen2/
eigen2_sparse_solvers.cpp 158 SparseLU<SparseMatrix<Scalar>,SuperLU> slu(m2);
162 VERIFY(refX.isApprox(x,test_precision<Scalar>()) && "LU: SuperLU");
  /external/eigen/bench/spbench/
spbenchsolver.h 115 out << " <PACKAGE> SUPERLU </PACKAGE> \n";
319 //SuperLU
322 cout << "\nSolving with SUPERLU ... \n";
323 SuperLU<SpMat> solver;

Completed in 135 milliseconds