diff options
-rwxr-xr-x | si-report.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/si-report.py b/si-report.py index 65e8abb..2172ca8 100755 --- a/si-report.py +++ b/si-report.py @@ -683,7 +683,7 @@ def print_tables(before_all_results, after_all_results): # percentages longest_app_name = max(longest_app_name, len("AFFECTED APPS")) title = "| {:^{width}} |".format("AFFECTED APPS", width=longest_app_name) - legend = ["{:>9} ".format(s) for s in ["Shaders", "SGPRs", "VGPRs", "SpillSGPR", "SpillVGPR", "PrivVGPR", "Scratch", "CodeSize", "MaxWaves", "Outputs", "PatchOuts"]] + legend = ["{:^9}".format(s) for s in ["Shaders", "SGPRs", "VGPRs", "SpillSGPR", "SpillVGPR", "PrivVGPR", "Scratch", "CodeSize", "MaxWaves", "Outputs", "PatchOuts"]] header = title + "|".join(legend) + "|" print_yellow(header) print("|".join(["-" * len(a) for a in (header).split("|")])) |