diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-07-02 13:51:36 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-07-02 13:51:36 +0200 |
| commit | 4b46aeaf9ad58e943c3c9e8b6a0de0e19a51b73c (patch) | |
| tree | bac466f8da2e48a05f4436e991153f4141175e1a | |
| parent | d1a845568f654fee79959cde77dd3be93342a818 (diff) | |
| download | allocbench-4b46aeaf9ad58e943c3c9e8b6a0de0e19a51b73c.tar.gz allocbench-4b46aeaf9ad58e943c3c9e8b6a0de0e19a51b73c.zip | |
[speedymalloc] fix meson option names
| -rw-r--r-- | allocbench/allocators/speedymalloc.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/allocbench/allocators/speedymalloc.py b/allocbench/allocators/speedymalloc.py index c157cc7..7bfd51c 100644 --- a/allocbench/allocators/speedymalloc.py +++ b/allocbench/allocators/speedymalloc.py @@ -75,18 +75,18 @@ speedymalloc_no_madv_willneed = Speedymalloc( speedymalloc_4095_sc_32 = Speedymalloc("speedymalloc_4095_sc_32", options={ "cache_bins": 4095, - "cache_bin_seperation": 32 + "cache_bin_separation": 32 }, version=VERSION) speedymalloc_4095_sc_128 = Speedymalloc("speedymalloc_4095_sc_128", options={ "cache_bins": 4095, - "cache_bin_seperation": 128 + "cache_bin_separation": 128 }, version=VERSION) speedymalloc_no_glab = Speedymalloc( "speedymalloc_no_glab", - options={"max_local_allocation_buffer_size": -1}, + options={"max_lab_size": -1}, version=VERSION) |
