[Mlir-commits] [mlir] [MLIR][NVVM] Add `nvvm.divf` Op (PR #198744)
Varad Rahul Kamthe
llvmlistbot at llvm.org
Thu May 21 01:02:54 PDT 2026
================
@@ -3349,6 +3349,39 @@ LogicalResult NVVM::SqrtOp::verify() {
return success();
}
+LogicalResult NVVM::DivFOp::verify() {
+ bool isApprox = getApprox();
+ bool isFull = getFull();
+ bool isF64 = getRes().getType().isF64();
+ bool isFtz = getFtz();
+ NVVM::FPRoundingMode rndMode = getRnd();
+
+ // approx and full are mutually exclusive.
----------------
varadk27 wrote:
Addressed in latest revision
https://github.com/llvm/llvm-project/pull/198744
More information about the Mlir-commits
mailing list