[Mlir-commits] [mlir] [MLIR][NVVM] Add sqrt Ops (PR #197422)
Durgadoss R
llvmlistbot at llvm.org
Wed May 13 05:57:13 PDT 2026
================
@@ -3339,6 +3339,16 @@ LogicalResult NVVM::FmaOp::verify() {
return success();
}
+LogicalResult NVVM::SqrtOp::verify() {
+ if (getRnd() == NVVM::FPRoundingMode::NONE)
+ return emitOpError("rounding mode must be specified");
----------------
durga4github wrote:
"rounding mode cannot be None"
https://github.com/llvm/llvm-project/pull/197422
More information about the Mlir-commits
mailing list