Home
last modified time | relevance | path

Searched refs:cxsparse (Results 1 – 5 of 5) sorted by relevance

/external/ceres-solver/internal/ceres/
Dreorder_program.cc120 CXSparse cxsparse; in OrderingForSparseNormalCholeskyUsingCXSparse()
123 cxsparse.CreateSparseMatrix( in OrderingForSparseNormalCholeskyUsingCXSparse()
125 cs_di* block_jacobian = cxsparse.TransposeMatrix(block_jacobian_transpose); in OrderingForSparseNormalCholeskyUsingCXSparse()
127 cxsparse.MatrixMatrixMultiply(block_jacobian_transpose, block_jacobian); in OrderingForSparseNormalCholeskyUsingCXSparse()
128 cxsparse.Free(block_jacobian); in OrderingForSparseNormalCholeskyUsingCXSparse()
129 cxsparse.Free(block_jacobian_transpose); in OrderingForSparseNormalCholeskyUsingCXSparse()
131 cxsparse.ApproximateMinimumDegreeOrdering(block_hessian, ordering); in OrderingForSparseNormalCholeskyUsingCXSparse()
132 cxsparse.Free(block_hessian); in OrderingForSparseNormalCholeskyUsingCXSparse()
Dcompressed_row_sparse_matrix_test.cc495 CXSparse cxsparse; in TEST() local
531 cs_di cs_matrix_transpose = cxsparse.CreateSparseMatrixTransposeView(matrix.get()); in TEST()
532 cs_di* cs_matrix = cxsparse.TransposeMatrix(&cs_matrix_transpose); in TEST()
534 cxsparse.MatrixMatrixMultiply(&cs_matrix_transpose, cs_matrix); in TEST()
545 cxsparse.CreateSparseMatrixTransposeView(outer_product.get()); in TEST()
565 cxsparse.Free(cs_matrix); in TEST()
566 cxsparse.Free(expected_outer_product); in TEST()
DCMakeLists.txt56 cxsparse.cc
/external/ceres-solver/cmake/
DFindCXSparse.cmake123 FIND_LIBRARY(CXSPARSE_LIBRARY NAMES cxsparse
179 NOT "${LOWERCASE_CXSPARSE_LIBRARY}" MATCHES ".*cxsparse[^/]*")
185 NOT "${LOWERCASE_CXSPARSE_LIBRARY}" MATCHES ".*cxsparse[^/]*")
/external/ceres-solver/docs/source/
Dversion_history.rst503 #. Fixed a memory leak in ``cxsparse.cc``. (Alexander Mordvintsev).