summaryrefslogtreecommitdiff
path: root/mlir/lib/Conversion/ComplexCommon/DivisionConverter.cpp
AgeCommit message (Collapse)Author
2025-07-22[mlir][NFC] update `Conversion` create APIs (5/n) (#149887)Maksim Levental
See https://github.com/llvm/llvm-project/pull/147168 for more info.
2025-02-13[mlir] Fix a warningKazu Hirata
This patch fixes: mlir/lib/Conversion/ComplexCommon/DivisionConverter.cpp:61:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi]
2025-02-13[mlir][complex] Add complex-range option and select complex division … ↵s-watanabe314
(#127010) …algorithm This patch adds the `complex-range` option and two calculation methods for complex number division (algebraic method and Smith's algorithm) to both the `ComplexToLLVM` and `ComplexToStandard` passes, allowing the calculation method to be controlled by the option. See also the discussion in the following discourse post. https://discourse.llvm.org/t/question-and-proposal-regarding-complex-number-division-algorithm-in-the-complex-dialect/83772