Adjust noisy threshold to 2ms for MobileNetV3 on Mali GPUs (#8121)
diff --git a/build_tools/benchmarks/common/benchmark_thresholds.py b/build_tools/benchmarks/common/benchmark_thresholds.py
index b84cb6d..f866dd8 100644
--- a/build_tools/benchmarks/common/benchmark_thresholds.py
+++ b/build_tools/benchmarks/common/benchmark_thresholds.py
@@ -62,6 +62,11 @@
BenchmarkThreshold(re.compile(r"^PoseNet.*big-core.*Dylib.* @ Pixel-6"), 20,
ThresholdUnit.PERCENTAGE),
+ # Fluctuating benchmarks on GPUs.
+ BenchmarkThreshold(
+ re.compile(r"^MobileNetV3Small.*full-inference.*GPU-Mali"), 2,
+ ThresholdUnit.VALUE_MS),
+
# Benchmarks that complete around 10ms on GPUs; using percentage is not
# suitable anymore.
BenchmarkThreshold(re.compile(r"^DeepLabV3.*GPU-Mali"), 1,