diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-03-06 13:41:04 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-03-06 13:41:04 +0100 |
| commit | d488ec9699ec252aeaddb9510d45c2ac673a7de6 (patch) | |
| tree | 29aee257666e1d959c75984195166a0818d9a2a1 | |
| parent | 84e7d30605aa4d7ba5d31717e4a334814df32bff (diff) | |
| download | allocbench-d488ec9699ec252aeaddb9510d45c2ac673a7de6.tar.gz allocbench-d488ec9699ec252aeaddb9510d45c2ac673a7de6.zip | |
bump speedymalloc version
| -rw-r--r-- | src/allocators/speedymalloc.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/allocators/speedymalloc.py b/src/allocators/speedymalloc.py index 3e54b29..48b19cb 100644 --- a/src/allocators/speedymalloc.py +++ b/src/allocators/speedymalloc.py @@ -25,7 +25,7 @@ See src/bumpptr.c for the actual implementation. from src.artifact import GitArtifact from src.allocator import Allocator -VERSION = "4d965cd9b601d291117c11e013aa4600f694585d" +VERSION = "7b73dc51bba043d6b3269dd497263f03d52fc1ca" class Speedymalloc(Allocator): """ Speedymalloc definition for allocbench""" @@ -58,3 +58,7 @@ speedymalloc_4095_sc_32 = Speedymalloc("speedymalloc_dont_madv_willneed", options = {"cache_bins": 4095, "cache_bin_seperation": 32}, version=VERSION) + +speedymalloc_no_glab = Speedymalloc("speedymalloc_dont_madv_willneed", + options = {"max_local_allocation_buffer_size": 0}, + version=VERSION) |
