File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
components/omega/src/base Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -770,7 +770,9 @@ class Halo {
770770 MeshElement ThisElem // index space Array is defined on
771771 ) {
772772 // Add more context for timers in this function
773- Pacer::addParentPrefix ();
773+ // BUG: fails when there is no parent timer
774+ // Uncomment after fixing in Pacer
775+ // Pacer::addParentPrefix();
774776
775777 I4 IErr{0 }; // error code
776778
@@ -905,7 +907,9 @@ class Halo {
905907 MPI_Waitall (SendReqs.size (), SendReqs.data (), MPI_STATUS_IGNORE);
906908 Pacer::stop (" Halo:waitSends" , 4 );
907909
908- Pacer::removeParentPrefix ();
910+ // BUG: fails when there is no parent timer
911+ // Uncomment after fixing in Pacer
912+ // Pacer::removeParentPrefix();
909913
910914 return IErr;
911915 } // end exchangeFullArrayHalo
You can’t perform that action at this time.
0 commit comments