aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-04-28 15:48:36 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-04-28 15:48:36 +0200
commit6fc5d5fc546fc11f35ac3fcafe41641ba3734413 (patch)
treebb3ea9504f34bda318a38e7112ffe1aa90eed296
parent08db521ad4ac9718a1a41e1c32b22f34c123d33a (diff)
downloadallocbench-6fc5d5fc546fc11f35ac3fcafe41641ba3734413.tar.gz
allocbench-6fc5d5fc546fc11f35ac3fcafe41641ba3734413.zip
bump speedymalloc version
-rw-r--r--src/allocators/speedymalloc.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/allocators/speedymalloc.py b/src/allocators/speedymalloc.py
index 44ac94a..6d143c8 100644
--- a/src/allocators/speedymalloc.py
+++ b/src/allocators/speedymalloc.py
@@ -24,11 +24,11 @@ memory in speeds favor. Memory is mmapped per thread and never freed.
from src.artifact import GitArtifact
from src.allocator import Allocator
-VERSION = "c1e61e6a4c9ed24de8dd18dd29037dea89668b98"
+VERSION = "33d05bda26fbb9cf6351b604b292af664e5f51b4"
class Speedymalloc(Allocator):
- """ Speedymalloc definition for allocbench"""
+ """Speedymalloc definition for allocbench"""
sources = GitArtifact("speedymalloc",
"https://gitlab.cs.fau.de/flow/speedymalloc.git")
@@ -85,7 +85,3 @@ speedymalloc_no_glab = Speedymalloc(
# speedymalloc_rseq = Speedymalloc(
# "speedymalloc_rseq",
# version="e1549fa2a2833deba0ba53504a6c67ee31a0e42a")
-
-speedymalloc_thread_free = Speedymalloc(
- "speedymalloc_thread_free",
- version='c57e2f0ebb0326eb2d12570e03595e30896a2474')