aboutsummaryrefslogtreecommitdiff
path: root/src/benchmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmark.py')
-rw-r--r--src/benchmark.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/benchmark.py b/src/benchmark.py
index a0da6a0..4de05e3 100644
--- a/src/benchmark.py
+++ b/src/benchmark.py
@@ -9,7 +9,7 @@ import pickle
import shutil
import subprocess
-from src.common_targets import common_targets
+from src.targets import targets
class Benchmark (object):
@@ -20,7 +20,7 @@ class Benchmark (object):
"measure_cmd" : "perf stat -x, -d",
"analyse_cmd" : "memusage -p {} -t",
"cmd" : "true",
- "targets" : common_targets,
+ "targets" : targets,
}
def __init__(self):