Merge Node update fix comparison bug
All checks were successful
Validate Operations / validate-operations (push) Successful in 20m21s

This commit is contained in:
ilgeco
2026-04-23 19:52:16 +02:00
parent fc5bccb487
commit 951baca106

View File

@@ -95,7 +95,7 @@ void generateReport(func::FuncOp funcOp, const std::string& name) {
auto expectedPrintedValue = currentComputeId + 1; auto expectedPrintedValue = currentComputeId + 1;
bool rangePrinted = false; bool rangePrinted = false;
cI++; cI++;
for (; cI < lastIndex; ++cI){ for (; cI <= lastIndex; ++cI){
auto candidateToPrint = std::get<0>(collectedData[cI]); auto candidateToPrint = std::get<0>(collectedData[cI]);
if (candidateToPrint == expectedPrintedValue){ if (candidateToPrint == expectedPrintedValue){
expectedPrintedValue = candidateToPrint + 1; expectedPrintedValue = candidateToPrint + 1;