While lowering to loops, no indices should be used in the load/store
operation if the buffer is zero-rank.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Let's push this forward to unblock progress, in the future the understanding is that linalg ops will not see 0-D memrefs anymore.
mlir/lib/Dialect/Linalg/Transforms/LinalgToLoops.cpp | ||
---|---|---|
257 | Can we invert the conditional and make it if (X > 0) {} else {} ? |
Can we invert the conditional and make it if (X > 0) {} else {} ?
I find it more readable than the not test.