diff options
Diffstat (limited to 'src/allocators/tcmalloc.py')
| -rw-r--r-- | src/allocators/tcmalloc.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/allocators/tcmalloc.py b/src/allocators/tcmalloc.py index ecd03e1..ce00df3 100644 --- a/src/allocators/tcmalloc.py +++ b/src/allocators/tcmalloc.py @@ -45,6 +45,11 @@ tcmalloc_nofs = TCMalloc("TCMalloc-NoFalsesharing", tcmalloc_align = TCMalloc("TCMalloc-Aligned", version="gperftools-2.7", - color="xkcd:navy") + color="xkcd:light blue") tcmalloc_align.LD_PRELOAD = f"{BUILDDIR}/align_to_cl.so {tcmalloc_align.LD_PRELOAD}" + +tcmalloc_cacheline_exclusive = TCMalloc("TCMalloc-Cacheline-Exclusive", + patches=["{patchdir}/tcmalloc_2.7_cacheline_exclusive.patch"], + version="gperftools-2.7", + color="xkcd:royal blue") |
