blob: ccf48b8afc541a14a88745357be05c4a567eb72d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
allocators = [*src.allocators.glibcs.allocators, tcmalloc, tcmalloc_nofs,
jemalloc, hoard, mesh, supermalloc, scalloc, llalloc]
|