Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/include/mlir/Dialect/SparseTensor/IR/SparseTensorOps.td | ||
---|---|---|
65 | use brackets for readability .... for the given (data, indices) pair. | |
68 | Describe data/indices in more detail data : array wit the value of each stored element Perhaps even give example like matrix with elements a_00, a_41 is stored as | |
69 | shall not exceed (no s) | |
75 | do we allow ?x?xf64 as return format probably not, since we cannot guess size from just data, since matrix may not be filled so we probably need to check that and document that EDIT: I see below you enforce that, so just document that | |
mlir/lib/Dialect/SparseTensor/IR/SparseTensorDialect.cpp | ||
453 | period at end | |
640 | ranke -> rank | |
671 | As first glance, it did not feel right to have rewriting in IR, shouldn't this be in transforms somehow? But looking around, all other dialects define canonicaliazation in this file, so good to go ;-) |
mlir/include/mlir/Dialect/SparseTensor/IR/SparseTensorOps.td | ||
---|---|---|
89 | COO? |
use brackets for readability
.... for the given (data, indices) pair.