Integrate RGA 2.3.1 and add support for Navi 14

This commit is contained in:
baldurk
2020-04-20 13:24:28 +01:00
parent c572ad2ed8
commit 6aec92840f
3 changed files with 4 additions and 2 deletions
@@ -57,6 +57,7 @@ const GCNISA::asic GCNISA::asicInfo[] = {
{"GCN (Vega 20)", "906", FAMILY_AI, AI_VEGA20_P_A0, "gfx906"},
// Navi
{"RDNA (Navi 10)", "1010", FAMILY_NV, NV_NAVI10_P_A0, "gfx1010"},
{"RDNA (Navi 14)", "1012", FAMILY_NV, NV_NAVI14_M_A0, "gfx1012"},
};
RDCCOMPILE_ASSERT(ARRAY_COUNT(GCNISA::asicInfo) == GCNISA::asicCount, "Mismatched array count");
+1 -1
View File
@@ -35,7 +35,7 @@ struct asic
const char *targetName;
};
const int asicCount = 25;
const int asicCount = 26;
extern const asic asicInfo[];
}; // namespace GCNISA
@@ -108,7 +108,8 @@ enum {
};
enum {
NV_NAVI10_P_A0 = 1
NV_NAVI10_P_A0 = 1,
NV_NAVI14_M_A0 = 20
};
enum {