[Mlir-commits] [mlir] [mlir][LLVM] Delete `getFixedVectorType` and `getScalableVectorType` (PR #135051)

Christian Ulmann llvmlistbot at llvm.org
Thu Apr 10 01:17:28 PDT 2025


================
@@ -506,7 +507,7 @@ LogicalResult MmaOp::verify() {
       expectedA.emplace_back(1, f64Ty);
       expectedB.emplace_back(1, f64Ty);
       expectedC.emplace_back(2, f64Ty);
-      // expectedC.emplace_back(1, LLVM::getFixedVectorType(f64Ty, 2));
+      // expectedC.emplace_back(1, VectorType::get(2, f64Ty));
----------------
Dinistro wrote:

I wonder if we should just remove this commented out line? Given that it has no comment, it's probably safe to assume that this is indeed just a remnant. 

https://github.com/llvm/llvm-project/pull/135051


More information about the Mlir-commits mailing list