Skip to content

Commit

Permalink
fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrantq committed Nov 8, 2024
1 parent da75044 commit bb020b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions enzyme/Enzyme/Herbie.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3661,8 +3661,8 @@ bool accuracyDPSolver(
costToAccuracyMap.swap(prunedCostToAccuracyMap);
costToSolutionMap.swap(prunedCostToSolutionMap);

llvm::errs() << "Finished processing " << AOCounter << " of " << AOs.size()
<< " AOs\n";
llvm::errs() << "Finished processing " << ++AOCounter << " of "
<< AOs.size() << " AOs\n";
}

int ACCCounter = 0;
Expand Down Expand Up @@ -3754,7 +3754,7 @@ bool accuracyDPSolver(
costToAccuracyMap.swap(prunedCostToAccuracyMap);
costToSolutionMap.swap(prunedCostToSolutionMap);

llvm::errs() << "Finished processing " << ACCCounter << " of "
llvm::errs() << "Finished processing " << ++ACCCounter << " of "
<< ACCs.size() << " ACCs\n";
}

Expand Down Expand Up @@ -4444,7 +4444,7 @@ bool fpOptimize(Function &F, const TargetTransformInfo &TTI) {
ACCs.push_back(std::move(ACC));
}
llvm::errs() << "Finished synthesizing candidates for "
<< componentCounter++ << " of " << connected_components.size()
<< ++componentCounter << " of " << connected_components.size()
<< " connected components\n";
}

Expand Down

0 comments on commit bb020b4

Please sign in to comment.