We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48b38fc commit fd452bfCopy full SHA for fd452bf
sparse/impl/KokkosSparse_twostage_gauss_seidel_impl.hpp
@@ -116,9 +116,9 @@ class TwostageGaussSeidel {
116
struct TwostageGaussSeidel_functor {
117
public:
118
// input
119
- bool two_stage;
120
- bool compact_form;
121
- bool diagos_given;
+ bool two_stage = false;
+ bool compact_form = false;
+ bool diagos_given = false;
122
const_ordinal_t num_rows;
123
input_row_map_view_t rowmap_view;
124
input_entries_view_t column_view;
@@ -143,7 +143,7 @@ class TwostageGaussSeidel {
143
output_entries_view_t entries_a2;
144
output_values_view_t values_a2;
145
// for computing residual norm with
146
- bool forward_sweep;
+ bool forward_sweep = true;
147
internal_vector_view_t localX;
148
internal_vector_view_t localB;
149
0 commit comments