From 5397ce4509d344a090b22edcad442bef4e0758bf Mon Sep 17 00:00:00 2001 From: Moritz Eckert Date: Mon, 6 Mar 2023 08:49:15 +0100 Subject: [PATCH] ci: fix typo in benchmark actions (#1344) --- .github/actions/e2e_benchmark/README.md | 4 ++-- .github/actions/e2e_benchmark/evaluate/compare.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/e2e_benchmark/README.md b/.github/actions/e2e_benchmark/README.md index 32da0dbd2..ef5f3785f 100644 --- a/.github/actions/e2e_benchmark/README.md +++ b/.github/actions/e2e_benchmark/README.md @@ -35,9 +35,9 @@ Example table: | read_bw | bw_kbytes (KiB/s) | 28302.0 | 28530.0 | 0.992 ⬇️ | | write_bw | bw_kbytes (KiB/s) | 4159.0 | 2584.0 | 1.61 ⬆️ | | pod2pod | tcp_bw_mbit (MiB/s) | 20450.0 | 929.0 | 22.013 ⬆️ | -| pod2pod | upd_bw_mbit (MiB/s) | 1138.0 | 750.0 | 1.517 ⬆️ | +| pod2pod | udp_bw_mbit (MiB/s) | 1138.0 | 750.0 | 1.517 ⬆️ | | pod2svc | tcp_bw_mbit (MiB/s) | 21188.0 | 905.0 | 23.412 ⬆️ | -| pod2svc | upd_bw_mbit (MiB/s) | 1137.0 | 746.0 | 1.524 ⬆️ | +| pod2svc | udp_bw_mbit (MiB/s) | 1137.0 | 746.0 | 1.524 ⬆️ | diff --git a/.github/actions/e2e_benchmark/evaluate/compare.py b/.github/actions/e2e_benchmark/evaluate/compare.py index c6c2a2a81..a779be48a 100644 --- a/.github/actions/e2e_benchmark/evaluate/compare.py +++ b/.github/actions/e2e_benchmark/evaluate/compare.py @@ -11,7 +11,7 @@ BIGGER_BETTER = [ 'iops', 'bw_kbytes', 'tcp_bw_mbit', - 'upd_bw_mbit', + 'udp_bw_mbit', ] # Lookup for test suite -> unit @@ -19,7 +19,7 @@ UNIT_STR = { 'iops': 'IOPS', 'bw_kbytes': 'KiB/s', 'tcp_bw_mbit': 'Mbit/s', - 'upd_bw_mbit': 'Mbit/s', + 'udp_bw_mbit': 'Mbit/s', } # API units are ms, so this is shorter than cluttering the dictionary: API_UNIT_STR = "ms" @@ -29,7 +29,7 @@ ALLOWED_RATIO_DELTA = { 'iops': 0.7, 'bw_kbytes': 0.7, 'tcp_bw_mbit': 0.7, - 'upd_bw_mbit': 0.7, + 'udp_bw_mbit': 0.7, } def is_bigger_better(bench_suite: str) -> bool: