diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-04-15 11:43:12 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-04-15 11:43:12 +0200 |
| commit | f8363969e1dcc0f64bb52a636a56f1d93fe122e4 (patch) | |
| tree | 5774b12e605e0dadd3888e3c772ce1e0702a5836 | |
| parent | 35342880f45458df0f9e59d743c55827904a67cb (diff) | |
| download | allocbench-f8363969e1dcc0f64bb52a636a56f1d93fe122e4.tar.gz allocbench-f8363969e1dcc0f64bb52a636a56f1d93fe122e4.zip | |
fix tcmalloc in no false sharing allocator bundle
| -rw-r--r-- | src/allocators/no_falsesharing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/no_falsesharing.py b/src/allocators/no_falsesharing.py index 1e04305..77310b3 100644 --- a/src/allocators/no_falsesharing.py +++ b/src/allocators/no_falsesharing.py @@ -16,7 +16,7 @@ # along with allocbench. """Collection containing all no falsesahring patches""" -from src.allocators.tcmalloc import tcmalloc, tcmalloc_nofs +from src.allocators.tcmalloc import tcmalloc_gperftools, tcmalloc_gperftools_nofs from src.allocators.glibc import glibc, glibc_nofs, glibc_nofs_fancy allocators = [ |
