mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-19 00:44:22 -05:00
The current scheme used by reinstantiating conversion patterns in `lib/Conversion/Utils/Dialects` for operations with blocks is to create a new operation with empty blocks, to move the operations from the old blocks and then to replace any references to block arguments. However, such in-place updates of the types of block arguments leave conversion patterns for operations nested in the blocks without the ability to determine the original types of values from before the update. This change uses proper signature conversion for block arguments, such that the original types of block arguments with converted types is preserved, while the new types are made available through the dialect conversion infrastructure via the respective adaptors.
72 lines
2.2 KiB
C++
72 lines
2.2 KiB
C++
// Part of the Concrete Compiler Project, under the BSD3 License with Zama
|
|
// Exceptions. See
|
|
// https://github.com/zama-ai/concrete/blob/main/LICENSE.txt
|
|
// for license information.
|
|
|
|
#include "concretelang/Conversion/Utils/Dialects/SCF.h"
|
|
#include "concretelang/Conversion/Utils/Utils.h"
|
|
|
|
namespace mlir {
|
|
namespace concretelang {
|
|
template <>
|
|
mlir::LogicalResult
|
|
TypeConvertingReinstantiationPattern<scf::ForOp, false>::matchAndRewrite(
|
|
scf::ForOp oldOp, mlir::OpConversionPattern<scf::ForOp>::OpAdaptor adaptor,
|
|
mlir::ConversionPatternRewriter &rewriter) const {
|
|
mlir::TypeConverter &typeConverter = *getTypeConverter();
|
|
llvm::SmallVector<mlir::Type> convertedResultTypes;
|
|
|
|
if (typeConverter.convertTypes(oldOp.getResultTypes(), convertedResultTypes)
|
|
.failed()) {
|
|
return mlir::failure();
|
|
}
|
|
|
|
convertOpWithBlocks(oldOp, adaptor.getOperands(), convertedResultTypes,
|
|
typeConverter, rewriter);
|
|
|
|
return mlir::success();
|
|
}
|
|
|
|
//
|
|
// Specializations for ForallOp
|
|
//
|
|
template <>
|
|
mlir::LogicalResult
|
|
TypeConvertingReinstantiationPattern<scf::ForallOp, false>::matchAndRewrite(
|
|
scf::ForallOp oldOp,
|
|
mlir::OpConversionPattern<scf::ForallOp>::OpAdaptor adaptor,
|
|
mlir::ConversionPatternRewriter &rewriter) const {
|
|
|
|
convertOpWithBlocks(oldOp, adaptor.getOperands(),
|
|
adaptor.getOutputs().getTypes(), *getTypeConverter(),
|
|
rewriter);
|
|
|
|
return mlir::success();
|
|
}
|
|
|
|
//
|
|
// Specializations for InParallelOp
|
|
//
|
|
template <>
|
|
mlir::LogicalResult
|
|
TypeConvertingReinstantiationPattern<scf::InParallelOp, false>::matchAndRewrite(
|
|
scf::InParallelOp oldOp,
|
|
mlir::OpConversionPattern<scf::InParallelOp>::OpAdaptor adaptor,
|
|
mlir::ConversionPatternRewriter &rewriter) const {
|
|
// Create new for loop with empty body, but converted iter args
|
|
scf::InParallelOp newInParallelOp =
|
|
rewriter.replaceOpWithNewOp<scf::InParallelOp>(oldOp);
|
|
|
|
// Move operations from old for op to new one
|
|
auto &newOperations = newInParallelOp.getBody()->getOperations();
|
|
mlir::Block *oldBody = oldOp.getBody();
|
|
|
|
newOperations.splice(newOperations.begin(), oldBody->getOperations(),
|
|
oldBody->begin(), oldBody->end());
|
|
|
|
return mlir::success();
|
|
}
|
|
|
|
} // namespace concretelang
|
|
} // namespace mlir
|