Files
concrete/compiler/lib/Dialect/FHE/Transforms/CMakeLists.txt
youben11 d41d14dbb8 feat: lower FHE.add on eint64 to ops on smaller chunks
this is a first commit to support operations on U64 by decomposing them
into smaller chunks (32 chunks of 2 bits). This commit introduce the
lowering pass that will be later populated to support other operations.
2023-02-07 12:27:01 +01:00

15 lines
262 B
CMake

add_mlir_library(
FHEDialectTransforms
BigInt.cpp
Boolean.cpp
EncryptedMulToDoubleTLU.cpp
ADDITIONAL_HEADER_DIRS
${PROJECT_SOURCE_DIR}/include/concretelang/Dialect/FHE
DEPENDS
FHEDialect
mlir-headers
LINK_LIBS
PUBLIC
MLIRIR
FHEDialect)