[Mlir-commits] [mlir] [mlir][SPIR-V] Convert math.fpowi to spirv.CL.pown (PR #196701)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sat May 9 00:51:30 PDT 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- mlir/lib/Conversion/MathToSPIRV/MathToSPIRV.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/mlir/lib/Conversion/MathToSPIRV/MathToSPIRV.cpp b/mlir/lib/Conversion/MathToSPIRV/MathToSPIRV.cpp
index d51706571..8d850e01d 100644
--- a/mlir/lib/Conversion/MathToSPIRV/MathToSPIRV.cpp
+++ b/mlir/lib/Conversion/MathToSPIRV/MathToSPIRV.cpp
@@ -459,8 +459,8 @@ struct PowIOpPattern final : public OpConversionPattern<math::FPowIOp> {
if (!dstType)
return failure();
- rewriter.replaceOpWithNewOp<spirv::CLPownOp>(
- op, dstType, adaptor.getLhs(), adaptor.getRhs());
+ rewriter.replaceOpWithNewOp<spirv::CLPownOp>(op, dstType, adaptor.getLhs(),
+ adaptor.getRhs());
return success();
}
};
@@ -576,8 +576,7 @@ void populateMathToSPIRVPatterns(const SPIRVTypeConverter &typeConverter,
CheckedElementwiseOpPattern<math::FloorOp, spirv::CLFloorOp>,
CheckedElementwiseOpPattern<math::FmaOp, spirv::CLFmaOp>,
CheckedElementwiseOpPattern<math::LogOp, spirv::CLLogOp>,
- CheckedElementwiseOpPattern<math::PowFOp, spirv::CLPowOp>,
- PowIOpPattern,
+ CheckedElementwiseOpPattern<math::PowFOp, spirv::CLPowOp>, PowIOpPattern,
CheckedElementwiseOpPattern<math::RoundEvenOp, spirv::CLRintOp>,
CheckedElementwiseOpPattern<math::RoundOp, spirv::CLRoundOp>,
CheckedElementwiseOpPattern<math::RsqrtOp, spirv::CLRsqrtOp>,
``````````
</details>
https://github.com/llvm/llvm-project/pull/196701
More information about the Mlir-commits
mailing list