@@ -403,6 +403,7 @@ def analyze_results(configs, args):
403
403
for m in (passed_modules - failed_modules ):
404
404
common_args += ['--select-module' , m ]
405
405
406
+ briefpattern = r'driver.*wall|NumLLVMBytesOutput|NumInstructions'
406
407
returncodes = []
407
408
for config in configs :
408
409
variant = get_variant (config , args )
@@ -418,7 +419,7 @@ def analyze_results(configs, args):
418
419
common_args +
419
420
['--output' , get_table_name ('head' , 'brief' , variant ),
420
421
'--divide-by' , str (args .repetitions ),
421
- '--select-stat' , r'driver.*wall|NumLLVMBytesOutput' ,
422
+ '--select-stat' , briefpattern ,
422
423
'--merge-timers' ,
423
424
'--delta-pct-thresh' , delta_pct_thresh ,
424
425
'--delta-usec-thresh' , delta_usec_thresh ,
@@ -439,7 +440,7 @@ def analyze_results(configs, args):
439
440
common_args +
440
441
['--output' ,
441
442
get_table_name ('baseline' , 'brief' , variant ),
442
- '--select-stat' , r'driver.*wall|NumLLVMBytesOutput' ,
443
+ '--select-stat' , briefpattern ,
443
444
'--merge-timers' ,
444
445
'--divide-by' , str (args .repetitions ),
445
446
'--delta-pct-thresh' , delta_pct_thresh ,
0 commit comments