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;
|
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;
|
||||||
|
|||||||
Reference in New Issue
Block a user