X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;fp=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=ee08511915ec42330d4b0953197c753d9f048ac8;hp=b8ceffafb5a6bc278987a49fffee9e9cf2da17d3;hb=e076cc8c47e7c10a48d0c5410967cd0269b98723;hpb=9748f8e1b20bc528fb0143a08f111f48426ada3e diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index b8ceffafb5..ee08511915 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1877,7 +1877,10 @@ def table_comparison(table, input_data): groups = re.search(REGEX_TOPO_ARCH, col["title"]) topo_arch = groups.group(0) if groups else "" norm_factor = table["norm_factor"].get(topo_arch, 1.0) - row_data_norm = row_data * norm_factor + row_data_norm = { + "mean": row_data["mean"] * norm_factor, + "stdev": row_data["stdev"] * norm_factor + } else: row_data_norm = row_data row.append(row_data_norm)