[Mlir-commits] [mlir] [nlir][vector] Disable `vector.matrix_multiply` for scalable vectors (PR #102573)
Cullen Rhodes
llvmlistbot at llvm.org
Fri Aug 9 00:12:57 PDT 2024
================
@@ -494,6 +494,14 @@ class VectorOfRankAndType<list<int> allowedRanks,
VectorOf<allowedTypes>.summary # VectorOfRank<allowedRanks>.summary,
"::mlir::VectorType">;
+// Fixed-width vector where the rank is from the given `allowedRanks` list and
+// the type is from the given `allowedTypes` list
+class FixedVectorOfRankAndType<list<int> allowedRanks,
+ list<Type> allowedTypes> : AllOfType<
----------------
c-rhodes wrote:
nit: indent to align
```suggestion
class FixedVectorOfRankAndType<list<int> allowedRanks,
list<Type> allowedTypes> : AllOfType<
```
https://github.com/llvm/llvm-project/pull/102573
More information about the Mlir-commits
mailing list