These passes have been depreciated for a long time and replaced by one-shot bufferization. These passes are also unsafe because they do not check for read-after-write conflicts. Relands https://github.com/llvm/llvm-project/pull/93488 which failed on buildbot. Fixes the failure by updating integration tests to use one-shot-bufferize instead.
25 lines
1.1 KiB
MLIR
25 lines
1.1 KiB
MLIR
// RUN: mlir-opt -split-input-file --one-shot-bufferize="dialect-filter=shape,bufferization copy-before-write unknown-type-conversion=identity-layout-map allow-unknown-ops" <%s | FileCheck %s
|
|
|
|
// -----
|
|
|
|
// CHECK-LABEL: func @shape_assuming() {
|
|
// CHECK: %[[WTRUE:.*]] = shape.const_witness true
|
|
// CHECK: %[[MEMREF:.*]] = shape.assuming %[[WTRUE]] -> (memref<2xf16>) {
|
|
// CHECK: %[[TENSOR_VAL:.*]] = "test.source"() : () -> tensor<2xf16>
|
|
// CHECK: %[[YIELDED_MEMREF:.*]] = bufferization.to_memref %[[TENSOR_VAL]] : memref<2xf16>
|
|
// CHECK: shape.assuming_yield %[[YIELDED_MEMREF]] : memref<2xf16>
|
|
// CHECK: }
|
|
// CHECK: %[[TENSOR:.*]] = bufferization.to_tensor %[[MEMREF:.*]] : memref<2xf16>
|
|
// CHECK: "test.sink"(%[[TENSOR]]) : (tensor<2xf16>) -> ()
|
|
// CHECK: return
|
|
// CHECK: }
|
|
func.func @shape_assuming() {
|
|
%0 = shape.const_witness true
|
|
%1 = shape.assuming %0 -> (tensor<2xf16>) {
|
|
%2 = "test.source"() : () -> (tensor<2xf16>)
|
|
shape.assuming_yield %2 : tensor<2xf16>
|
|
}
|
|
"test.sink"(%1) : (tensor<2xf16>) -> ()
|
|
return
|
|
}
|