diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-02-19 18:13:39 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-02-19 18:13:39 +0100 |
| commit | b11b0b130a15f863ba1e0b851033a9e76cc4a8f2 (patch) | |
| tree | b88ebea07b37df8bd1d037c2f55b640a2c8dbe9f | |
| parent | 3b1e4b4bfd286c32be0a1413d22ddc991dc00d70 (diff) | |
| download | allocbench-b11b0b130a15f863ba1e0b851033a9e76cc4a8f2.tar.gz allocbench-b11b0b130a15f863ba1e0b851033a9e76cc4a8f2.zip | |
fix tcmalloc_gperftools_cacheline_exclusive
| -rw-r--r-- | src/allocators/tcmalloc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/tcmalloc.py b/src/allocators/tcmalloc.py index e52ecfa..97c94e2 100644 --- a/src/allocators/tcmalloc.py +++ b/src/allocators/tcmalloc.py @@ -82,7 +82,7 @@ tcmalloc_gperftools_align = TCMallocGperftools("TCMalloc-Aligned", tcmalloc_gperftools_align.LD_PRELOAD = f"{BUILDDIR}/align_to_cl.so {tcmalloc_gperftools_align.LD_PRELOAD}" -tcmalloc_gperftools_cacheline_exclusive = TCMalloc("TCMalloc-Cacheline-Exclusive", +tcmalloc_gperftools_cacheline_exclusive = TCMallocGperftools("TCMalloc-Cacheline-Exclusive", patches=["{patchdir}/tcmalloc_2.7_cacheline_exclusive.patch"], version="gperftools-2.7", color="xkcd:royal blue") |
