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>}
11 gpu.func @foo() kernel {