diff options
Diffstat (limited to 'resources/tools')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 4 | ||||
-rw-r--r-- | resources/tools/presentation/specification.yaml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 71ec431e6a..58d3b67b55 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -335,8 +335,8 @@ def _read_csv_template(file_name): raise PresentationError(str(err), level="ERROR") -def table_performance_comparision(table, input_data): - """Generate the table(s) with algorithm: table_performance_comparision +def table_performance_comparison(table, input_data): + """Generate the table(s) with algorithm: table_performance_comparison specified in the specification file. :param table: Table to generate. diff --git a/resources/tools/presentation/specification.yaml b/resources/tools/presentation/specification.yaml index d6e0b0ea78..e1ce00cfe8 100644 --- a/resources/tools/presentation/specification.yaml +++ b/resources/tools/presentation/specification.yaml @@ -449,7 +449,7 @@ - type: "table" title: "Performance Impact of Meltdown Patches" - algorithm: "table_performance_comparision" + algorithm: "table_performance_comparison" output-file-ext: ".csv" # TODO: specify dir output-file: "{DIR[DTR,PERF,VPP,IMPACT,MELTDOWN]}/meltdown-impact" @@ -481,7 +481,7 @@ - type: "table" title: "Performance Impact of Spectre Patches" - algorithm: "table_performance_comparision" + algorithm: "table_performance_comparison" output-file-ext: ".csv" # TODO: specify dir output-file: "{DIR[DTR,PERF,VPP,IMPACT,SPECTRE]}/spectre-impact" |