[Mlir-commits] [mlir] [MLIR][AMDGPU] Add OCP FP8 support for new hardware (PR #127728)

Mirza Halilčević llvmlistbot at llvm.org
Thu Feb 20 06:24:40 PST 2025


================
@@ -49,6 +49,14 @@ struct Chipset {
 #undef DEFINE_COMP_OPERATOR
 };
 
+inline bool isGfx940Series(const Chipset &chipset) {
----------------
mirza-halilcevic wrote:

Looks like this is supposed to match with all the gfx94_ chipsets, hence the "Series" in the function name. But if gfx940 and gfx941 are no longer supported, I can rename this to `isGfx942` and just check `chipset == Chipset(9, 4, 2)`.

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


More information about the Mlir-commits mailing list