#include <gromacs/utility/alignedallocator.h>
Policy class for configuring gmx::Allocator, to manage allocations of aligned memory for SIMD code.
static std::size_t |
alignment () |
Return the alignment size. | |
static void * | malloc (std::size_t bytes) |
Allocate memory aligned to alignment() bytes. More… | |
static void | free (void *p) |
Free aligned memory. More… | |
|
static |
|
static |
Allocate memory aligned to alignment() bytes.
- Parameters
-
bytes Amount of memory (bytes) to allocate. It is valid to ask for 0 bytes, which will return a non-null pointer that is properly aligned and padded (but that you should not use).
- Returns
- Valid pointer if the allocation worked, otherwise nullptr.
The memory will always be aligned to 128 bytes, which is our estimate of the longest cache lines on architectures currently in use. It will also be padded by the same amount at the end of the area, to help avoid false cache sharing.
- Note
- Memory allocated with this routine must be released with gmx::AlignedAllocationPolicy::free(), and absolutely not the system free().
The documentation for this class was generated from the following files:
Read more here: Source link