mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-02 02:24:56 -05:00
ci: fix typo in benchmark actions (#1344)
This commit is contained in:
parent
62c437246b
commit
5397ce4509
4
.github/actions/e2e_benchmark/README.md
vendored
4
.github/actions/e2e_benchmark/README.md
vendored
@ -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 ⬆️ |
|
||||
|
||||
</details>
|
||||
|
||||
|
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user