From ef4f9c558eecf19bb9b2c2141ee9a50b55e092a2 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 8 Apr 2020 15:40:53 +0200 Subject: don't output the error if a datapoint is not convertable to float --- src/benchmark.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/benchmark.py b/src/benchmark.py index d0489ac..3b6feb1 100644 --- a/src/benchmark.py +++ b/src/benchmark.py @@ -608,7 +608,6 @@ class Benchmark: try: data = [float(m[dp]) for m in self.results[alloc][perm]] except (TypeError, ValueError) as e: - print_debug(dp, e) continue stats["min"][dp] = np.min(data) stats["max"][dp] = np.max(data) -- cgit v1.2.3