diff --git a/mlir/include/mlir/Transforms/Utils.h b/mlir/include/mlir/Transforms/Utils.h --- a/mlir/include/mlir/Transforms/Utils.h +++ b/mlir/include/mlir/Transforms/Utils.h @@ -142,6 +142,13 @@ void createAffineComputationSlice(Operation *opInst, SmallVectorImpl *sliceOps); +// Create an operation containing normalized memrefs in the operation results. +// When the results of `oldOp` have memrefs with affine map, the memrefs are +// normalized, and new operation containing them in the operation results is +// returned. If all of the results of `oldOp` have no memrefs or memrefs without +// affine map, `oldOp` is returned without modification. +Operation *createOpResultsNormalized(FuncOp funcOp, Operation *oldOp); + } // end namespace mlir #endif // MLIR_TRANSFORMS_UTILS_H diff --git a/mlir/lib/Transforms/NormalizeMemRefs.cpp b/mlir/lib/Transforms/NormalizeMemRefs.cpp --- a/mlir/lib/Transforms/NormalizeMemRefs.cpp +++ b/mlir/lib/Transforms/NormalizeMemRefs.cpp @@ -384,6 +384,57 @@ funcOp.front().eraseArgument(argIndex + 1); } + // Walk over normalizable operations to normalize memrefs of the operation + // results. When `op` has memrefs with affine map in the operation results, + // new operation containin normalized memrefs is created. Then, the memrefs + // are replaced. `CallOp` is skipped here because it is handled in + // `updateFunctionSignature()`. + funcOp.walk([&](Operation *op) { + if (op->hasTrait() && + op->getNumResults() > 0 && !isa(op) && !funcOp.isExternal()) { + // Create newOp containing normalized memref in the operation result. + Operation *newOp = createOpResultsNormalized(funcOp, op); + // When all of the operation results have no memrefs or memrefs without + // affine map, `newOp` is the same with `op` and following process is + // skipped. + if (op != newOp) { + bool replacingMemRefUsesFailed = false; + for (unsigned resIndex : llvm::seq(0, op->getNumResults())) { + // Replace all uses of the old memrefs. + Value oldMemRef = op->getResult(resIndex); + Value newMemRef = newOp->getResult(resIndex); + MemRefType oldMemRefType = oldMemRef.getType().dyn_cast(); + // Check whether the operation result is MemRef type. + if (!oldMemRefType) + continue; + MemRefType newMemRefType = newMemRef.getType().cast(); + if (oldMemRefType == newMemRefType) + continue; + // TODO: Assume single layout map. Multiple maps not supported. + AffineMap layoutMap = oldMemRefType.getAffineMaps().front(); + if (failed(replaceAllMemRefUsesWith(oldMemRef, + /*newMemRef=*/newMemRef, + /*extraIndices=*/{}, + /*indexRemap=*/layoutMap, + /*extraOperands=*/{}, + /*symbolOperands=*/{}, + /*domInstFilter=*/nullptr, + /*postDomInstFilter=*/nullptr, + /*allowDereferencingOps=*/true, + /*replaceInDeallocOp=*/true))) { + newOp->erase(); + replacingMemRefUsesFailed = true; + continue; + } + } + if (!replacingMemRefUsesFailed) { + // Delete the old operations when the replacement succeeded. + op->erase(); + } + } + } + }); + // In a normal function, memrefs in the return type signature gets normalized // as a result of normalization of functions arguments, AllocOps or CallOps' // result types. Since an external function doesn't have a body, memrefs in diff --git a/mlir/lib/Transforms/Utils/Utils.cpp b/mlir/lib/Transforms/Utils/Utils.cpp --- a/mlir/lib/Transforms/Utils/Utils.cpp +++ b/mlir/lib/Transforms/Utils/Utils.cpp @@ -495,3 +495,43 @@ return newMemRefType; } + +Operation *mlir::createOpResultsNormalized(FuncOp funcOp, Operation *oldOp) { + // Prepare OperationState to create newOp containing normalized memref in + // the operation results. + OperationState result(oldOp->getLoc(), oldOp->getName()); + result.addOperands(oldOp->getOperands()); + result.addAttributes(oldOp->getAttrs()); + // Add normalized MemRefType to the OperationState. + SmallVector resultTypes; + OpBuilder b(funcOp); + bool resultTypeNormalized = false; + for (unsigned resIndex : llvm::seq(0, oldOp->getNumResults())) { + auto resultType = oldOp->getResult(resIndex).getType(); + MemRefType memrefType = resultType.dyn_cast(); + // Check whether the operation result is MemRef type. + if (!memrefType) { + resultTypes.push_back(resultType); + continue; + } + // Fetch a new memref type after normalizing the old memref. + MemRefType newMemRefType = normalizeMemRefType(memrefType, b, + /*numSymbolicOperands=*/0); + if (newMemRefType == memrefType) { + // Either memrefType already had an identity map or the map couldn't + // be transformed to an identity map. + resultTypes.push_back(memrefType); + continue; + } + resultTypes.push_back(newMemRefType); + resultTypeNormalized = true; + } + result.addTypes(resultTypes); + // When all of the results of `oldOp` have no memrefs or memrefs without + // affine map, `oldOp` is returned without modification. + if (resultTypeNormalized) { + OpBuilder bb(oldOp); + return bb.createOperation(result); + } else + return oldOp; +} diff --git a/mlir/test/Transforms/normalize-memrefs-ops.mlir b/mlir/test/Transforms/normalize-memrefs-ops.mlir --- a/mlir/test/Transforms/normalize-memrefs-ops.mlir +++ b/mlir/test/Transforms/normalize-memrefs-ops.mlir @@ -90,6 +90,25 @@ return } +// Test with op_norm_ret, with maps in the results of normalizable operation. + +// CHECK-LABEL: test_norm_ret +// CHECK-SAME: , %[[ARG1:[a-z0-9]*]]: memref<1x16x1x1x32x32xf32>) -> memref<1x16x1x1x32x32xf32> { +func @test_norm_ret(%arg0: memref<1x32768xf32>, %arg1: memref<1x16x14x14xf32, #map_tile>) -> memref<1x16x14x14xf32, #map_tile> { + %0 = alloc() : memref<1x16x14x14xf32, #map_tile> + // CHECK-NEXT: %[[v0:[a-z0-9]*]] = alloc() : memref<1x16x1x1x32x32xf32> + %1 = "test.op_norm_ret"(%arg0, %arg1) : (memref<1x32768xf32>, memref<1x16x14x14xf32, #map_tile>) -> (memref<1x16x14x14xf32, #map_tile>) + // CHECK-NEXT: %[[v1:[a-z0-9]*]] = "test.op_norm_ret" + // CHECK-SAME: , memref<1x16x1x1x32x32xf32>) -> memref<1x16x1x1x32x32xf32> + "test.op_norm"(%1, %0) : (memref<1x16x14x14xf32, #map_tile>, memref<1x16x14x14xf32, #map_tile>) -> () + // CHECK-NEXT: "test.op_norm" + // CHECK-SAME: : (memref<1x16x1x1x32x32xf32>, memref<1x16x1x1x32x32xf32>) -> () + dealloc %0 : memref<1x16x14x14xf32, #map_tile> + // CHECK-NEXT: dealloc %[[v0]] : memref<1x16x1x1x32x32xf32> + return %1 : memref<1x16x14x14xf32, #map_tile> + // CHECK-NEXT: return %[[v1]] : memref<1x16x1x1x32x32xf32> +} + // Test with an arbitrary op that references the function symbol. "test.op_funcref"() {func = @test_norm_mix} : () -> () diff --git a/mlir/test/lib/Dialect/Test/TestOps.td b/mlir/test/lib/Dialect/Test/TestOps.td --- a/mlir/test/lib/Dialect/Test/TestOps.td +++ b/mlir/test/lib/Dialect/Test/TestOps.td @@ -627,6 +627,11 @@ def OpNonNorm : TEST_Op<"op_nonnorm"> { let arguments = (ins AnyMemRef:$X, AnyMemRef:$Y); } +// Test for memrefs normalization of an op with normalizable memrefs. +def OpNormRet : TEST_Op<"op_norm_ret", [MemRefsNormalizable]> { + let arguments = (ins AnyMemRef:$X, AnyMemRef:$Y); + let results = (outs AnyMemRef:$Z); +} // Test for memrefs normalization of an op with a reference to a function // symbol.