Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/test/Conversion/VectorToSCF/vector-to-loops.mlir | ||
---|---|---|
102 | What is the cause of this? This revision looks like it's working around a bug in the implementation that relies on something that is non-deterministic w.r.t toolchain. |
mlir/test/Conversion/VectorToSCF/vector-to-loops.mlir | ||
---|---|---|
102 | There is a: Value vector = vector_insert_element(remote(indicesRef), local(ivsRef.drop_back()), pos); As discussed in: https://llvm.discourse.group/t/evolving-builder-apis-based-on-lessons-learned-from-edsc/879. |
mlir/test/Conversion/VectorToSCF/vector-to-loops.mlir | ||
---|---|---|
102 | Instead of masking the issue, can you replace the uses of EDSCs with builders in this code? |
First this is not an issue but a feature of C++.
Builders would have the same behavior as explained in the discourse post.
What is the cause of this? This revision looks like it's working around a bug in the implementation that relies on something that is non-deterministic w.r.t toolchain.