Report: Set .08 revision, fix GSO graphs 07/31407/9
authorTibor Frank <tifrank@cisco.com>
Tue, 23 Feb 2021 10:57:27 +0000 (11:57 +0100)
committerTibor Frank <tifrank@cisco.com>
Wed, 24 Feb 2021 07:13:50 +0000 (08:13 +0100)
Change-Id: I5948dbaf69d183caddbefd16f2198b54a24ff904
Signed-off-by: Tibor Frank <tifrank@cisco.com>
docs/report/introduction/report_history.rst
resources/tools/presentation/conf.py
resources/tools/presentation/generator_plots.py
resources/tools/presentation/input_data_parser.py
resources/tools/presentation/run_report.sh
resources/tools/presentation/specification.yaml

index 29cbf11..191ce28 100644 (file)
@@ -7,6 +7,9 @@ below.
 +----------------+------------------------------------------------------------+
 | .[ww] Revision | Changes                                                    |
 +================+============================================================+
+| .08            | Added GSO tests                                            |
+|                |                                                            |
++----------------+------------------------------------------------------------+
 | .07            | Initial revision                                           |
 +----------------+------------------------------------------------------------+
 
index dcfd8d6..ba6f947 100644 (file)
@@ -46,7 +46,7 @@ source_suffix = [u'.rst', u'.md']
 master_doc = u'index'
 
 # General information about the project.
-report_week = u'07'
+report_week = u'08'
 project = u'FD.io CSIT-2101.{week}'.format(week=report_week)
 copyright = u'2021, FD.io'
 author = u'FD.io CSIT'
index 11892a7..4bdb847 100644 (file)
@@ -83,7 +83,8 @@ def generate_plots(spec, data):
         u"plot_nf_heatmap": plot_nf_heatmap,
         u"plot_hdrh_lat_by_percentile": plot_hdrh_lat_by_percentile,
         u"plot_hdrh_lat_by_percentile_x_log": plot_hdrh_lat_by_percentile_x_log,
-        u"plot_mrr_error_bars_name": plot_mrr_error_bars_name
+        u"plot_mrr_error_bars_name": plot_mrr_error_bars_name,
+        u"plot_mrr_box_name": plot_mrr_box_name
     }
 
     logging.info(u"Generating the plots ...")
@@ -699,6 +700,94 @@ def plot_perf_box_name(plot, input_data):
         return
 
 
+def plot_mrr_box_name(plot, input_data):
+    """Generate the plot(s) with algorithm: plot_mrr_box_name
+    specified in the specification file.
+
+    :param plot: Plot to generate.
+    :param input_data: Data to process.
+    :type plot: pandas.Series
+    :type input_data: InputData
+    """
+
+    # Transform the data
+    logging.info(
+        f"    Creating data set for the {plot.get(u'type', u'')} "
+        f"{plot.get(u'title', u'')}."
+    )
+    data = input_data.filter_tests_by_name(
+        plot,
+        params=[u"result", u"parent", u"tags", u"type"])
+    if data is None:
+        logging.error(u"No data.")
+        return
+
+    # Prepare the data for the plot
+    data_x = list()
+    data_names = list()
+    data_y = list()
+    data_y_max = list()
+    idx = 1
+    for item in plot.get(u"include", tuple()):
+        reg_ex = re.compile(str(item).lower())
+        for job in data:
+            for build in job:
+                for test_id, test in build.iteritems():
+                    if not re.match(reg_ex, str(test_id).lower()):
+                        continue
+                    try:
+                        data_x.append(idx)
+                        name = re.sub(REGEX_NIC, u'', test[u'parent'].lower().
+                                      replace(u'-mrr', u'').
+                                      replace(u'2n1l-', u''))
+                        data_y.append(test[u"result"][u"samples"])
+                        data_names.append(
+                            f"{idx}."
+                            f"({len(data_y[-1]):02d} "
+                            f"run{u's' if len(data_y[-1]) > 1 else u''}) "
+                            f"{name}"
+                        )
+                        data_y_max.append(max(test[u"result"][u"samples"]))
+                        idx += 1
+                    except (KeyError, TypeError):
+                        pass
+
+    # Add plot traces
+    traces = list()
+    for idx in range(len(data_x)):
+        traces.append(
+            plgo.Box(
+                x=[data_x[idx], ] * len(data_y[idx]),
+                y=data_y[idx],
+                name=data_names[idx],
+                hoverinfo=u"y+name"
+            )
+        )
+
+    try:
+        # Create plot
+        layout = deepcopy(plot[u"layout"])
+        if layout.get(u"title", None):
+            layout[u"title"] = f"<b>Throughput:</b> {layout[u'title']}"
+        if data_y_max:
+            layout[u"yaxis"][u"range"] = [0, max(data_y_max) + 1]
+        plpl = plgo.Figure(data=traces, layout=layout)
+
+        # Export Plot
+        logging.info(f"    Writing file {plot[u'output-file']}.html.")
+        ploff.plot(
+            plpl,
+            show_link=False,
+            auto_open=False,
+            filename=f"{plot[u'output-file']}.html"
+        )
+    except PlotlyError as err:
+        logging.error(
+            f"   Finished with error: {repr(err)}".replace(u"\n", u" ")
+        )
+        return
+
+
 def plot_mrr_error_bars_name(plot, input_data):
     """Generate the plot(s) with algorithm: plot_mrr_error_bars_name
     specified in the specification file.
index 6742439..cc98bb7 100644 (file)
@@ -1182,6 +1182,7 @@ class ExecutionChecker(ResultVisitor):
                     ]
                     # Use whole list in CSIT-1180.
                     stats = jumpavg.AvgStdevStats.for_runs(items_float)
+                    test_result[u"result"][u"samples"] = items_float
                     test_result[u"result"][u"receive-rate"] = stats.avg
                     test_result[u"result"][u"receive-stdev"] = stats.stdev
                 else:
index cac3cdc..181d9db 100755 (executable)
@@ -38,7 +38,7 @@ export PYTHONPATH=`pwd`:`pwd`/../../../:`pwd`/../../libraries/python
 python pal.py \
     --specification specification.yaml \
     --release ${RELEASE} \
-    --week "07" \
+    --week "08" \
     --logging INFO \
     --force
 
index 669d13f..72afd35 100644 (file)
           size: 14
         zeroline: False
       yaxis:
-        title: "<b>Packet Throughput [Gbps]</b>"
+        title: "<b>Data Throughput [Gbps]</b>"
         titlefont:
           size: 14
         gridcolor: "rgb(230, 230, 230)"
           size: 14
         zeroline: False
       yaxis:
-        title: "<b>Traffic Throughput [Gbps]</b>"
+        title: "<b>Data Throughput [Gbps]</b>"
         titlefont:
           size: 14
         gridcolor: "rgb(230, 230, 230)"
       - 35  # rls2101.rel NDRPDR cov env 6 3n-hsw-vhost-01
       - 36  # rls2101.rel NDRPDR cov env 6 3n-hsw-vhost-02
 
-
     csit-vpp-perf-report-iterative-2009-3n-skx:
       - 17  # rls2005 MRR iter env 5
       - 13  # rls2005 NDRPDR iter env 5
   format:
     html:
     - full
-    pdf:
-    - minimal
+    pdf:
+    - minimal
 
 ################################################################################
 ###                               T A B L E S                                ###
 
 - type: "plot"
   title: "Throughput: 2n-skx-128kb-1t1c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-skx-128kb-1t1c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-skx"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-1t1c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-skx-128kb-1t1c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"
 
 - type: "plot"
   title: "Throughput: 2n-skx-128kb-2t2c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-skx-128kb-2t2c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-skx"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-2t2c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-skx-128kb-2t2c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"
 
 - type: "plot"
   title: "Throughput: 2n-skx-128kb-4t4c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-skx-128kb-4t4c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-skx"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-4t4c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-skx-128kb-4t4c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"
 
 - type: "plot"
   title: "Throughput: 2n-clx-128kb-1t1c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-clx-128kb-1t1c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-clx"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-1t1c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-clx-128kb-1t1c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"
 
 - type: "plot"
   title: "Throughput: 2n-clx-128kb-2t2c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-clx-128kb-2t2c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-clx"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-2t2c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-clx-128kb-2t2c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"
 
 - type: "plot"
   title: "Throughput: 2n-clx-128kb-4t4c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-clx-128kb-4t4c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-clx"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-4t4c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-clx-128kb-4t4c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"
 
 - type: "plot"
   title: "Throughput: 2n-zn2-128kb-1t1c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-zn2-128kb-1t1c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-zn2"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-1t1c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-zn2-128kb-1t1c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"
 
 - type: "plot"
   title: "Throughput: 2n-zn2-128kb-2t2c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-zn2-128kb-2t2c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-zn2"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-2t2c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-zn2-128kb-2t2c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"
 
 - type: "plot"
   title: "Throughput: 2n-zn2-128kb-4t4c-ip4routing-iperf3"
-  algorithm: "plot_mrr_error_bars_name"
+  algorithm: "plot_mrr_box_name"
   output-file: "{DIR[STATIC,VPP]}/2n-zn2-128kb-4t4c-ip4routing-iperf3"
   data: "plot-vpp-gso-2n-zn2"
   include:
     - "Tests.Vpp.Perf.Gso.2N1L-10Ge2P1X710-Ethip4-Ip4Base-2Vhost-Iperf3-Mrr.128KB-4t4c-ethip4-ip4base-2vhost-iperf3-mrr"
   layout:
     title: "2n-zn2-128kb-4t4c-ip4routing-iperf3"
-    layout: "plot-scatter-error-bars-gbps"
+    layout: "plot-throughput-gbps"