Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/ExecutionEngine/SparseTensorRuntime.cpp | ||
---|---|---|
634–635 | Be sure to add vref to the non-null assertion at the beginning of the function | |
679–680 | be sure to add vref to the non-null assertion at the beginning of the function. | |
mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_file_io.mlir | ||
67–68 | Since the %v is just going to be stored here anyways, I wonder if there isn't some way to pass %vs[%i] directly to @getSparseTensorReaderNextF32 to avoid needing to allocate %value and then load %v. |
Add assert for the value memref. Add a TODO to investigate the posibility of using memref.subview for the test.
mlir/test/Integration/Dialect/SparseTensor/CPU/sparse_file_io.mlir | ||
---|---|---|
67–68 | Add a TODO to explore this. |
Be sure to add vref to the non-null assertion at the beginning of the function