[libc][docgen] simplify posix links (#119595)
[llvm-project.git] / mlir / test / Conversion / GPUCommon / lower-vector.mlir
blob44deb45cd752b453b943c2224478e8d50191f271
1 // RUN: mlir-opt %s --gpu-to-llvm | FileCheck %s
3 module {
4   func.func @func(%arg: vector<11xf32>) {
5     %cst_41 = arith.constant dense<true> : vector<11xi1>
6     // CHECK: vector.mask
7     // CHECK-SAME: vector.yield %arg0
8     %127 = vector.mask %cst_41 { vector.yield %arg : vector<11xf32> } : vector<11xi1> -> vector<11xf32>
9     return
10   }