diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-04-08 15:40:53 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-04-08 15:40:53 +0200 |
| commit | ef4f9c558eecf19bb9b2c2141ee9a50b55e092a2 (patch) | |
| tree | ddb159d8dd0239b259f3dbd2353fb4b07c079115 | |
| parent | ede6aadc4b8bb6d1af2a5abe0cb1174e8fcc69dd (diff) | |
| download | allocbench-ef4f9c558eecf19bb9b2c2141ee9a50b55e092a2.tar.gz allocbench-ef4f9c558eecf19bb9b2c2141ee9a50b55e092a2.zip | |
don't output the error if a datapoint is not convertable to float
| -rw-r--r-- | src/benchmark.py | 1 |
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) |
