diff options
Diffstat (limited to 'src/benchmarks/lld.py')
| -rw-r--r-- | src/benchmarks/lld.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/benchmarks/lld.py b/src/benchmarks/lld.py index 3657896..b2da35b 100644 --- a/src/benchmarks/lld.py +++ b/src/benchmarks/lld.py @@ -204,6 +204,7 @@ import matplotlib.pyplot as plt from src.artifact import ArchiveArtifact from src.benchmark import Benchmark import src.facter +import src.plots from src.globalvars import summary_file_ext @@ -283,17 +284,17 @@ class BenchmarkLld(Benchmark): plt.clf() # self.export_stats_to_csv("VmHWM") - self.export_stats_to_csv("task-clock") + src.plots.export_stats_to_csv("task-clock") # self.export_stats_to_dataref("VmHWM") - self.export_stats_to_dataref("task-clock") + src.plots.export_stats_to_dataref("task-clock") - self.write_tex_table([{ + src.plots.write_tex_table([{ "label": "Runtime [ms]", "expression": "{task-clock}", "sort": "<" }], - filepostfix="table") + filepostfix="table") lld = BenchmarkLld() |
