brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.3 KiB · 581b998 Raw
53 lines · plain
1// RUN: mlir-opt %s -test-vulkan-runner-pipeline \2// RUN:   | mlir-runner - --shared-libs=%mlir_vulkan_runtime,%mlir_runner_utils --entry-point-result=void | FileCheck %s3 4// CHECK-COUNT-64: [3, 3, 3, 3, 3, 3, 3, 3]5module attributes {6  gpu.container_module,7  spirv.target_env = #spirv.target_env<8    #spirv.vce<v1.0, [Shader], [SPV_KHR_storage_buffer_storage_class, SPV_KHR_8bit_storage]>, #spirv.resource_limits<>>9} {10  gpu.module @kernels {11    gpu.func @kernel_addi(%arg0 : memref<8xi8>, %arg1 : memref<8x8xi8>, %arg2 : memref<8x8x8xi32>)12      kernel attributes { spirv.entry_point_abi = #spirv.entry_point_abi<workgroup_size = [1, 1, 1]>} {13      %x = gpu.block_id x14      %y = gpu.block_id y15      %z = gpu.block_id z16      %0 = memref.load %arg0[%x] : memref<8xi8>17      %1 = memref.load %arg1[%y, %x] : memref<8x8xi8>18      %2 = arith.addi %0, %1 : i819      %3 = arith.extui %2 : i8 to i3220      memref.store %3, %arg2[%z, %y, %x] : memref<8x8x8xi32>21      gpu.return22    }23  }24 25  func.func @main() {26    %arg0 = memref.alloc() : memref<8xi8>27    %arg1 = memref.alloc() : memref<8x8xi8>28    %arg2 = memref.alloc() : memref<8x8x8xi32>29    %value0 = arith.constant 0 : i3230    %value1 = arith.constant 1 : i831    %value2 = arith.constant 2 : i832    %arg3 = memref.cast %arg0 : memref<8xi8> to memref<?xi8>33    %arg4 = memref.cast %arg1 : memref<8x8xi8> to memref<?x?xi8>34    %arg5 = memref.cast %arg2 : memref<8x8x8xi32> to memref<?x?x?xi32>35    call @fillResource1DInt8(%arg3, %value1) : (memref<?xi8>, i8) -> ()36    call @fillResource2DInt8(%arg4, %value2) : (memref<?x?xi8>, i8) -> ()37    call @fillResource3DInt(%arg5, %value0) : (memref<?x?x?xi32>, i32) -> ()38 39    %cst1 = arith.constant 1 : index40    %cst8 = arith.constant 8 : index41    gpu.launch_func @kernels::@kernel_addi42        blocks in (%cst8, %cst8, %cst8) threads in (%cst1, %cst1, %cst1)43        args(%arg0 : memref<8xi8>, %arg1 : memref<8x8xi8>, %arg2 : memref<8x8x8xi32>)44    %arg6 = memref.cast %arg5 : memref<?x?x?xi32> to memref<*xi32>45    call @printMemrefI32(%arg6) : (memref<*xi32>) -> ()46    return47  }48  func.func private @fillResource1DInt8(%0 : memref<?xi8>, %1 : i8)49  func.func private @fillResource2DInt8(%0 : memref<?x?xi8>, %1 : i8)50  func.func private @fillResource3DInt(%0 : memref<?x?x?xi32>, %1 : i32)51  func.func private @printMemrefI32(%ptr : memref<*xi32>)52}53