Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 188311 Build 284457: arc lint + arc unit
Event Timeline
mlir/include/mlir/Dialect/SparseTensor/IR/SparseTensorOps.td | ||
---|---|---|
191 | let's make a new "section" for this. e.g. iteration, or something like that |
mlir/include/mlir/Dialect/SparseTensor/IR/SparseTensorOps.td | ||
---|---|---|
733 | in a sparse tensor -> in the given sparse tensor | |
739 | coordination -> coordinates | |
741 | I think you can remove 741/743 since that really only applies to the memory related ops that do something on the side. | |
752 | typo: tenosr -> tensor | |
mlir/lib/Dialect/SparseTensor/IR/SparseTensorDialect.cpp | ||
459 | static_cast | |
462 | unsigned i |
mlir/lib/Dialect/SparseTensor/IR/SparseTensorDialect.cpp | ||
---|---|---|
462 | surprisingly, getRank() return int64_t |
mlir/lib/Dialect/SparseTensor/IR/SparseTensorDialect.cpp | ||
---|---|---|
462 | Oh, but then use int64_t please, also use the idiom for (int64_t i = 0, e = t.getRank(); i < e; i++) |
let's make a new "section" for this. e.g. iteration, or something like that