[Mlir-commits] [mlir] [mlir] Refactor ConvertVectorToLLVMPass options (PR #128219)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Wed Feb 26 13:26:01 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
----------------
banach-space wrote:
[nit]
```suggestion
// 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=NON-DEFAULT
```
https://github.com/llvm/llvm-project/pull/128219
More information about the Mlir-commits
mailing list