We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bcc137 commit a47055eCopy full SHA for a47055e
utils/process-stats-dir.py
@@ -48,7 +48,10 @@ def vars_of_args(args):
48
vargs = vars(args)
49
if args.select_stats_from_csv_baseline is not None:
50
b = read_stats_dict_from_csv(args.select_stats_from_csv_baseline)
51
- if args.group_by_module:
+ # Sniff baseline stat-names to figure out if they're module-qualified
52
+ # even when the user isn't asking us to _output_ module-grouped data.
53
+ all_triples = all(len(k.split('.')) == 3 for k in b.keys())
54
+ if args.group_by_module or all_triples:
55
vargs['select_stat'] = set(stat_name_minus_module(k)
56
for k in b.keys())
57
else:
0 commit comments