aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/espresso.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/espresso.py')
-rw-r--r--src/benchmarks/espresso.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/benchmarks/espresso.py b/src/benchmarks/espresso.py
index b06d823..0916c6c 100644
--- a/src/benchmarks/espresso.py
+++ b/src/benchmarks/espresso.py
@@ -1,15 +1,18 @@
+"""Definition of the espresso benchmark"""
+
import os
from src.benchmark import Benchmark
import src.globalvars
-class Benchmark_Espresso(Benchmark):
+class BenchmarkEspresso(Benchmark):
+ """TODO"""
def __init__(self):
self.name = "espresso"
- self.descrition = """TODO."""
self.cmd = "espresso{binary_suffix} {file}"
- self.args = {"file": [os.path.join(src.globalvars.benchsrcdir, self.name, "largest.espresso")]}
+ self.args = {"file": [os.path.join(src.globalvars.benchsrcdir, self.name,
+ "largest.espresso")]}
super().__init__()
@@ -40,4 +43,4 @@ class Benchmark_Espresso(Benchmark):
self.export_stats_to_dataref("VmHWM")
-espresso = Benchmark_Espresso() \ No newline at end of file
+espresso = BenchmarkEspresso()