• Home
  • Raw
  • Download

Lines Matching refs:CompressedRowSparseMatrix

72 CompressedRowSparseMatrix::CompressedRowSparseMatrix(int num_rows,  in CompressedRowSparseMatrix()  function in ceres::internal::CompressedRowSparseMatrix
90 CompressedRowSparseMatrix::CompressedRowSparseMatrix( in CompressedRowSparseMatrix() function in ceres::internal::CompressedRowSparseMatrix
134 CompressedRowSparseMatrix::CompressedRowSparseMatrix(const double* diagonal, in CompressedRowSparseMatrix() function in ceres::internal::CompressedRowSparseMatrix
154 CompressedRowSparseMatrix::~CompressedRowSparseMatrix() { in ~CompressedRowSparseMatrix()
157 void CompressedRowSparseMatrix::SetZero() { in SetZero()
161 void CompressedRowSparseMatrix::RightMultiply(const double* x, in RightMultiply()
173 void CompressedRowSparseMatrix::LeftMultiply(const double* x, double* y) const { in LeftMultiply()
184 void CompressedRowSparseMatrix::SquaredColumnNorm(double* x) const { in SquaredColumnNorm()
193 void CompressedRowSparseMatrix::ScaleColumns(const double* scale) { in ScaleColumns()
201 void CompressedRowSparseMatrix::ToDenseMatrix(Matrix* dense_matrix) const { in ToDenseMatrix()
213 void CompressedRowSparseMatrix::DeleteRows(int delta_rows) { in DeleteRows()
232 void CompressedRowSparseMatrix::AppendRows(const CompressedRowSparseMatrix& m) { in AppendRows()
263 void CompressedRowSparseMatrix::ToTextFile(FILE* file) const { in ToTextFile()
276 void CompressedRowSparseMatrix::ToCRSMatrix(CRSMatrix* matrix) const { in ToCRSMatrix()
289 void CompressedRowSparseMatrix::SetMaxNumNonZeros(int num_nonzeros) { in SetMaxNumNonZeros()
296 void CompressedRowSparseMatrix::SolveLowerTriangularInPlace( in SolveLowerTriangularInPlace()
306 void CompressedRowSparseMatrix::SolveLowerTriangularTransposeInPlace( in SolveLowerTriangularTransposeInPlace()
316 CompressedRowSparseMatrix* CompressedRowSparseMatrix::CreateBlockDiagonalMatrix( in CreateBlockDiagonalMatrix()
326 CompressedRowSparseMatrix* matrix = in CreateBlockDiagonalMatrix()
327 new CompressedRowSparseMatrix(num_rows, num_rows, num_nonzeros); in CreateBlockDiagonalMatrix()
357 CompressedRowSparseMatrix* CompressedRowSparseMatrix::Transpose() const { in Transpose()
358 CompressedRowSparseMatrix* transpose = in Transpose()
359 new CompressedRowSparseMatrix(num_cols_, num_rows_, num_nonzeros()); in Transpose()
416 CompressedRowSparseMatrix*
433 CompressedRowSparseMatrix* matrix = in CompressAndFillProgram()
434 new CompressedRowSparseMatrix(num_rows, num_cols, num_nonzeros); in CompressAndFillProgram()
479 CompressedRowSparseMatrix*
480 CompressedRowSparseMatrix::CreateOuterProductMatrixAndProgram( in CreateOuterProductMatrixAndProgram()
481 const CompressedRowSparseMatrix& m, in CreateOuterProductMatrixAndProgram()
508 void CompressedRowSparseMatrix::ComputeOuterProduct( in ComputeOuterProduct()
509 const CompressedRowSparseMatrix& m, in ComputeOuterProduct()
511 CompressedRowSparseMatrix* result) { in ComputeOuterProduct()