aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-05-01 15:39:48 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-05-01 15:39:48 +0200
commitf7d8e0f2394287bfdb20a9a16494327f9de46f01 (patch)
tree056508391bc19e0ce569d9b3fcf06e108ec59b03
parent09238e19a147ced8b9eb481385c30f01d03a1c51 (diff)
downloadallocbench-f7d8e0f2394287bfdb20a9a16494327f9de46f01.tar.gz
allocbench-f7d8e0f2394287bfdb20a9a16494327f9de46f01.zip
bump speedymalloc, build the release version
-rw-r--r--src/allocators/speedymalloc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/allocators/speedymalloc.py b/src/allocators/speedymalloc.py
index 6d143c8..6fe202a 100644
--- a/src/allocators/speedymalloc.py
+++ b/src/allocators/speedymalloc.py
@@ -24,7 +24,7 @@ memory in speeds favor. Memory is mmapped per thread and never freed.
from src.artifact import GitArtifact
from src.allocator import Allocator
-VERSION = "33d05bda26fbb9cf6351b604b292af664e5f51b4"
+VERSION = "dd24b9d24c78c798df97ca5556ba248ccff97ca7"
class Speedymalloc(Allocator):
@@ -35,7 +35,7 @@ class Speedymalloc(Allocator):
def __init__(self, name, **kwargs):
- configuration = ""
+ configuration = "--buildtype=release "
for option, value in kwargs.get("options", {}).items():
configuration += f"-D{option}={value} "
@@ -73,7 +73,7 @@ speedymalloc_4095_sc_128 = Speedymalloc("speedymalloc_4095_sc_128",
version=VERSION)
speedymalloc_only_glab = Speedymalloc(
- "speedymalloc_no_glab",
+ "speedymalloc_only_glab",
options={"max_local_allocation_buffer_size": 0},
version=VERSION)