[mlir][py] Enable loading only specified dialects during creation. (#121421)
[llvm-project.git] / mlir / test / mlir-vulkan-runner / mulf.mlir
blob22fa034a9b455feeec6b50ebd95697db864809d7
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-4: [6, 6, 6, 6]
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]>, #spirv.resource_limits<>>
9 } {
10   gpu.module @kernels {
11     gpu.func @kernel_mul(%arg0 : memref<4x4xf32>, %arg1 : memref<4x4xf32>, %arg2 : memref<4x4xf32>)
12       kernel attributes { spirv.entry_point_abi = #spirv.entry_point_abi<workgroup_size = [1, 1, 1]>} {
13       %x = gpu.block_id x
14       %y = gpu.block_id y
15       %1 = memref.load %arg0[%x, %y] : memref<4x4xf32>
16       %2 = memref.load %arg1[%x, %y] : memref<4x4xf32>
17       %3 = arith.mulf %1, %2 : f32
18       memref.store %3, %arg2[%x, %y] : memref<4x4xf32>
19       gpu.return
20     }
21   }
23   func.func @main() {
24     %arg0 = memref.alloc() : memref<4x4xf32>
25     %arg1 = memref.alloc() : memref<4x4xf32>
26     %arg2 = memref.alloc() : memref<4x4xf32>
27     %0 = arith.constant 0 : i32
28     %1 = arith.constant 1 : i32
29     %2 = arith.constant 2 : i32
30     %value0 = arith.constant 0.0 : f32
31     %value1 = arith.constant 2.0 : f32
32     %value2 = arith.constant 3.0 : f32
33     %arg3 = memref.cast %arg0 : memref<4x4xf32> to memref<?x?xf32>
34     %arg4 = memref.cast %arg1 : memref<4x4xf32> to memref<?x?xf32>
35     %arg5 = memref.cast %arg2 : memref<4x4xf32> to memref<?x?xf32>
36     call @fillResource2DFloat(%arg3, %value1) : (memref<?x?xf32>, f32) -> ()
37     call @fillResource2DFloat(%arg4, %value2) : (memref<?x?xf32>, f32) -> ()
38     call @fillResource2DFloat(%arg5, %value0) : (memref<?x?xf32>, f32) -> ()
40     %cst1 = arith.constant 1 : index
41     %cst4 = arith.constant 4 : index
42     gpu.launch_func @kernels::@kernel_mul
43         blocks in (%cst4, %cst4, %cst1) threads in(%cst1, %cst1, %cst1)
44         args(%arg0 : memref<4x4xf32>, %arg1 : memref<4x4xf32>, %arg2 : memref<4x4xf32>)
45     %arg6 = memref.cast %arg5 : memref<?x?xf32> to memref<*xf32>
46     call @printMemrefF32(%arg6) : (memref<*xf32>) -> ()
47     return
48   }
49   func.func private @fillResource2DFloat(%0 : memref<?x?xf32>, %1 : f32)
50   func.func private @printMemrefF32(%ptr : memref<*xf32>)