This allows us to better canonicalize/clean-up code created by the Wide
Integer Emulation pass.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Remove accidental includes
mlir/lib/Dialect/Vector/IR/VectorOps.cpp | ||
---|---|---|
2788 | @mravishankar Do you know if there is a cleaner way to enumerate elements within the slice? |
Comment Actions
Enumerate slice element positions (only) to calculate linearized slice indices.
This way we do not have to filter original vector elements based on being within
the slice or not.
@mravishankar Do you know if there is a cleaner way to enumerate elements within the slice?