[Mlir-commits] [mlir] [MLIR][GPUToNVVM] support fastMath and other non-supported mathOp (PR #99890)
Mehdi Amini
llvmlistbot at llvm.org
Mon Jul 22 10:05:13 PDT 2024
================
@@ -31,9 +31,9 @@ template <typename SourceOp>
struct OpToFuncCallLowering : public ConvertOpToLLVMPattern<SourceOp> {
public:
explicit OpToFuncCallLowering(LLVMTypeConverter &lowering, StringRef f32Func,
- StringRef f64Func)
+ StringRef f64Func, StringRef f32FastFunc)
: ConvertOpToLLVMPattern<SourceOp>(lowering), f32Func(f32Func),
- f64Func(f64Func) {}
+ f64Func(f64Func), f32FastFunc(f32FastFunc) {}
----------------
joker-eph wrote:
Can you update the class documentation please?
https://github.com/llvm/llvm-project/pull/99890
More information about the Mlir-commits
mailing list