aboutsummaryrefslogtreecommitdiff
path: root/src/loop.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2019-02-15 15:24:10 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2019-02-15 15:24:10 +0100
commit59328f906cc03dad8c8324028b0ce1366cdc2565 (patch)
tree1f32acaaa8b5fc8c35ef83a3487575c455626ccd /src/loop.py
parent248aebf6b942b837baafb47f981c9b3459147770 (diff)
downloadallocbench-59328f906cc03dad8c8324028b0ce1366cdc2565.tar.gz
allocbench-59328f906cc03dad8c8324028b0ce1366cdc2565.zip
update loop description
Diffstat (limited to 'src/loop.py')
-rw-r--r--src/loop.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/loop.py b/src/loop.py
index 0a30f6b..7e23cd7 100644
--- a/src/loop.py
+++ b/src/loop.py
@@ -6,9 +6,8 @@ from src.benchmark import Benchmark
class Benchmark_Loop(Benchmark):
def __init__(self):
self.name = "loop"
- self.descrition = """This benchmark makes n allocations in t concurrent
- threads. How allocations are freed can be changed
- with the benchmark version""",
+ self.descrition = """This benchmark allocates and frees n blocks in t concurrent
+ threads."""
self.cmd = "loop{binary_suffix} {nthreads} 1000000 {maxsize}"