STL compatible allocator to use with types requiring a non standrad alignment.
More...
template<class T>
class Eigen::aligned_allocator< T >
STL compatible allocator to use with types requiring a non standrad alignment.
The memory is aligned as for dynamically aligned matrix/array types such as MatrixXd. By default, it will thus provide at least 16 bytes alignment and more in following cases:
- 32 bytes alignment if AVX is enabled.
- 64 bytes alignment if AVX512 is enabled.
This can be controlled using the EIGEN_MAX_ALIGN_BYTES
macro as documented there .
Example:
std::map< int, Matrix4f, std::less<int>,
std::map< int, Vector3f > my_map_vec3;
STL compatible allocator to use with types requiring a non standrad alignment.
Definition: Memory.h:879
- See also
- \blank TopicStlContainers.