File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
devops/scripts/benchmarks/benches Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -477,9 +477,14 @@ def enabled(self) -> bool:
477
477
# The benchmark instance gets created just to make metadata for these old results
478
478
if not super ().enabled ():
479
479
return False
480
- if "bmg" in options .device_architecture and self .KernelExecTime == 20 :
480
+
481
+ device_arch = getattr (options , "device_architecture" , "" )
482
+ if "bmg" in device_arch and self .KernelExecTime == 20 :
481
483
# Disable this benchmark for BMG server, just create metadata
482
484
return False
485
+ if "bmg" not in device_arch and self .KernelExecTime == 200 :
486
+ # Disable KernelExecTime=200 for non-BMG systems, just create metadata
487
+ return False
483
488
return True
484
489
485
490
def get_tags (self ):
You can’t perform that action at this time.
0 commit comments