[RISCV] Fix the code alignment for GroupFloatVectors. NFC
[llvm-project.git] / mlir / test / Conversion / GPUToSPIRV / entry-point.mlir
blob26556a41c9be1f568723af972ecdf8a23f5a1a45
1 // RUN: mlir-opt -test-spirv-entry-point-abi %s | FileCheck %s -check-prefix=DEFAULT
2 // RUN: mlir-opt -test-spirv-entry-point-abi="workgroup-size=32" %s | FileCheck %s -check-prefix=WG32
4 //      DEFAULT: gpu.func @foo()
5 // DEFAULT-SAME: spv.entry_point_abi = {local_size = dense<1> : vector<3xi32>}
7 //      WG32: gpu.func @foo()
8 // WG32-SAME:  spv.entry_point_abi = {local_size = dense<[32, 1, 1]> : vector<3xi32>}
10 gpu.module @kernels {
11   gpu.func @foo() kernel {
12     gpu.return
13   }