aboutsummaryrefslogtreecommitdiff
path: root/src/benchmark.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-04-08 15:40:53 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-04-08 15:40:53 +0200
commitef4f9c558eecf19bb9b2c2141ee9a50b55e092a2 (patch)
treeddb159d8dd0239b259f3dbd2353fb4b07c079115 /src/benchmark.py
parentede6aadc4b8bb6d1af2a5abe0cb1174e8fcc69dd (diff)
downloadallocbench-ef4f9c558eecf19bb9b2c2141ee9a50b55e092a2.tar.gz
allocbench-ef4f9c558eecf19bb9b2c2141ee9a50b55e092a2.zip
don't output the error if a datapoint is not convertable to float
Diffstat (limited to 'src/benchmark.py')
-rw-r--r--src/benchmark.py1
1 files changed, 0 insertions, 1 deletions
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)