Fix an initialization order error in cuda_sparse_cholesky.cc

Change-Id: I8d6f4d10f7ec5585f00b8324a21f325f353e88e5
This commit is contained in:
Sameer Agarwal
2026-05-01 14:31:18 -07:00
parent 806af056fe
commit 0ba987acaf
+1 -1
View File
@@ -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_) {}