[Mlir-commits] [mlir] [mlir][sparse] minor edit of map reinterpretation pass doc (PR #70513)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Oct 27 14:47:02 PDT 2023
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: Aart Bik (aartbik)
<details>
<summary>Changes</summary>
Fixed typo, 80-col
---
Full diff: https://github.com/llvm/llvm-project/pull/70513.diff
1 Files Affected:
- (modified) mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td (+7-6)
``````````diff
diff --git a/mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td b/mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td
index db9cc701d253c01..99dbd7ab3677e74 100644
--- a/mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td
+++ b/mlir/include/mlir/Dialect/SparseTensor/Transforms/Passes.td
@@ -14,12 +14,13 @@ include "mlir/Pass/PassBase.td"
def SparseReinterpretMap : Pass<"sparse-reinterpret-map", "ModuleOp"> {
let summary = "Reinterprets sparse tensor type mappings";
let description = [{
- A pass that reinterprets the mappings in all sparse tensor types in a way that
- enables subsequent sparification. This involves expressing all `linalg.generic`
- operations in terms of level coordinates (rather than the dimension coordinates
- of the input tensors) to align the iteration space with the potentially remapped
- level space as well as resolving cycles in the resulting iteration graphs with
- explicit sparse tensor conversions where needed.
+ A pass that reinterprets the mappings in all sparse tensor types in a
+ way that enables subsequent sparsification. This involves expressing all
+ `linalg.generic` operations in terms of level coordinates (rather than
+ the dimension coordinates of the input tensors) to align the iteration
+ space with the potentially remapped level space as well as resolving cycles
+ in the resulting iteration graphs with explicit sparse tensor conversions
+ where needed.
}];
let constructor = "mlir::createSparseReinterpretMapPass()";
let dependentDialects = [
``````````
</details>
https://github.com/llvm/llvm-project/pull/70513
More information about the Mlir-commits
mailing list