@@ -94,7 +94,6 @@ def LinalgMorphOpsPass : Pass<"linalg-morph-ops"> {
94
94
95
95
let description = [{
96
96
Convert a linalg op from one representation to another equivalent.
97
-
98
97
For example, a linalg named op `linalg.add` can also be written as an
99
98
category op `linalg.elementwise`, and can also be re-written as
100
99
a `linalg.generic`, giving the morphism:
@@ -116,22 +115,16 @@ def LinalgMorphOpsPass : Pass<"linalg-morph-ops"> {
116
115
// named-op <--> category <--> generic
117
116
Option<"namedToCategory", "named-to-category", "bool", /*default=*/"false",
118
117
"convert named ops to category op e.g. `linalg.elementwise`">,
119
-
120
118
Option<"categoryToGeneric", "category-to-generic", "bool", /*default=*/"false",
121
119
"convert category ops e.g. `linalg.elementwise` to `linalg.generic`">,
122
-
123
120
Option<"namedToGeneric", "named-to-generic", "bool", /*default=*/"false",
124
121
"convert named ops e.g. `linalg.add` to `linalg.generic`">,
125
-
126
122
Option<"genericToCategory", "generic-to-category", "bool", /*default=*/"false",
127
123
"convert generic ops to category op e.g. `linalg.contraction`">,
128
-
129
124
Option<"categoryToNamed", "category-to-named", "bool", /*default=*/"false",
130
125
"convert category ops to equivalent named ops">,
131
-
132
126
Option<"genericToNamed", "generic-to-named", "bool", /*default=*/"false",
133
- "convert linalg.generic to equivalent named ops">
134
- ];
127
+ "convert linalg.generic to equivalent named ops"> ];
135
128
}
136
129
137
130
def LinalgGeneralizeNamedOpsPass : Pass<"linalg-generalize-named-ops"> {
0 commit comments