The actual transformation doesn't support multi-output GenericOps, but
if we encounter one without sparse annotations we can just leave it
alone.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Dialect/SparseTensor/Transforms/Sparsification.cpp | ||
---|---|---|
1857 | how about, if (op.getNumOutputs() != 1) return failure(); so we don't enter the annotation analysis at all? |
how about,
if (op.getNumOutputs() != 1)
so we don't enter the annotation analysis at all?