#include <gromacs/utility/include/gromacs/utility/alignedallocator.h>
Policy class for configuring gmx::Allocator, to manage allocations of aligned memory for SIMD code.
|
using | is_always_equal = std::true_type |
| Stateless allocation policies are always equal.
|
|
void gmx::AlignedAllocationPolicy::free |
( |
void * |
p | ) |
|
|
static |
void * gmx::AlignedAllocationPolicy::malloc |
( |
std::size_t |
bytes | ) |
|
|
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: