[Mlir-commits] [mlir] [mlir][Vector] Move `vector.mask` canonicalization to folder (PR #140324)
Diego Caballero
llvmlistbot at llvm.org
Fri May 16 18:00:23 PDT 2025
================
@@ -1,10 +1,12 @@
// RUN: mlir-opt %s --gpu-to-llvm | FileCheck %s
module {
+ // CHECK-LABEL: func @func
+ // CHECK-SAME: %[[IN:.*]]: vector<11xf32>
func.func @func(%arg: vector<11xf32>) -> vector<11xf32> {
%cst_41 = arith.constant dense<true> : vector<11xi1>
- // CHECK: vector.mask
- // CHECK-SAME: vector.yield %arg0
+ // CHECK-NOT: vector.mask
+ // CHECK: return %[[IN]] : vector<11xf32>
----------------
dcaballe wrote:
Not sure what the intent of this test is but I'm updating it accordingly
https://github.com/llvm/llvm-project/pull/140324
More information about the Mlir-commits
mailing list