Commit 9fd9506 1 parent a30b202 commit 9fd9506 Copy full SHA for 9fd9506
File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ internal class RyzenControl
40
40
//PHEONIX - 9
41
41
//RAPHAEL/DRAGON RANGE - 10
42
42
//MENDOCINO - 11
43
- //HAWKPOINT - 12
43
+ //HAWKPOINT/STRIXPOINT - 12
44
44
45
45
public static void Init ( )
46
46
{
@@ -77,7 +77,7 @@ public static void Init()
77
77
FAMID = 1 ; //PICASSO
78
78
}
79
79
80
- if ( CPUModel . Contains ( "Model " + Convert . ToString ( 32 ) ) )
80
+ if ( CPUModel . Contains ( "Family " + Convert . ToString ( 23 ) ) && CPUModel . Contains ( " Model " + Convert . ToString ( 32 ) ) )
81
81
{
82
82
FAMID = 2 ; //DALI
83
83
}
@@ -127,6 +127,11 @@ public static void Init()
127
127
FAMID = 12 ; //HAWKPOINT
128
128
}
129
129
130
+ if ( CPUModel . Contains ( "Family " + Convert . ToString ( 26 ) ) && CPUModel . Contains ( "Model " + Convert . ToString ( 36 ) ) )
131
+ {
132
+ FAMID = 12 ; //STRIXPOINT
133
+ }
134
+
130
135
Logger . WriteLine ( $ "CPU: { FAMID } - { CPUName } - { CPUModel } ") ;
131
136
132
137
SetAddresses ( ) ;
@@ -141,7 +146,7 @@ public static bool IsAMD()
141
146
public static bool IsSupportedUV ( )
142
147
{
143
148
if ( CPUName . Length == 0 ) Init ( ) ;
144
- return CPUName . Contains ( "Ryzen 9" ) || CPUName . Contains ( "4900H" ) || CPUName . Contains ( "4800H" ) || CPUName . Contains ( "4600H" ) ;
149
+ return CPUName . Contains ( "Ryzen AI 9" ) || CPUName . Contains ( "Ryzen 9") || CPUName . Contains ( "4900H" ) || CPUName . Contains ( "4800H" ) || CPUName . Contains ( "4600H" ) ;
145
150
}
146
151
147
152
public static bool IsSupportedUViGPU ( )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ internal class SendCommand
21
21
//PHEONIX - 9
22
22
//RAPHAEL/DRAGON RANGE - 10
23
23
//MENDOCINO - 11
24
- //HAWKPOINT - 12
24
+ //HAWKPOINT/STRIXPOINT - 12
25
25
26
26
public static Smu RyzenAccess = new Smu ( false ) ;
27
27
public static int FAMID = RyzenControl . FAMID ;
You can’t perform that action at this time.
0 commit comments