Skip to content

Commit c04bb97

Browse files
committed
Comment out buggy Pacer functions
1 parent 1f5f659 commit c04bb97

File tree

1 file changed

+6
-2
lines changed
  • components/omega/src/base

1 file changed

+6
-2
lines changed

components/omega/src/base/Halo.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)