Skip to content

Commit 5ea5717

Browse files
committed
Fix one instance of ToMemrefOp -> ToBufferOp (per upstream renaming)
1 parent c14e9a9 commit 5ea5717

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/TPP/Runner/MLIRBench.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ LogicalResult MLIRBench::printResult(Operation *kernelCall) {
388388

389389
if (isa<TensorType>(result.getType())) {
390390
result =
391-
builder.create<bufferization::ToMemrefOp>(unkLoc, memrefType, result);
391+
builder.create<bufferization::ToBufferOp>(unkLoc, memrefType, result);
392392
}
393393

394394
auto outBuf = builder.create<memref::AllocOp>(unkLoc, memrefType);

0 commit comments

Comments
 (0)