Coder Social home page Coder Social logo

ccontrol's Introduction

CControl: a software cache partitionning tool

CControl (Cache Control) is a Linux kernel module and accompanying libraries to control the amount of memory cache data structures inside an application can use.

TL;DR

Because a complete explanation of CControl requires knowledge of OS and hardware cache internals, you should probably read what follows. For the lazy bastards, here is one short explanation:

CControl provides a software cache partitioning library for
Linux by implementing page coloring in kernel. The standard
./configure; make; make install should work. Look at ccontrol.h
for API doc.

You must be root to install and load/unload ccontrol. This requirement is lifted once ccontrol is loaded in kernel.

Background Knowledge

During execution, a program makes a number of accesses to physical memory (RAM). To increase global performance, small and fast memory banks called caches are placed on the path between CPU and RAM. These caches store recently accessed memory locations.

To understand how ccontrol work and what can (and cannot) be done with it, some knowledge of cache internals are required.

  • Virtual memory: on most architectures/OS a process only manipulates virtual memory. Physical memory (RAM) is abstracted and shared by several processes at the same time, but each process can only touch its own memory. The OS maintains the mapping between virtual and physical memory, with the help of dedicated hardware to speed things up.

  • Pages: both physical and virtual memory are split into pages, contiguous blocks of memory. This pages are traditionally of 4 KB in size.

  • Indexing: a cache identifies the memory locations accessed by computing a hash function over their address (the index). Since both a virtual address and a physical one can be used to refer to the same memory location, caches are either virtually or physically indexed.

  • Lines: saving memory one byte or one word at a time would be completely inefficient for a cache. Instead, it saves a set of contiguous bytes in memory under the same index. This set is called a line, and on most architectures it is either 32 or 64 bytes wide.

  • Associativity: each time the CPU accesses memory, the cache must find if the line in question is already known. Three configurations for this search can be found nowadays:

    • direct-mapped, an address has only one designated line it can be saved to. Very fast to search, but not very efficient regarding some memory access patterns.
    • fully-associative, an address can be saved in all the cache. Very slow to search but very efficient from a memory-optimization point of view.
    • set-associative, a mix of the two. An address in memory can be saved in a set of lines in cache, allowing more flexibility regarding the memory access patterns benefiting from the cache and costing less than a fully-associative one.
  • LRU: since a cache is smaller than RAM, each time a new memory location is accessed (and thus a new line fetched) an old line must be evicted (of course it only applies to associative caches). The most widely-known and efficient algorithm to do that is Least-Recently-Used.

Page Coloring

The goal of ccontrol is to split the cache in several parts, allowing the user to give some of its data structures more cache than others. Since hardware cache partitioning is restricted to a few specific architectures, ccontrol does that in software. The method used is called page coloring and is quite known is the OS community.

For any cache that is _not_ fully-associative, a color is
defined as the set of pages that occupy the same associative
sets.

Put simply, in a set-associative cache, multiple lines map to the same associative set. Since these lines are also part of pages, we can group these pages by the associative sets they map to.

In the case of physically indexed caches, the OS is sole responsible for the physical pages (and thus the colors) that a process touches, as it is in charge of the mapping between virtual and physical pages.

CControl inject code inside the Linux kernel (module), reserve a part of the RAM for itself, identify the colors of each page and redistribute them to applications. The only caveat is that an application can specify the colors it wants to get back.

By limiting the colors available to the application, you limit the amount of cache available. You can also split the cache in disjoint sets of colors and give some data structures their own partition to avoid cache pollution by bad access patterns.

Using CControl

First, as root, load the kernel module:

ccontrol load --mem 1G

This will reserve 1 GB of RAM for ccontrol and initialize page coloring. You can look at dmesg for additional info.

If your application use the ccontrol library (linked with libccontrol), you're done. Otherwise, you can limit the total amount of cache used by dynamically allocated data structures by using:

ccontrol exec --ld-preload ./myapp

When using LD_PRELOAD, all standard memory allocation functions are redirected to a single cache partition, of which you must specify the size (in virtual memory) and the color set to use: corresponding options are --pset and --size.

The pset option is a bitmask: a comma separated list of values. For example --pset=0,1,8-10 will activate colors 0,1,8,9 and 10.

The size explains to ccontrol how much memory it should ask to the kernel module. This must be lower than the amount of RAM allocated and fit the amount of pages corresponding to the pset.

Once you're done with ccontrol, unload the module:

ccontrol unload

If you want additional info on the cache characteristics detected by ccontrol, you can use:

ccontrol info

Library

The libccontrol provides a easy interface to the cache control facilities. It works as a custom memory allocation library: you create a zone by asking the kernel module for a set of colored pages. But first, you need a bookkeeping structure:

ccontrol.h

/* allocates a zone */
struct ccontrol_zone * ccontrol_new(void);

/* frees a zone */
void ccontrol_delete(struct ccontrol_zone *);

You then ask for zone creation:

/* Creates a new memory colored zone.
 * Needs a color set and a total size.
 * WARNING: the memory allocator needs space for itself, make
 * sure size is enough for him as well.
 * Return 0 on success. */
int ccontrol_create_zone(struct ccontrol_zone *, color_set *, size_t);

/* Destroys a zone.
 * Any allocation done inside it will no longer work.
 */
int ccontrol_destroy_zone(struct ccontrol_zone *);

Then you allocate memory inside a zone:

/* Allocates memory inside the zone. Similar to POSIX malloc
 */
void *ccontrol_malloc(struct ccontrol_zone *, size_t);

/* Frees memory from the zone. */
void ccontrol_free(struct ccontrol_zone *, void *);

/* realloc memory */
void *ccontrol_realloc(struct ccontrol_zone *, void *, size_t);

The color_set structure is a bitmask indicating authorized colors:

colorset.h

color_set c;
COLOR_ZERO(&c);
COLOR_SET(1,&c);
COLOR_CLR(1,&c);
if(COLOR_ISSET(1,&c)) { }

Installing

The classical ./autogen.sh ; ./configure ; make ; make install should work. This project has no dependencies except for the Linux kernel headers necessary to compile the kernel module and the autotools (autoconf,automake,libtool).

The only supported install path (prefix) is /usr with root privileges.

The kernel module install rule does not understand the install prefix, but there is a special variable named INSTALL_MOD_PATH, so the following will work:

INSTALL_MOD_PATH=prefix make install

This is not recommended anyway, as modprobe will not find the module...

Bugs and Limitations

This tool assume that physical lines of memory are distributed by round robin across all associate-sets. Given the cache size C, the associativity A and the page size P, ccontrol computes the number of colors as C/AP. Then, the module consider that page 0 is of color 0, page 1 of colors 1 and so on (a simple modulo gives us the color of each page).

Some architectures do not fit that description. Lines are not distributed in round robin, or the number of colors is more complicated than that. If you use ccontrol on such architecture, the real colors of pages given by ccontrol to a process will be wrong. Unfortunately, Intel Sandy Bridge and newer cores are among such architectures. While we are trying to find the right configuration, documentation on such detail in an architecture is scarce. I'll buy a drink to anyone who can find the exact hash function, thus the good configuration of colors and physical-to-color conversion used in Nehalem EX, Westmere or Sandy Brigde (if you are curious about what exactly is going on, have a look at NUCA caches).

The number of pages of a given color is determined by the amount of RAM you give to the module. Since ccontrol does not support swapping, this number of pages also determines the maximal size of an allocation in a colored zone. Be careful not asking too much memory with too few pages available.

FAQ

  • modprobe error: Module ccontrol not found.

    • The two most common reasons are a missing depmod after the first make install, and a system erasing the install path after reboot. While the Makefile coming from the kernel should do a module dependency update after install, sometimes it is not taken into account. Launching depmod as root after make install can solve this issue.

    • If your system is configured so that the standard module install path is recreated after each reboot, the module will not survive a system shutdown (this issue is present on recent Ubuntu for exemple). Until ccontrol includes a dkms configuration and install rules, you must reinstall the module each time. Sorry...

References

This tool was the subject of a publication in the International Conference on Supercomputing (ICS) in 2011. You can find the paper here. This paper describe several possible uses of ccontrol to measure and optimize the cache performance of HPC applications.

If you want to cite this paper:

Swann Perarnau, Marc Tchiboukdjian, and Guillaume Huard.
Controlling cache utilization of hpc applications.
In International Conference on Supercomputing (ICS), 2011.

You can also use this Bibtex:

@inproceedings{ics11,
	title = {Controlling Cache Utilization of HPC Applications},
	author = {Swann Perarnau and Marc Tchiboukdjian and Guillaume Huard},
	booktitle = {International Conference on Supercomputing (ICS)},
	year = {2011}
}

ccontrol's People

Contributors

perarnau avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.