Files
clang-p2996/mlir/lib/Dialect/Math/Transforms/CMakeLists.txt
Eugene Zhulenev ce976d2db3 [mlir] Add polynomial approximation for math::LogOp (using builders API)
Replace math::LogOp with an approximations from the the Julien Pommier's SSE math library

Link: http://gruntthepeon.free.fr/ssemath

Reviewed By: asaadaldien

Differential Revision: https://reviews.llvm.org/D97304
2021-02-24 07:50:25 -08:00

16 lines
273 B
CMake

add_mlir_dialect_library(MLIRMathTransforms
ExpandTanh.cpp
PolynomialApproximation.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/Math/Transforms
LINK_LIBS PUBLIC
MLIRIR
MLIRLLVMIR
MLIRMath
MLIRPass
MLIRStandard
MLIRTransforms
)