Merge Node update fix comparison bug
All checks were successful
Validate Operations / validate-operations (push) Successful in 20m21s
All checks were successful
Validate Operations / validate-operations (push) Successful in 20m21s
This commit is contained in:
@@ -95,7 +95,7 @@ void generateReport(func::FuncOp funcOp, const std::string& name) {
|
||||
auto expectedPrintedValue = currentComputeId + 1;
|
||||
bool rangePrinted = false;
|
||||
cI++;
|
||||
for (; cI < lastIndex; ++cI){
|
||||
for (; cI <= lastIndex; ++cI){
|
||||
auto candidateToPrint = std::get<0>(collectedData[cI]);
|
||||
if (candidateToPrint == expectedPrintedValue){
|
||||
expectedPrintedValue = candidateToPrint + 1;
|
||||
|
||||
Reference in New Issue
Block a user