Classes | Public Types | Public Member Functions | Public Attributes | List of all members
Eigen::aligned_allocator< T > Class Template Reference

STL compatible allocator to use with types requiring a non standrad alignment. More...

#include <Memory.h>

Inheritance diagram for Eigen::aligned_allocator< T >:
Inheritance graph
[legend]

Classes

struct  rebind
 

Public Types

typedef std::ptrdiff_t difference_type
 
typedef Tpointer
 
typedef Treference
 
typedef std::size_t size_type
 
typedef T value_type
 

Public Member Functions

 aligned_allocator ()
 
 aligned_allocator (const aligned_allocator &other)
 
template<class U >
 aligned_allocator (const aligned_allocator< U > &other)
 
pointer allocate (size_type num, const void *=0)
 
void deallocate (pointer p, size_type)
 
 ~aligned_allocator ()
 

Public Attributes

const typedef Tconst_pointer
 
const typedef Tconst_reference
 

Detailed Description

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:

This can be controlled using the EIGEN_MAX_ALIGN_BYTES macro as documented there .

Example:

// Matrix4f requires 16 bytes alignment:
std::map< int, Matrix4f, std::less<int>,
aligned_allocator<std::pair<const int, Matrix4f> > > my_map_mat4;
// Vector3f does not require 16 bytes alignment, no need to use Eigen's allocator:
std::map< int, Vector3f > my_map_vec3;
See also
\blank TopicStlContainers.

Definition at line 878 of file Memory.h.

Member Typedef Documentation

◆ difference_type

template<class T >
typedef std::ptrdiff_t Eigen::aligned_allocator< T >::difference_type

Definition at line 882 of file Memory.h.

◆ pointer

template<class T >
typedef T* Eigen::aligned_allocator< T >::pointer

Definition at line 883 of file Memory.h.

◆ reference

template<class T >
typedef T& Eigen::aligned_allocator< T >::reference

Definition at line 885 of file Memory.h.

◆ size_type

template<class T >
typedef std::size_t Eigen::aligned_allocator< T >::size_type

Definition at line 881 of file Memory.h.

◆ value_type

template<class T >
typedef T Eigen::aligned_allocator< T >::value_type

Definition at line 887 of file Memory.h.

Constructor & Destructor Documentation

◆ aligned_allocator() [1/3]

template<class T >
Eigen::aligned_allocator< T >::aligned_allocator ( )
inline

Definition at line 895 of file Memory.h.

◆ aligned_allocator() [2/3]

template<class T >
Eigen::aligned_allocator< T >::aligned_allocator ( const aligned_allocator< T > &  other)
inline

Definition at line 897 of file Memory.h.

◆ aligned_allocator() [3/3]

template<class T >
template<class U >
Eigen::aligned_allocator< T >::aligned_allocator ( const aligned_allocator< U > &  other)
inline

Definition at line 900 of file Memory.h.

◆ ~aligned_allocator()

template<class T >
Eigen::aligned_allocator< T >::~aligned_allocator ( )
inline

Definition at line 902 of file Memory.h.

Member Function Documentation

◆ allocate()

template<class T >
pointer Eigen::aligned_allocator< T >::allocate ( size_type  num,
const void *  = 0 
)
inline

Definition at line 913 of file Memory.h.

◆ deallocate()

template<class T >
void Eigen::aligned_allocator< T >::deallocate ( pointer  p,
size_type   
)
inline

Definition at line 919 of file Memory.h.

Member Data Documentation

◆ const_pointer

template<class T >
const typedef T* Eigen::aligned_allocator< T >::const_pointer

Definition at line 884 of file Memory.h.

◆ const_reference

template<class T >
const typedef T& Eigen::aligned_allocator< T >::const_reference

Definition at line 886 of file Memory.h.


The documentation for this class was generated from the following file:


gtsam
Author(s):
autogenerated on Wed May 15 2024 15:27:35