aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/BA_allocators.py
blob: 5ac8870d39f4427dfe7f670394ba2f1bb31508c2 (plain)
1
2
3
4
5
6
from src.allocators.glibc import glibc, glibc_notc
from src.allocators.tcmalloc import tcmalloc
from src.allocators.jemalloc import jemalloc
from src.allocators.hoard import hoard

allocators = [glibc, glibc_notc, tcmalloc, jemalloc, hoard]