The operations are converted into LLVM::PowIOp.
Depends on D139805
Differential D129812
[mlir][math] Added math::FPowI conversion to LLVM dialect. vzakhari on Jul 14 2022, 3:30 PM. Authored by
Details
Diff Detail
Event TimelineComment Actions Hi @wsmoses, can you please read through the TBD comments in this change and see if you have any comments? This is related to LLVM::PowIOp added in https://reviews.llvm.org/D116364. It is not quite aligned with the supported forms of llvm.powi.* LLVM intrinsic, so I wonder what the plan for this MLIR operation is.
Comment Actions This is a one-to-one conversion to LLVM::PowIOp. Flang will use MathToFuncs convertor (D139804) to convert unsupported exponent-width cases before engaging MathToLLVM. |
Can you try VectorConvertToLLVMPattern<FPowIOp, PowIOp>?