All members are now private and access is through delegate
or convenience methods only (except the loop emitter, which
is still under refactoring).
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| mlir/lib/Dialect/SparseTensor/Transforms/Sparsification.cpp | ||
|---|---|---|
| 614–619 | Maybe we can group all this into Env as well? we can have a fancy RAII like object {
   auto guard = env.getReductionGuard(reduc)
   callback();
} | |
| mlir/lib/Dialect/SparseTensor/Transforms/Sparsification.cpp | ||
|---|---|---|
| 614–619 | Nice suggestion. I will move a few more methods to env after this larger diff revision.... | |
Maybe we can group all this into Env as well?
we can have a fancy RAII like object
{ auto guard = env.getReductionGuard(reduc) callback(); }