[mlir][tensor] fix typo in pad tiling comment
[llvm-project.git] / mlir / test / Conversion / GPUCommon / memref-arg-noalias-attrs.mlir
blob33cdc3348e5137ab76c5294e51ad719d011787bf
1 // RUN: mlir-opt %s -split-input-file -convert-gpu-to-rocdl='use-bare-ptr-memref-call-conv=1' | FileCheck %s --check-prefixes=CHECK,ROCDL
2 // RUN: mlir-opt %s -split-input-file -convert-gpu-to-nvvm='use-bare-ptr-memref-call-conv=1' | FileCheck %s --check-prefixes=CHECK,NVVM
4 gpu.module @kernel {
5   gpu.func @func_with_noalias_attr(%arg0 : memref<f32> {llvm.noalias} ) {
6     gpu.return
7   }
10 // CHECK-LABEL:  llvm.func @func_with_noalias_attr
11 // ROCDL-SAME:  !llvm.ptr {llvm.noalias}
12 //  NVVM-SAME:  !llvm.ptr {llvm.noalias}
15 // -----
17 gpu.module @kernel {
18   gpu.func @func_without_any_attr(%arg0 : memref<f32> ) {
19     gpu.return
20   }
23 // CHECK-LABEL:  llvm.func @func_without_any_attr
24 // ROCDL-SAME:  !llvm.ptr
25 //  NVVM-SAME:  !llvm.ptr