aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-04-12 15:48:52 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-04-12 15:48:52 +0200
commit58e6157f7e0b356d57dc9499435ca98154a86217 (patch)
tree7064022405bf83b6729653389f5bd60a8bdeca5d
parentfa2155ee1202cf383780d811ca388f25306bc1c0 (diff)
downloadallocbench-58e6157f7e0b356d57dc9499435ca98154a86217.tar.gz
allocbench-58e6157f7e0b356d57dc9499435ca98154a86217.zip
bump speedymalloc
-rw-r--r--src/allocators/speedymalloc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/allocators/speedymalloc.py b/src/allocators/speedymalloc.py
index dfeb198..8689dd7 100644
--- a/src/allocators/speedymalloc.py
+++ b/src/allocators/speedymalloc.py
@@ -1,4 +1,4 @@
-# Copyright 2018-2019 Florian Fischer <florian.fl.fischer@fau.de>
+# Copyright 2018-2020 Florian Fischer <florian.fl.fischer@fau.de>
#
# This file is part of allocbench.
#
@@ -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 = "dc8b2430ed55702abeb0fab1b931141b9d6f7128"
+VERSION = "443e12e0413c843a1df331c87992bff3f6be6be2"
class Speedymalloc(Allocator):