diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-28 17:24:23 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-28 17:24:23 +0200 |
| commit | dcd05b6ebb31495d4a80d7979dc1cc339668efdc (patch) | |
| tree | 5e803c30b8537d5b9006a800ad44c685bc680bd9 | |
| parent | 6a6b5de7757f23cf0fdb8b755323fc4bf3d23733 (diff) | |
| download | allocbench-dcd05b6ebb31495d4a80d7979dc1cc339668efdc.tar.gz allocbench-dcd05b6ebb31495d4a80d7979dc1cc339668efdc.zip | |
readd missing numpy import for mysql summary
| -rw-r--r-- | src/benchmarks/mysql.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/benchmarks/mysql.py b/src/benchmarks/mysql.py index 3e2a957..b21bc0c 100644 --- a/src/benchmarks/mysql.py +++ b/src/benchmarks/mysql.py @@ -25,6 +25,8 @@ import subprocess from subprocess import PIPE import sys +import numpy as np + from src.benchmark import Benchmark from src.util import print_status, print_debug, print_info2 |
