Skip to content

Commit 78ca6d8

Browse files
JamesC1305zulinx86
authored andcommitted
fix(a/b): ignore network latency on 5.10 host m8i instances
Network latency is known to be flaky on Granite Rapids (m8i) instances with a 5.10 host kernel. We do not officially support these instances on 5.10 anyway, so it is okay to ignore erroneous A/B results. Signed-off-by: James Curtis <jxcurtis@amazon.co.uk>
1 parent c306099 commit 78ca6d8

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

tools/ab_test.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,15 @@ def format_with_reduced_unit(value, unit):
126126
"performance_test": "test_vsock_throughput",
127127
"mode": "g2h",
128128
},
129+
# Network latencies on m8i.metal-{48,96}xl w/ 5.10 host
130+
*[
131+
{
132+
"instance": instance,
133+
"performance_test": "test_network_latency",
134+
"host_kernel": "linux-5.10",
135+
}
136+
for instance in ["m8i.metal-48xl", "m8i.metal-96xl"]
137+
],
129138
# block latencies if guest uses async request submission
130139
{"fio_engine": "libaio", "metric": "clat_read"},
131140
{"fio_engine": "libaio", "metric": "clat_write"},

0 commit comments

Comments
 (0)