[Mlir-commits] [mlir] [mlir][vector] Update the internal representation of in_bounds (PR #100336)
Benjamin Maxwell
llvmlistbot at llvm.org
Wed Aug 14 08:28:18 PDT 2024
================
@@ -1152,7 +1152,7 @@ struct ScalableTransposeTransferWriteConversion
loopIterArgs.empty() ? writeOp.getSource() : loopIterArgs.front();
auto newWriteOp = b.create<vector::TransferWriteOp>(
loc, sliceVec, dest, xferIndices,
- ArrayRef<bool>(writeOp.getInBoundsValues()).drop_front());
+ ArrayRef<bool>(writeOp.getInBounds()).drop_front());
----------------
MacDue wrote:
nit:
```suggestion
writeOp.getInBounds().drop_front());
```
https://github.com/llvm/llvm-project/pull/100336
More information about the Mlir-commits
mailing list