[Mlir-commits] [mlir] [mlir][amdgpu][rocdl] Add gfx1250 wmma ops (PR #165064)

Krzysztof Drewniak llvmlistbot at llvm.org
Fri Oct 24 21:51:19 PDT 2025


================
@@ -1019,34 +1024,124 @@ static std::optional<StringRef> wmmaOpToIntrinsic(WMMAOp wmma,
         return ROCDL::wmma_i32_16x16x16_iu4::getOperationName();
     }
   }
-  if (chipset.majorVersion < 12)
+  if (isRDNA3)
     return std::nullopt;
 
+  using fp8 = Float8E4M3FNType;
----------------
krzysz00 wrote:

Oh, that's a good idea. We should do it in more places.

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


More information about the Mlir-commits mailing list