[Mlir-commits] [mlir] [MLIR][NVVM] Update convert Ops to use builtin types (PR #159704)

Srinivasa Ravi llvmlistbot at llvm.org
Tue Sep 23 00:48:54 PDT 2025


================
@@ -189,6 +189,14 @@ LogicalResult ConvertFloatToTF32Op::verify() {
   return success();
 }
 
+LogicalResult ConvertF32x2ToF6x2Op::verify() {
+  if (!llvm::isa<mlir::Float6E2M3FNType, mlir::Float6E3M2FNType>(getDstTy())) {
+    return emitError("Only f6E2M3FN and f6E3M2FN types are supported for "
----------------
Wolfram70 wrote:

Fixed, thanks!

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


More information about the Mlir-commits mailing list