[Mlir-commits] [mlir] [mlir][ArmSME] Use liveness information in the tile allocator (PR #90448)
Cullen Rhodes
llvmlistbot at llvm.org
Wed May 1 02:21:23 PDT 2024
================
@@ -1,5 +1,4 @@
-// RUN: mlir-opt %s -allocate-arm-sme-tiles -convert-arm-sme-to-llvm -cse -canonicalize -split-input-file -verify-diagnostics | FileCheck %s
-
+// RUN: mlir-opt %s --pass-pipeline="builtin.module(func.func(convert-arm-sme-to-llvm,cse,canonicalize))" -split-input-file -verify-diagnostics | FileCheck %s
----------------
c-rhodes wrote:
nit: another observation unrelated to your changes but verify-diagnostics can also be removed here as you've done elsewhere
```suggestion
// RUN: mlir-opt %s --pass-pipeline="builtin.module(func.func(convert-arm-sme-to-llvm,cse,canonicalize))" -split-input-file | FileCheck %s
```
https://github.com/llvm/llvm-project/pull/90448
More information about the Mlir-commits
mailing list