mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 12:44:57 -05:00
22 lines
695 B
C++
22 lines
695 B
C++
// Part of the Concrete Compiler Project, under the BSD3 License with Zama
|
|
// Exceptions. See
|
|
// https://github.com/zama-ai/concrete-compiler-internal/blob/master/LICENSE.txt
|
|
// for license information.
|
|
|
|
#ifndef CONCRETELANG_CONVERSION_CONCRETETOCONCRETECAPI_PASS_H_
|
|
#define CONCRETELANG_CONVERSION_CONCRETETOCONCRETECAPI_PASS_H_
|
|
|
|
#include "mlir/Pass/Pass.h"
|
|
|
|
#include "concretelang/Conversion/Utils/GlobalFHEContext.h"
|
|
|
|
namespace mlir {
|
|
namespace concretelang {
|
|
/// Create a pass to convert `Concrete` operators to function call to the
|
|
/// `ConcreteCAPI`
|
|
std::unique_ptr<OperationPass<ModuleOp>>
|
|
createConvertConcreteToConcreteCAPIPass();
|
|
} // namespace concretelang
|
|
} // namespace mlir
|
|
|
|
#endif |