We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7587aab commit a7673f5Copy full SHA for a7673f5
femutils/CsrDoFLinearSystemImpl.cc
@@ -101,7 +101,6 @@ _applyRowColumnElimination()
101
102
auto in_out_rhs_variable = Accelerator::viewInOut(command, rhsVariable());
103
auto csr_view = m_csr_view;
104
- ITraceMng* tm = traceMng();
105
command << RUNCOMMAND_LOOP1(iter, nb_dof)
106
{
107
auto [row_index] = iter();
@@ -122,7 +121,6 @@ _applyRowColumnElimination()
122
121
if (is_row_elimination) {
123
auto elimination_value = in_elimination_value[dof_row];
124
in_out_rhs_variable[dof_row] = elimination_value;
125
- tm->info() << "EliminateRHS row=" << dof_row << " v=" << elimination_value;
126
}
127
};
128
0 commit comments