mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
127 lines
5.0 KiB
C++
127 lines
5.0 KiB
C++
// Part of the Concrete Compiler Project, under the BSD3 License with Zama
|
|
// Exceptions. See
|
|
// https://github.com/zama-ai/concrete-compiler-internal/blob/main/LICENSE.txt
|
|
// for license information.
|
|
|
|
#include <mlir/Dialect/Arithmetic/IR/Arithmetic.h>
|
|
#include <mlir/IR/PatternMatch.h>
|
|
#include <mlir/Transforms/GreedyPatternRewriteDriver.h>
|
|
|
|
#include <concretelang/Dialect/FHE/IR/FHEOps.h>
|
|
#include <concretelang/Dialect/FHE/IR/FHETypes.h>
|
|
#include <concretelang/Dialect/FHE/Transforms/Boolean.h>
|
|
#include <concretelang/Support/Constants.h>
|
|
|
|
namespace mlir {
|
|
namespace concretelang {
|
|
|
|
namespace {
|
|
|
|
/// Rewrite an `FHE.gen_gate` operation as an LUT operation by composing a
|
|
/// single index from the two boolean inputs.
|
|
class GenGatePattern
|
|
: public mlir::OpRewritePattern<mlir::concretelang::FHE::GenGateOp> {
|
|
public:
|
|
GenGatePattern(mlir::MLIRContext *context)
|
|
: mlir::OpRewritePattern<mlir::concretelang::FHE::GenGateOp>(
|
|
context, ::mlir::concretelang::DEFAULT_PATTERN_BENEFIT) {}
|
|
|
|
mlir::LogicalResult
|
|
matchAndRewrite(mlir::concretelang::FHE::GenGateOp op,
|
|
mlir::PatternRewriter &rewriter) const override {
|
|
auto eint2 = mlir::concretelang::FHE::EncryptedIntegerType::get(
|
|
rewriter.getContext(), 2);
|
|
auto left = rewriter
|
|
.create<mlir::concretelang::FHE::FromBoolOp>(
|
|
op.getLoc(), eint2, op.left())
|
|
.getResult();
|
|
auto right = rewriter
|
|
.create<mlir::concretelang::FHE::FromBoolOp>(
|
|
op.getLoc(), eint2, op.right())
|
|
.getResult();
|
|
auto cst_two =
|
|
rewriter.create<mlir::arith::ConstantIntOp>(op.getLoc(), 2, 3)
|
|
.getResult();
|
|
auto leftMulTwo = rewriter
|
|
.create<mlir::concretelang::FHE::MulEintIntOp>(
|
|
op.getLoc(), left, cst_two)
|
|
.getResult();
|
|
auto newIndex = rewriter
|
|
.create<mlir::concretelang::FHE::AddEintOp>(
|
|
op.getLoc(), leftMulTwo, right)
|
|
.getResult();
|
|
auto lut_result =
|
|
rewriter.create<mlir::concretelang::FHE::ApplyLookupTableEintOp>(
|
|
op.getLoc(), eint2, newIndex, op.truth_table());
|
|
rewriter.replaceOpWithNewOp<mlir::concretelang::FHE::ToBoolOp>(
|
|
op,
|
|
mlir::concretelang::FHE::EncryptedBooleanType::get(
|
|
rewriter.getContext()),
|
|
lut_result);
|
|
return mlir::success();
|
|
}
|
|
};
|
|
|
|
/// Rewrite an FHE GateOp (e.g. And/Or) into a GenGate with the given truth
|
|
/// table.
|
|
template <typename GateOp>
|
|
class GeneralizeGatePattern : public mlir::OpRewritePattern<GateOp> {
|
|
public:
|
|
GeneralizeGatePattern(mlir::MLIRContext *context,
|
|
llvm::SmallVector<uint64_t, 4> truth_table_vector)
|
|
: mlir::OpRewritePattern<GateOp>(
|
|
context, ::mlir::concretelang::DEFAULT_PATTERN_BENEFIT),
|
|
truth_table_vector(truth_table_vector) {}
|
|
|
|
mlir::LogicalResult
|
|
matchAndRewrite(GateOp op, mlir::PatternRewriter &rewriter) const override {
|
|
auto truth_table_attr = mlir::DenseElementsAttr::get(
|
|
mlir::RankedTensorType::get({4}, rewriter.getIntegerType(64)),
|
|
{llvm::APInt(1, this->truth_table_vector[0], false),
|
|
llvm::APInt(1, this->truth_table_vector[1], false),
|
|
llvm::APInt(1, this->truth_table_vector[2], false),
|
|
llvm::APInt(1, this->truth_table_vector[3], false)});
|
|
auto truth_table =
|
|
rewriter.create<mlir::arith::ConstantOp>(op.getLoc(), truth_table_attr);
|
|
rewriter.replaceOpWithNewOp<mlir::concretelang::FHE::GenGateOp>(
|
|
op, op.getResult().getType(), op.left(), op.right(), truth_table);
|
|
return mlir::success();
|
|
}
|
|
|
|
private:
|
|
llvm::SmallVector<uint64_t, 4> truth_table_vector;
|
|
};
|
|
|
|
/// Perfoms the transformation of boolean operations
|
|
class FHEBooleanTransformPass
|
|
: public FHEBooleanTransformBase<FHEBooleanTransformPass> {
|
|
public:
|
|
void runOnOperation() override {
|
|
mlir::Operation *op = getOperation();
|
|
|
|
mlir::RewritePatternSet patterns(&getContext());
|
|
patterns.add<GenGatePattern>(&getContext());
|
|
patterns.add<GeneralizeGatePattern<mlir::concretelang::FHE::BoolAndOp>>(
|
|
&getContext(), llvm::SmallVector<uint64_t, 4>({0, 0, 0, 1}));
|
|
patterns.add<GeneralizeGatePattern<mlir::concretelang::FHE::BoolNandOp>>(
|
|
&getContext(), llvm::SmallVector<uint64_t, 4>({1, 1, 1, 0}));
|
|
patterns.add<GeneralizeGatePattern<mlir::concretelang::FHE::BoolOrOp>>(
|
|
&getContext(), llvm::SmallVector<uint64_t, 4>({0, 1, 1, 1}));
|
|
patterns.add<GeneralizeGatePattern<mlir::concretelang::FHE::BoolXorOp>>(
|
|
&getContext(), llvm::SmallVector<uint64_t, 4>({0, 1, 1, 0}));
|
|
|
|
if (mlir::applyPatternsAndFoldGreedily(op, std::move(patterns)).failed()) {
|
|
this->signalPassFailure();
|
|
}
|
|
}
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
std::unique_ptr<mlir::OperationPass<>> createFHEBooleanTransformPass() {
|
|
return std::make_unique<FHEBooleanTransformPass>();
|
|
}
|
|
|
|
} // namespace concretelang
|
|
} // namespace mlir
|