Flow123d  DF_patch_fe_data_tables-5938e3d
Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | Friends | List of all members
ArenaVec< T > Class Template Reference

#include <arena_resource.hh>

Inheritance diagram for ArenaVec< T >:
Inheritance graph
[legend]
Collaboration diagram for ArenaVec< T >:
Collaboration graph
[legend]

Public Types

typedef Eigen::Matrix< T, Eigen::Dynamic, 1 > VecData
 Type definition. More...
 
typedef Eigen::Array< T, Eigen::Dynamic, 1 > ArrayData
 

Public Member Functions

 ArenaVec ()
 Default constructor, set invalid data pointer. More...
 
 ArenaVec (T scalar_val)
 
 ArenaVec (size_t data_size, AssemblyArena &arena)
 
 ArenaVec (const ArenaVec< T > &other)
 Copy constructor. More...
 
Eigen::Map< VecDataeigen_map ()
 
const Eigen::Map< VecDataeigen_map () const
 Smae as previous but with const modifier. More...
 
Eigen::Map< ArrayDataarray_map ()
 
const Eigen::Map< ArrayDataarray_map () const
 Smae as previous but with const modifier. More...
 
T * data_ptr ()
 Return data pointer (development method) More...
 
const T * data_ptr () const
 Smae as previous but return const pointer. More...
 
size_t data_size () const
 Getter for data_size_. More...
 
ArenaVec< T > sqrt () const
 
ArenaVec< T > inverse () const
 
ArenaVec< T > abs () const
 
T & operator() (std::size_t item)
 For development only. TODO remove. More...
 
const T & operator() (std::size_t item) const
 For development only. TODO remove. More...
 
ArenaVec< T > operator+ (const ArenaVec< T > &other) const
 
ArenaVec< T > operator- (const ArenaVec< T > &other) const
 
ArenaVec< T > operator* (T multi) const
 
ArenaVec< T > operator* (const ArenaVec< T > &other) const
 
ArenaVec< T > operator/ (T div_by) const
 
ArenaVec< T > operator/ (const ArenaVec< T > &other) const
 

Protected Member Functions

 ArenaVec (T *data_ptr, size_t data_size, AssemblyArena &arena)
 Constructor. Allows create ArenaVec from ArenaOVec. More...
 

Protected Attributes

T * data_ptr_
 Pointer to data array. More...
 
size_t data_size_
 Length of data array. More...
 
AssemblyArenaarena_
 Pointer to Arena. More...
 
scalar_val_
 Scalar value of T type. More...
 

Friends

class ArenaOVec< T >
 

Detailed Description

template<class T>
class ArenaVec< T >

Define vector allocated in Arena and aligned to SIMD size.

Definition at line 115 of file arena_resource.hh.

Member Typedef Documentation

◆ ArrayData

template<class T >
typedef Eigen::Array<T, Eigen::Dynamic, 1> ArenaVec< T >::ArrayData

Definition at line 119 of file arena_resource.hh.

◆ VecData

template<class T >
typedef Eigen::Matrix<T, Eigen::Dynamic, 1> ArenaVec< T >::VecData

Type definition.

Definition at line 118 of file arena_resource.hh.

Constructor & Destructor Documentation

◆ ArenaVec() [1/5]

template<class T >
ArenaVec< T >::ArenaVec ( )
inline

Default constructor, set invalid data pointer.

Definition at line 122 of file arena_resource.hh.

◆ ArenaVec() [2/5]

template<class T >
ArenaVec< T >::ArenaVec ( scalar_val)
inline

Constructor. Set scalar value

Definition at line 128 of file arena_resource.hh.

◆ ArenaVec() [3/5]

template<class T >
ArenaVec< T >::ArenaVec ( size_t  data_size,
AssemblyArena arena 
)
inline

Constructor. Set sizes and allocate data pointer

Definition at line 134 of file arena_resource.hh.

◆ ArenaVec() [4/5]

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

Copy constructor.

Definition at line 140 of file arena_resource.hh.

◆ ArenaVec() [5/5]

template<class T >
ArenaVec< T >::ArenaVec ( T *  data_ptr,
size_t  data_size,
AssemblyArena arena 
)
inlineprotected

Constructor. Allows create ArenaVec from ArenaOVec.

Definition at line 283 of file arena_resource.hh.

Member Function Documentation

◆ abs()

template<class T >
ArenaVec<T> ArenaVec< T >::abs ( ) const
inline

Definition at line 204 of file arena_resource.hh.

◆ array_map() [1/2]

template<class T >
Eigen::Map<ArrayData> ArenaVec< T >::array_map ( )
inline

Maps data pointer to Eigen Map of dimensions given data_size_ and returns it.

Definition at line 162 of file arena_resource.hh.

Here is the caller graph for this function:

◆ array_map() [2/2]

template<class T >
const Eigen::Map<ArrayData> ArenaVec< T >::array_map ( ) const
inline

Smae as previous but with const modifier.

Definition at line 168 of file arena_resource.hh.

◆ data_ptr() [1/2]

template<class T >
T* ArenaVec< T >::data_ptr ( )
inline

Return data pointer (development method)

Definition at line 174 of file arena_resource.hh.

Here is the caller graph for this function:

◆ data_ptr() [2/2]

template<class T >
const T* ArenaVec< T >::data_ptr ( ) const
inline

Smae as previous but return const pointer.

Definition at line 179 of file arena_resource.hh.

◆ data_size()

template<class T >
size_t ArenaVec< T >::data_size ( ) const
inline

Getter for data_size_.

Definition at line 184 of file arena_resource.hh.

Here is the caller graph for this function:

◆ eigen_map() [1/2]

template<class T >
Eigen::Map<VecData> ArenaVec< T >::eigen_map ( )
inline

Maps data pointer to Eigen Map of dimensions given data_size_ and returns it.

Definition at line 148 of file arena_resource.hh.

Here is the caller graph for this function:

◆ eigen_map() [2/2]

template<class T >
const Eigen::Map<VecData> ArenaVec< T >::eigen_map ( ) const
inline

Smae as previous but with const modifier.

Definition at line 154 of file arena_resource.hh.

◆ inverse()

template<class T >
ArenaVec<T> ArenaVec< T >::inverse ( ) const
inline

Definition at line 196 of file arena_resource.hh.

◆ operator()() [1/2]

template<class T >
T& ArenaVec< T >::operator() ( std::size_t  item)
inline

For development only. TODO remove.

Definition at line 213 of file arena_resource.hh.

◆ operator()() [2/2]

template<class T >
const T& ArenaVec< T >::operator() ( std::size_t  item) const
inline

For development only. TODO remove.

Definition at line 220 of file arena_resource.hh.

◆ operator*() [1/2]

template<class T >
ArenaVec<T> ArenaVec< T >::operator* ( const ArenaVec< T > &  other) const
inline

Definition at line 253 of file arena_resource.hh.

◆ operator*() [2/2]

template<class T >
ArenaVec<T> ArenaVec< T >::operator* ( multi) const
inline

Definition at line 245 of file arena_resource.hh.

◆ operator+()

template<class T >
ArenaVec<T> ArenaVec< T >::operator+ ( const ArenaVec< T > &  other) const
inline

Definition at line 225 of file arena_resource.hh.

◆ operator-()

template<class T >
ArenaVec<T> ArenaVec< T >::operator- ( const ArenaVec< T > &  other) const
inline

Definition at line 235 of file arena_resource.hh.

◆ operator/() [1/2]

template<class T >
ArenaVec<T> ArenaVec< T >::operator/ ( const ArenaVec< T > &  other) const
inline

Definition at line 271 of file arena_resource.hh.

◆ operator/() [2/2]

template<class T >
ArenaVec<T> ArenaVec< T >::operator/ ( div_by) const
inline

Definition at line 263 of file arena_resource.hh.

◆ sqrt()

template<class T >
ArenaVec<T> ArenaVec< T >::sqrt ( ) const
inline

Definition at line 188 of file arena_resource.hh.

Friends And Related Function Documentation

◆ ArenaOVec< T >

template<class T >
friend class ArenaOVec< T >
friend

Definition at line 289 of file arena_resource.hh.

Member Data Documentation

◆ arena_

template<class T >
AssemblyArena* ArenaVec< T >::arena_
protected

Pointer to Arena.

Definition at line 288 of file arena_resource.hh.

◆ data_ptr_

template<class T >
T* ArenaVec< T >::data_ptr_
protected

Pointer to data array.

Definition at line 286 of file arena_resource.hh.

◆ data_size_

template<class T >
size_t ArenaVec< T >::data_size_
protected

Length of data array.

Definition at line 287 of file arena_resource.hh.

◆ scalar_val_

template<class T >
T ArenaVec< T >::scalar_val_
protected

Scalar value of T type.

Definition at line 289 of file arena_resource.hh.


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