Home
last modified time | relevance | path

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

/external/ceres-solver/internal/ceres/
Dcxsparse.cc180 cs_di_sparse tsm_wrapper; in CreateSparseMatrix() local
181 tsm_wrapper.nzmax = tsm->num_nonzeros(); in CreateSparseMatrix()
182 tsm_wrapper.nz = tsm->num_nonzeros(); in CreateSparseMatrix()
183 tsm_wrapper.m = tsm->num_rows(); in CreateSparseMatrix()
184 tsm_wrapper.n = tsm->num_cols(); in CreateSparseMatrix()
185 tsm_wrapper.p = tsm->mutable_cols(); in CreateSparseMatrix()
186 tsm_wrapper.i = tsm->mutable_rows(); in CreateSparseMatrix()
187 tsm_wrapper.x = tsm->mutable_values(); in CreateSparseMatrix()
189 return cs_compress(&tsm_wrapper); in CreateSparseMatrix()