[AMDGPU] Make v8i16/v8f16 legal
[llvm-project.git] / mlir / test / Integration / Dialect / Linalg / CPU / test-expand-tensor.mlir
blob49c56d7ae268dff65fb2fa8b531301790ec5bda2
1 // RUN: mlir-opt %s -linalg-bufferize -std-bufferize \
2 // RUN: -tensor-constant-bufferize -tensor-bufferize -func-bufferize \
3 // RUN: -finalizing-bufferize -buffer-deallocation -convert-linalg-to-llvm \
4 // RUN: -convert-memref-to-llvm -convert-std-to-llvm -reconcile-unrealized-casts | \
5 // RUN: mlir-cpu-runner -e main -entry-point-result=void \
6 // RUN:   -shared-libs=%mlir_integration_test_dir/libmlir_runner_utils%shlibext \
7 // RUN: | FileCheck %s
10 func @main() {
11   %const = arith.constant dense<[[[-3.9058,0.9072],[-2.9470,-2.2055],[18.3946,8.2997],[3.4700,5.9006],[-17.2267,4.9777],[1.0450,-0.8201]],[[17.6996,-11.1763],[26.7775,-3.8823],[-4.2492,-5.8966],[2.1259,13.1794],[-10.7136,0.8428],[16.4233,9.4589]]]> : tensor<2x6x2xf32>
12   %dynamic = tensor.cast %const: tensor<2x6x2xf32> to tensor<2x?x?xf32>
13   %expanded = call @expand_dynamic_shape(%dynamic) : (tensor<2x?x?xf32>) -> (tensor<2x2x?x1x?xf32>)
14   %unranked = tensor.cast %expanded: tensor<2x2x?x1x?xf32> to tensor<*xf32>
15   call @print_memref_f32(%unranked) : (tensor<*xf32>) -> ()
17   //      CHECK: Unranked Memref base@ = {{0x[-9a-f]*}}
18   // CHECK-SAME: rank = 5 offset = 0 sizes = [2, 2, 3, 1, 2] strides = [12, 6, 2, 2, 1] data =
19   // CHECK-NEXT{LITERAL}: [[[[[-3.9058,      0.9072]],
20   // CHECK-NEXT{LITERAL}:   [[-2.947,      -2.2055]],
21   // CHECK-NEXT{LITERAL}:   [[18.3946,      8.2997]]],
22   // CHECK-NEXT{LITERAL}:  [[[3.47,      5.9006]],
23   // CHECK-NEXT{LITERAL}:   [[-17.2267,      4.9777]],
24   // CHECK-NEXT{LITERAL}:   [[1.045,      -0.8201]]]],
25   // CHECK-NEXT{LITERAL}: [[[[17.6996,      -11.1763]],
26   // CHECK-NEXT{LITERAL}:   [[26.7775,      -3.8823]],
27   // CHECK-NEXT{LITERAL}:   [[-4.2492,      -5.8966]]],
28   // CHECK-NEXT{LITERAL}:  [[[2.1259,      13.1794]],
29   // CHECK-NEXT{LITERAL}:   [[-10.7136,      0.8428]],
30   // CHECK-NEXT{LITERAL}:   [[16.4233,      9.4589]]]]]
31   return
34 func private @print_memref_f32(%ptr : tensor<*xf32>)
36 func @expand_dynamic_shape(%arg0 : tensor<2x?x?xf32>) -> tensor<2x2x?x1x?xf32> {
37   %0 = tensor.expand_shape %arg0 [[0], [1, 2, 3], [4]]: tensor<2x?x?xf32> into tensor<2x2x?x1x?xf32>
38   return %0 : tensor<2x2x?x1x?xf32>