aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2015-10-01 11:13:32 +0100
committerStuart Monteith <stuart.monteith@linaro.org>2015-10-01 11:13:32 +0100
commit54943c59e98b85706bc475441c3b9fcaab487802 (patch)
tree7c5100c26ac00045e315c32d6ce6b814fd0f4e03
parenta398b7cc87434edf6c049d313857e5646ece26d3 (diff)
Fix compare.py
compare.py wasn't importing PrintDiff from the correct place. utils.py was moved to tools/utils_stats.py Change-Id: Ic7ab294f500e3d1a75c432fbbab759eed3ecf1c3
-rwxr-xr-xbenchmarking/java-ubenchs/compare.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarking/java-ubenchs/compare.py b/benchmarking/java-ubenchs/compare.py
index 39b2fa2..6ee6a45 100755
--- a/benchmarking/java-ubenchs/compare.py
+++ b/benchmarking/java-ubenchs/compare.py
@@ -18,7 +18,7 @@
import argparse
import pickle
-import utils
+from tools import utils_stats
def BuildOptions():
parser = argparse.ArgumentParser(
@@ -36,6 +36,6 @@ if __name__ == "__main__":
pkl_file_2 = open(args.res_2, 'rb')
res_1 = pickle.load(pkl_file_1)
res_2 = pickle.load(pkl_file_2)
- utils.PrintDiff(res_1, res_2)
+ utils_stats.PrintDiff(res_1, res_2)
pkl_file_1.close()
pkl_file_2.close()