[mlir][linalg][bufferize] Fix bufferize bug where non-tensor ops are not skipped

`BufferizableOpInterface::bufferize` will only be called on ops that
have tensor operands and/or results.

Differential Revision: https://reviews.llvm.org/D113962
This commit is contained in:
Matthias Springer 2021-11-18 16:18:54 +09:00
parent 26e90423f4
commit ebf8d74e92
2 changed files with 12 additions and 24 deletions

View File

@ -1114,16 +1114,19 @@ LogicalResult mlir::linalg::comprehensive_bufferize::bufferizeOp(
if (isa<memref::BufferCastOp, memref::TensorLoadOp>(op))
return success();
// Check if op has tensor results or operands.
auto isaTensor = [](Type t) { return t.isa<TensorType>(); };
bool hasTensorResult = any_of(op->getResultTypes(), isaTensor);
bool hasTensorOperand = any_of(op->getOperandTypes(), isaTensor);
if (!hasTensorResult && !hasTensorOperand)
return success();
// Bufferize using `BufferizableOpInterface`.
if (auto bufferizableOp = dyn_cast<BufferizableOpInterface>(op))
return bufferizableOp.bufferize(b, state);
// Other op with tensors. No bufferization method specified.
auto isaTensor = [](Type t) { return t.isa<TensorType>(); };
if (any_of(op->getOperandTypes(), isaTensor) ||
any_of(op->getResultTypes(), isaTensor))
return op->emitError() << "unsupported op with tensors";
return success();
}
static LogicalResult bufferizeFuncOpInternals(
@ -2482,10 +2485,9 @@ struct TransferReadOpInterface
OpBuilder::InsertionGuard g(b);
b.setInsertionPoint(op);
if (transferReadOp.getShapedType().isa<MemRefType>())
return failure();
// TransferReadOp always reads from the bufferized op.source().
assert(transferReadOp.getShapedType().isa<TensorType>() &&
"only tensor types expected");
Value v = state.lookupBuffer(transferReadOp.source());
transferReadOp.sourceMutable().assign(v);
return success();
@ -2530,12 +2532,11 @@ struct TransferWriteOpInterface
OpBuilder::InsertionGuard g(b);
b.setInsertionPoint(op);
if (writeOp.getShapedType().isa<MemRefType>())
return failure();
// Create a new transfer_write on buffer that doesn't have a return value.
// Leave the previous transfer_write to dead code as it still has uses at
// this point.
assert(writeOp.getShapedType().isa<TensorType>() &&
"only tensor types expected");
Value resultBuffer = getResultBuffer(b, op->getResult(0), state);
if (!resultBuffer)
return failure();

View File

@ -167,16 +167,3 @@ func @main() -> tensor<4xi32> {
}
return %r: tensor<4xi32>
}
// -----
func @main() -> i32 {
%c0 = arith.constant 0: index
// expected-error @+1 {{expected result-less scf.execute_region containing op}}
%r = scf.execute_region -> i32 {
%A = arith.constant dense<[1, 2, 3, 4]> : tensor<4xi32>
%e = tensor.extract %A[%c0]: tensor<4xi32>
scf.yield %e: i32
}
return %r: i32
}