Skip to content

Commit

Permalink
IOSS: Fix parallel call to decomposition utils
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Aug 28, 2024
1 parent 08d75f2 commit da0123c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,8 @@ namespace Ioex {
element_to_proc_global, INT(0));

if (m_decomposition.m_showHWM || m_decomposition.m_showProgress) {
Ioss::DecompUtils::output_decomposition_statistics(element_to_proc_global, m_processorCount);
auto work_per_rank = Ioss::DecompUtils::get_work_per_rank(element_to_proc_global, m_processorCount);
Ioss::DecompUtils::output_decomposition_statistics(work_per_rank);
}
}
// Now broadcast the parts of the `element_to_proc_global`
Expand Down

0 comments on commit da0123c

Please sign in to comment.