diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-24 14:51:21 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-06-24 14:51:21 +0200 |
| commit | 2d86e20f5a44aea66725686531463931f38aa2dc (patch) | |
| tree | b3e42e10e212aa61069775812cc821a2445a3b45 /src/allocators/hoard.py | |
| parent | 366c9e27b13e976ce26ec6a97c6796eb1cdca887 (diff) | |
| download | allocbench-2d86e20f5a44aea66725686531463931f38aa2dc.tar.gz allocbench-2d86e20f5a44aea66725686531463931f38aa2dc.zip | |
rework allocator definitions #2
bench.py no evals only if argument to -a is file path.
Otherwise it will check if "arg".py is found in src/allocators/
then it imports it.
Collection definitions must export a iterable member called allocators.
Allocator definitions must export a member named "arg".
Diffstat (limited to 'src/allocators/hoard.py')
| -rw-r--r-- | src/allocators/hoard.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/allocators/hoard.py b/src/allocators/hoard.py index f18fcb4..ded28e4 100644 --- a/src/allocators/hoard.py +++ b/src/allocators/hoard.py @@ -6,6 +6,7 @@ sources = src.allocator.Allocator_Sources("Hoard", retrieve_cmds=["git clone https://github.com/emeryberger/Hoard.git"], reset_cmds=["git stash"]) + class Hoard (src.allocator.Allocator): """Hoard definition for allocbench""" def __init__(self, name, **kwargs): @@ -16,3 +17,6 @@ class Hoard (src.allocator.Allocator): kwargs["patches"] = ["{patchdir}/hoard_make.patch"] super().__init__(name, **kwargs) + + +hoard = Hoard("Hoard") |
