On Mon, Dec 21, 2015 at 6:59 AM, Glen Newton <
glen....@gmail.com> wrote:
> I just encountered SuperMalloc[1] on HackerNews[2]. I don't know too much
> about such things, but it does look interesting:
>
>> "SuperMalloc is an implementation of malloc(3) originally designed for X86
>> Hardware Transactional Memory (HTM). It turns out that the same design
>> decisions also make it fast even without HTM. We compared SuperMalloc to
>> DLmalloc, JEmalloc, Hoard, and TBBmalloc, For the malloc-test benchmark,
>> with 1 thread SuperMalloc is about 2.1 times faster than the best
>> alternatives, with 8 threads and HTM SuperMalloc is 2.75 times faster, and
>> on 32 threads without HTM SuperMalloc is 3.4 times faster. SuperMalloc
>> generally compares favorably with the other allocators on speed,
>> scalability, speed variance, memory footprint, and code size."[3]
>
>
> Is this something that might be useful for Go?