The old replacements will be removed soon: - `%linalg_test_lib_dir` - `%cuda_wrapper_library_dir` - `%spirv_wrapper_library_dir` - `%vulkan_wrapper_library_dir` - `%mlir_runner_utils_dir` - `%mlir_integration_test_dir` Reviewed By: herhut Differential Revision: https://reviews.llvm.org/D133270
24 lines
981 B
MLIR
24 lines
981 B
MLIR
// RUN: mlir-opt %s -convert-elementwise-to-linalg \
|
|
// RUN: -arith-bufferize -linalg-bufferize -tensor-bufferize \
|
|
// RUN: -func-bufferize -buffer-deallocation -convert-linalg-to-loops \
|
|
// RUN: -convert-linalg-to-llvm --convert-memref-to-llvm -convert-func-to-llvm \
|
|
// RUN: -reconcile-unrealized-casts | \
|
|
// RUN: mlir-cpu-runner -e main -entry-point-result=void \
|
|
// RUN: -shared-libs=%mlir_lib_dir/libmlir_runner_utils%shlibext \
|
|
// RUN: | FileCheck %s
|
|
|
|
func.func @main() {
|
|
%a = arith.constant dense<[1.0, 2.0, 3.0]> : tensor<3xf32>
|
|
%b = arith.constant dense<[10.0, 20.0, 30.0]> : tensor<3xf32>
|
|
|
|
%addf = arith.addf %a, %b : tensor<3xf32>
|
|
%addf_unranked = tensor.cast %addf : tensor<3xf32> to tensor<*xf32>
|
|
call @printMemrefF32(%addf_unranked) : (tensor<*xf32>) -> ()
|
|
// CHECK: Unranked Memref base@ = {{.*}} rank = 1 offset = 0 sizes = [3] strides = [1] data =
|
|
// CHECK-NEXT: [11, 22, 33]
|
|
|
|
return
|
|
}
|
|
|
|
func.func private @printMemrefF32(%ptr : tensor<*xf32>)
|