diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-11-05 16:54:46 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-11-05 16:54:46 +0100 |
commit | d77d62178fa257cf84099811b9177b9e224a2dd8 (patch) | |
tree | 5c732624e45f460707603b76375e35ce3cbb03b8 /resources/tools/presentation/generator_plots.py | |
parent | b641b5bf12a0d1b63ac9afb7c89133297d3b63fe (diff) |
CSIT-1342: Edit the static content for CSIT-1810 report
Change-Id: I1b838deed822159d78728805c8269cf8a6592d2c
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index a488bdf845..51b29407c3 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -437,7 +437,11 @@ def plot_throughput_speedup_analysis(plot, input_data): vals[name]["diff"] = \ [(y_val_1 - y_1c_max[test_name]) * 100 / y_val_1, None, None] - val_max = max(max(vals[name]["val"], vals[name]["ideal"])) + try: + val_max = max(max(vals[name]["val"], vals[name]["ideal"])) + except ValueError as err: + logging.error(err) + continue if val_max: y_max.append(int((val_max / 10) + 1) * 10) @@ -502,8 +506,11 @@ def plot_throughput_speedup_analysis(plot, input_data): x_vals = [1, 2, 4] # Limits: - threshold = 1.1 * max(y_max) # 10% - + try: + threshold = 1.1 * max(y_max) # 10% + except ValueError as err: + logging.error(err) + return nic_limit /= 1000000.0 if nic_limit < threshold: traces.append(plgo.Scatter( |