Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/include/mlir/Dialect/Linalg/IR/LinalgOps.td | ||
---|---|---|
434 | Can you document the format? Also this seems like something that can be useful in general outside of linalg (for example the sparse attribute also has the same thing!). Could we get a first class attribute to model this instead of arrays of array of attribute? Ideally it'd be an attribute with a safer API (both accessors and constructors). |
Can you document the format?
Also this seems like something that can be useful in general outside of linalg (for example the sparse attribute also has the same thing!). Could we get a first class attribute to model this instead of arrays of array of attribute? Ideally it'd be an attribute with a safer API (both accessors and constructors).
I can also be stored more densely in memory, basically the attribute could be defined in TableGen with just two ArrayRef<int64_t>. That said it may be useful for verification purpose to store the rank as well.