[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:27:08 PST 2025
================
@@ -49,6 +49,14 @@ struct Chipset {
#undef DEFINE_COMP_OPERATOR
};
+inline bool isGfx940Series(const Chipset &chipset) {
+ return chipset.majorVersion == 9 && chipset.minorVersion == 4;
+}
+inline bool hasOcpFp8(const Chipset &chipset) {
----------------
mirza-halilcevic wrote:
This does contradict a previous comment by @kuhar
https://github.com/llvm/llvm-project/pull/106160#discussion_r1763442491
https://github.com/llvm/llvm-project/pull/127728
More information about the Mlir-commits
mailing list