Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
allocbench
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Fischer
allocbench
Commits
af9a1be4
Commit
af9a1be4
authored
5 years ago
by
Florian Fischer
Browse files
Options
Downloads
Patches
Plain Diff
fix all allocators collection
parent
f20c5285
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/allocators/all.py
+3
-10
3 additions, 10 deletions
src/allocators/all.py
with
3 additions
and
10 deletions
src/allocators/all.py
+
3
−
10
View file @
af9a1be4
...
...
@@ -5,18 +5,11 @@ 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
mesh
=
Alloc
(
"
Mesh
"
,
sources
=
Alloc_Src
(
"
Mesh
"
,
retrieve_cmds
=
[
"
git clone https://github.com/plasma-umass/Mesh
"
],
reset_cmds
=
[
"
git stash
"
]),
LD_PRELOAD
=
"
{srcdir}/libmesh.so
"
,
build_cmds
=
[
"
cd {srcdir}; git submodule update --init
"
,
"
cd {srcdir}; ./configure
"
,
"
cd {srcdir}; make -j 4
"
,
"
mkdir {dir}
"
])
allocators
=
[
*
src
.
allocators
.
glibcs
.
allocators
,
tcmalloc
,
tcmalloc_nofs
,
jemalloc
,
hoard
,
mesh
,
supermalloc
,
llalloc
]
jemalloc
,
hoard
,
mesh
,
supermalloc
,
scalloc
,
llalloc
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment