[Mlir-commits] [mlir] [mlir] Refactor ConvertVectorToLLVMPass options (PR #128219)

Artemiy Bulavin llvmlistbot at llvm.org
Wed Feb 26 13:40:30 PST 2025


================
@@ -1,9 +1,12 @@
-// RUN: mlir-opt --convert-vector-to-llvm --dump-pass-pipeline %s 2>&1 | FileCheck %s
-
 // Simple regression test that ensures ConvertVectorToLLVMPass options remain
 // serialisable. We don't need to actually parse any IR to print the pass
 // options. We just need to provide --dump-pass-pipeline
 
+// RUN: mlir-opt --convert-vector-to-llvm --dump-pass-pipeline %s 2>&1 | FileCheck %s --check-prefix=DEFAULT
+
+// RUN: mlir-opt --convert-vector-to-llvm='vector-contract-lowering=matmul vector-transpose-lowering=flat' \
+// RUN:          --dump-pass-pipeline 2>&1 | FileCheck %s --check-prefix=CHANGED
----------------
abulavin wrote:

That's the word I was looking for 😅 

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


More information about the Mlir-commits mailing list