mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 08:34:37 +08:00
Fix an initialization order error in cuda_sparse_cholesky.cc
Change-Id: I8d6f4d10f7ec5585f00b8324a21f325f353e88e5
This commit is contained in:
@@ -192,8 +192,8 @@ class CERES_NO_EXPORT CudaSparseCholeskyImpl final : public SparseCholesky {
|
||||
|
||||
CudaSparseCholeskyImpl(ContextImpl* context)
|
||||
: context_(context),
|
||||
lhs_cols_d_(context_),
|
||||
lhs_rows_d_(context_),
|
||||
lhs_cols_d_(context_),
|
||||
lhs_values_d_(context_),
|
||||
rhs_d_(context_),
|
||||
x_d_(context_) {}
|
||||
|
||||
Reference in New Issue
Block a user