[mlir][py] Enable loading only specified dialects during creation. (#121421)
[llvm-project.git] / mlir / test / mlir-vulkan-runner / subf.mlir
blob23496ef3abc00da3bfdeed489213bf8887650783
1 // RUN: mlir-opt %s -test-vulkan-runner-pipeline \
2 // RUN:   | mlir-vulkan-runner - --shared-libs=%vulkan-runtime-wrappers,%mlir_runner_utils --entry-point-result=void | FileCheck %s
4 // CHECK-COUNT-32: [2.2, 2.2, 2.2, 2.2]
5 module attributes {
6   gpu.container_module,
7   spirv.target_env = #spirv.target_env<
8     #spirv.vce<v1.0, [Shader], [SPV_KHR_storage_buffer_storage_class]>,
9     #spirv.resource_limits<>>
10 } {
11   gpu.module @kernels {
12     gpu.func @kernel_sub(%arg0 : memref<8x4x4xf32>, %arg1 : memref<4x4xf32>, %arg2 : memref<8x4x4xf32>)
13       kernel attributes { spirv.entry_point_abi = #spirv.entry_point_abi<workgroup_size = [1, 1, 1]>} {
14       %x = gpu.block_id x
15       %y = gpu.block_id y
16       %z = gpu.block_id z
17       %1 = memref.load %arg0[%x, %y, %z] : memref<8x4x4xf32>
18       %2 = memref.load %arg1[%y, %z] : memref<4x4xf32>
19       %3 = arith.subf %1, %2 : f32
20       memref.store %3, %arg2[%x, %y, %z] : memref<8x4x4xf32>
21       gpu.return
22     }
23   }
25   func.func @main() {
26     %arg0 = memref.alloc() : memref<8x4x4xf32>
27     %arg1 = memref.alloc() : memref<4x4xf32>
28     %arg2 = memref.alloc() : memref<8x4x4xf32>
29     %0 = arith.constant 0 : i32
30     %1 = arith.constant 1 : i32
31     %2 = arith.constant 2 : i32
32     %value0 = arith.constant 0.0 : f32
33     %value1 = arith.constant 3.3 : f32
34     %value2 = arith.constant 1.1 : f32
35     %arg3 = memref.cast %arg0 : memref<8x4x4xf32> to memref<?x?x?xf32>
36     %arg4 = memref.cast %arg1 : memref<4x4xf32> to memref<?x?xf32>
37     %arg5 = memref.cast %arg2 : memref<8x4x4xf32> to memref<?x?x?xf32>
38     call @fillResource3DFloat(%arg3, %value1) : (memref<?x?x?xf32>, f32) -> ()
39     call @fillResource2DFloat(%arg4, %value2) : (memref<?x?xf32>, f32) -> ()
40     call @fillResource3DFloat(%arg5, %value0) : (memref<?x?x?xf32>, f32) -> ()
42     %cst1 = arith.constant 1 : index
43     %cst4 = arith.constant 4 : index
44     %cst8 = arith.constant 8 : index
45     gpu.launch_func @kernels::@kernel_sub
46         blocks in (%cst8, %cst4, %cst4) threads in (%cst1, %cst1, %cst1)
47         args(%arg0 : memref<8x4x4xf32>, %arg1 : memref<4x4xf32>, %arg2 : memref<8x4x4xf32>)
48     %arg6 = memref.cast %arg5 : memref<?x?x?xf32> to memref<*xf32>
49     call @printMemrefF32(%arg6) : (memref<*xf32>) -> ()
50     return
51   }
52   func.func private @fillResource2DFloat(%0 : memref<?x?xf32>, %1 : f32)
53   func.func private @fillResource3DFloat(%0 : memref<?x?x?xf32>, %1 : f32)
54   func.func private @printMemrefF32(%ptr : memref<*xf32>)