Skip to content

Commit 18012a3

Browse files
committed
minor compilcation fix
1 parent 2e55425 commit 18012a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/rxmesh/matrix/gmg/v_cycle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ struct VCycle
129129

130130

131131
for (int l = 1; l < gmg.m_num_levels; ++l) {
132-
m_rhs.emplace_back(rx, gmg.m_num_samples[l], num_cols);
132+
m_rhs.emplace_back(rx, gmg.m_num_samples[l], num_cols, LOCATION_ALL);
133133

134134
m_x.emplace_back(rx, gmg.m_num_samples[l], num_cols, LOCATION_ALL);
135135

include/rxmesh/matrix/pcg_mat_free_attr_solver.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ struct PCGMatFreeAttrSolver : public CGMatFreeAttrSolver<T, HandleT>
124124
"iterations. Residual "
125125
"= {}",
126126
this->m_iter_taken,
127-
delta_new);
127+
this->delta_new);
128128
this->m_final_residual = this->delta_new;
129129
}
130130

0 commit comments

Comments
 (0)