[Mlir-commits] [mlir] [MLIR] Add sincos fusion pass (PR #161413)

Ivan Butygin llvmlistbot at llvm.org
Tue Sep 30 13:27:16 PDT 2025


================
@@ -0,0 +1,81 @@
+//===- SincosFusion.cpp - Fuse sin/cos into sincos -----------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "mlir/Dialect/Math/IR/Math.h"
+#include "mlir/Dialect/Math/Transforms/Passes.h"
+#include "mlir/IR/PatternMatch.h"
+// #include "mlir/Pass/Pass.h"
----------------
Hardcode84 wrote:

remove commented code

https://github.com/llvm/llvm-project/pull/161413


More information about the Mlir-commits mailing list