@@ -247,7 +247,7 @@ class DeveloperWarning(Warning):
247247 (9 ,4 ,0 ), (9 ,4 ,1 ), (9 ,4 ,2 ),
248248 (10 ,1 ,0 ), (10 ,1 ,1 ), (10 ,1 ,2 ), (10 ,3 ,0 ), (10 ,3 ,1 ),
249249 (11 ,0 ,0 ), (11 ,0 ,1 ), (11 ,0 ,2 ),
250- (11 ,5 ,1 ),
250+ (11 ,5 ,0 ), ( 11 , 5 , 1 ),
251251 (12 ,0 ,0 ), (12 ,0 ,1 )] # assembly kernels writer supports these architectures
252252
253253globalParameters ["KeepBuildTmp" ] = True # Do not remove build artifacts during the build process or build_tmp after build completes
@@ -324,7 +324,7 @@ class DeveloperWarning(Warning):
324324 'gfx1010' :'navi10' , 'gfx1011' :'navi12' , 'gfx1012' :'navi14' ,
325325 'gfx1030' :'navi21' , 'gfx1031' :'navi22' , 'gfx1032' :'navi23' , 'gfx1034' :'navi24' , 'gfx1035' :'rembrandt' ,
326326 'gfx1100' :'navi31' , 'gfx1101' :'navi32' , 'gfx1102' :'navi33' ,
327- 'gfx1151 ' :'gfx1151' ,
327+ 'gfx1150 ' :'strixpoint' , ' gfx1151' : 'strixhalo ' ,
328328 'gfx1200' :'gfx1200' ,
329329 'gfx1201' :'gfx1201'
330330}
@@ -2466,7 +2466,7 @@ def assignGlobalParameters( config, capabilitiesCache: Optional[dict] = None ):
24662466 if os .name == "nt" :
24672467 globalParameters ["CurrentISA" ] = (9 ,0 ,6 )
24682468 printWarning ("Failed to detect ISA so forcing (gfx906) on windows" )
2469- isasWithDisabledHWMonitor = ((9 ,4 ,1 ), (9 ,4 ,2 ), (11 ,0 ,0 ), (11 ,0 ,1 ), (11 ,0 ,2 ), (12 ,0 ,0 ), (12 ,0 ,1 ))
2469+ isasWithDisabledHWMonitor = ((9 ,4 ,1 ), (9 ,4 ,2 ), (11 ,0 ,0 ), (11 ,0 ,1 ), (11 ,0 ,2 ), (11 , 5 , 0 ), ( 11 , 5 , 1 ), ( 12 ,0 ,0 ), (12 ,0 ,1 ))
24702470 if globalParameters ["CurrentISA" ] in isasWithDisabledHWMonitor :
24712471 isaString = ', ' .join (map (gfxName , isasWithDisabledHWMonitor ))
24722472 printWarning (f"HardwareMonitor currently disabled for { isaString } " )
0 commit comments