aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/all.py
blob: 9afacf797cf58c17efa6e3d7633b5dc46e50551b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from src.allocator import Allocator as Alloc
from src.allocator import Allocator_Sources as Alloc_Src

import src.allocators.glibcs
from src.allocators.tcmalloc import tcmalloc, tcmalloc_nofs
from src.allocators.jemalloc import jemalloc
from src.allocators.hoard import hoard
from src.allocators.mesh import mesh
from src.allocators.scalloc import scalloc
from src.allocators.supermalloc import supermalloc
from src.allocators.llalloc import llalloc
from src.allocators.tbbmalloc import tbbmalloc


allocators = [*src.allocators.glibcs.allocators, tcmalloc, tcmalloc_nofs,
              jemalloc, hoard, mesh, supermalloc, scalloc, llalloc, tbbmalloc]