Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Awesome! Thank you!
mlir/lib/Dialect/Linalg/IR/LinalgOps.cpp | ||
---|---|---|
1033 | You can use a range-based loop over block.getArguments().drop_back() to avoid index computations. Or maybe even llvm::copy with std::back_inserter | |
1034 | nit: you can use here and in other places below: block.getArgument(i) | |
1101 | nit: getOperand(i - 1) | |
1101 | nit: getArgument(i) |
Comment Actions
Looks like this added a failure to the already red mlir windows buildbot: https://lab.llvm.org/buildbot/#/builders/13/builds/30167
If you can't address this today, can you please revert it, so we don't go into the weekend with a red bot?
You can use a range-based loop over block.getArguments().drop_back() to avoid index computations. Or maybe even llvm::copy with std::back_inserter