- 08 Mar, 2018 3 commits
-
-
Swann Perarnau authored
create -> register purge -> deregister create is a name we are using elsewhere for dynamic allocation. And those names match better what we are doing.
-
Swann Perarnau authored
Implement 1d tiling and simple binding support. The idea is to allow an application to explain the AML how data should be organized, and to be able to reuse this info when dealing with memory movement. The current interfaces are not great, but they work.
-
Swann Perarnau authored
Use a gitignore trick to ignore all files that don't have an extension. That will cover all binary files generated by make on Linux.
-
- 01 Feb, 2018 3 commits
-
-
Swann Perarnau authored
The jemalloc subpackage install rule is too big, and includes stuff that we don't need to add to the target system. This patch makes sure we only install the valuable stuff. We also correct the pkg-config data to match the new installs.
-
Swann Perarnau authored
Using both --with-jemalloc-prefix=jemk_ and --with-install-suffix=-aml ensures that the libjemalloc we build for our internal use has unique functions names and library names. This patch fixes a problem with the libtool configuration, where we had to link a static jemalloc library into the shared aml library to make everything work. Instead, we can now use the proper LIBADD variables with the unique library. Note that with this patch the `make check` target requires a `make install` beforehand.
-
Swann Perarnau authored
This is the result of countless interations on the internal design of the various building blocks we want to have for this library. At this point, I hope that this is stable enough. There are still some tweaks needed here and there, but the core is implemented AND tested. Some of the design decisions made: - all functions are public, but most are not meant to be used directly. - intended public functions take "generic" structs as arguments - intended actual implementations rely on more complex structures, with their own family of data and operators. - split all objects between data and operator structs. Exemple: - area.c and arena.c are generic dispatch functions to call the actual, specific implementations. - struct aml_area and struct_aml_arena are the same. Currently implement: - 2 area types: posix (malloc) and linux (numa). - 1 arena type: jemalloc
-
- 25 Oct, 2017 1 commit
-
-
Swann Perarnau authored
-
- 06 Oct, 2017 1 commit
-
-
Swann Perarnau authored
This is a redesign of the library, as a hierarchy of core objects implementing its various features. The idea is to create an API that is as flexible and customizable as possible, by exposing as much as possible of its internals, so that users can create customs versions easily. We also move away from memkind as a possible backend, opting instead to vendor the jemalloc interface and implement everything ourselves on top of that. We expect to start building the low-level pieces using hwloc as a backend soon, at least in terms of accessing available devices.
-
- 23 Aug, 2017 2 commits
-
-
Swann Perarnau authored
libnuma will sometimes fail for our test cases if NUMA node 0 is not available on the system. Use "all" instead as the default, as it will always work.
-
Swann Perarnau authored
gcc was complaining about type mismatch between the argv declaration and the prototype of aml_init. This is fixed by declaring argc and argv properly in stream_vanilla main.
-
- 22 Aug, 2017 1 commit
-
-
Swann Perarnau authored
This is a rewrite of the existing code into a memory library exposing more of its internal abstractions. This refactoring is required to: - make progress faster by focusing on the core new features - abstract more of the underlying components and expose those abstractions - build upon existing libraries (memkind) for the internal stuff. Memkind is used as a crutch here, we do not intend to use it in the long term, as some of its internal are opposed to what we want (topology management in particular). Nevertheless, it currently provides a good allocator internally, and decent access to deep memory, for now. Over time, we figured out that the best way to build this API was to create several layers of APIs, each with more abstractions over the devices. At the same time, we want each layer to expose its internal mechanisms, so that a user can customize any of them. This is why we end up with areas and dma engines, and we will add in the future other stuff, like data decomposition and distribution methods, as well as direct support for "pipelining".
-
- 21 Aug, 2017 1 commit
-
-
Swann Perarnau authored
preprocessor macro ifndef takes a single argument.
-
- 16 Aug, 2017 1 commit
-
-
Swann Perarnau authored
Based on github.com/gitignore project, CC0-1.0
-
- 27 Feb, 2017 1 commit
-
-
Swann Perarnau authored
This is a mmap-based, non-transparent version of the library, with a unit test checking that we can call move_pages properly from it. No node tracking performed. Memcpy not working.
-
- 21 Feb, 2017 1 commit
-
-
Swann Perarnau authored
I'm quite convinced that this is not the appropriate way of working with this stuff but I prefer to checkpoint everything before a wipeout.
-
- 30 Jun, 2016 1 commit
-
-
Swann Perarnau authored
This is the first working version of the library. It does very little: - only numa support - one allocation per node only - limited tests - limited set of functions Nevertheless, this gives a good idea of what the API should look like, and the kind of benchmarks we can write with it.
-
- 23 Jun, 2016 1 commit
-
-
Swann Perarnau authored
-