LSST Applications g0265f82a02+c6dfa2ddaf,g1162b98a3f+b2075782a9,g2079a07aa2+1b2e822518,g2bbee38e9b+c6dfa2ddaf,g337abbeb29+c6dfa2ddaf,g3ddfee87b4+a60788ef87,g50ff169b8f+2eb0e556e8,g52b1c1532d+90ebb246c7,g555ede804d+a60788ef87,g591dd9f2cf+ba8caea58f,g5ec818987f+864ee9cddb,g858d7b2824+9ee1ab4172,g876c692160+a40945ebb7,g8a8a8dda67+90ebb246c7,g8cdfe0ae6a+4fd9e222a8,g99cad8db69+5e309b7bc6,g9ddcbc5298+a1346535a5,ga1e77700b3+df8f93165b,ga8c6da7877+aa12a14d27,gae46bcf261+c6dfa2ddaf,gb0e22166c9+8634eb87fb,gb3f2274832+d0da15e3be,gba4ed39666+1ac82b564f,gbb8dafda3b+5dfd9c994b,gbeb006f7da+97157f9740,gc28159a63d+c6dfa2ddaf,gc86a011abf+9ee1ab4172,gcf0d15dbbd+a60788ef87,gdaeeff99f8+1cafcb7cd4,gdc0c513512+9ee1ab4172,ge79ae78c31+c6dfa2ddaf,geb67518f79+ba1859f325,geb961e4c1e+f9439d1e6f,gee10cc3b42+90ebb246c7,gf1cff7945b+9ee1ab4172,w.2024.12
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
lsst::shapelet::MatrixBuilderWorkspace< T > Class Template Reference

Reusable, shareable workspace for MatrixBuilder. More...

#include <MatrixBuilder.h>

Public Types

typedef Eigen::Map< Eigen::Array< T, Eigen::Dynamic, Eigen::Dynamic > > Matrix
 Workspace matrix type.
 
typedef Eigen::Map< Eigen::Array< T, Eigen::Dynamic, 1 > > Vector
 Workspace vector type.
 

Public Member Functions

 MatrixBuilderWorkspace (int size)
 Allocate a block of memory with the given number of elements (of type T).
 
 MatrixBuilderWorkspace (MatrixBuilderWorkspace const &other)
 Copy the current state of the workspace, allowing multiple MatrixBuilders to start their workspace arrays at the same point in memory and hence share workspace.
 
int getRemaining () const
 Return the size (in units of sizeof(T)) of the unused memory in the workspace.
 
Matrix makeMatrix (int rows, int cols)
 Create a matrix from the workspace memory, and increment the current location accordingly.
 
Vector makeVector (int size)
 Create a vector from the workspace memory, and increment the current location accordingly.
 
void increment (int size)
 Manually increment the current location.
 
ndarray::Manager::Ptr getManager () const
 Return the manager object that owns the block of memory.
 

Detailed Description

template<typename T>
class lsst::shapelet::MatrixBuilderWorkspace< T >

Reusable, shareable workspace for MatrixBuilder.

Multiple MatrixBuilders are often used together to evaluate a multi-shapelet model, and in this case it's more efficient for the MatrixBuilders to use the same memory for temporary arrays rather than have them each allocate their own workspace. At other times, it may be useful to use one workspace for a sequence of throwaway MatrixBuilders, to avoid unnecessary memory allocations. This class manages the memory used for a MatrixBuilder's workspace arrays, and provides methods for tracking it and sharing it between multple MatrixBuilders. See MatrixBuilderFactory for examples.

MatrixBuilderWorkspace holds a ndarray::Manager::Ptr that "owns" the block of memory. This is passed on to any MatrixBuilders constructed with it, ensuring that the block of memory remains alive with the MatrixBuilder even if the workspace object goes out of scope - so it is not necessary to keep the workspace object alive manually for the duration of its users.

In addition, MatrixBuilderWorkspace tracks both the current point in memory, and increments this as workspace matrices and vectors are created from it. It also checks that any created arrays do not exceed the bounds of the allocated memory. In order to share workspace memory between MatrixBuilders, the workspace object is simply copied - copied objects share the same memory, but maintain different "current" pointers, and hence create arrays from the same block of memory.

Definition at line 188 of file MatrixBuilder.h.

Member Typedef Documentation

◆ Matrix

template<typename T >
typedef Eigen::Map< Eigen::Array<T,Eigen::Dynamic,Eigen::Dynamic> > lsst::shapelet::MatrixBuilderWorkspace< T >::Matrix

Workspace matrix type.

Definition at line 191 of file MatrixBuilder.h.

◆ Vector

template<typename T >
typedef Eigen::Map< Eigen::Array<T,Eigen::Dynamic,1> > lsst::shapelet::MatrixBuilderWorkspace< T >::Vector

Workspace vector type.

Definition at line 192 of file MatrixBuilder.h.

Constructor & Destructor Documentation

◆ MatrixBuilderWorkspace() [1/2]

template<typename T >
lsst::shapelet::MatrixBuilderWorkspace< T >::MatrixBuilderWorkspace ( int size)
explicit

Allocate a block of memory with the given number of elements (of type T).

◆ MatrixBuilderWorkspace() [2/2]

template<typename T >
lsst::shapelet::MatrixBuilderWorkspace< T >::MatrixBuilderWorkspace ( MatrixBuilderWorkspace< T > const & other)
inline

Copy the current state of the workspace, allowing multiple MatrixBuilders to start their workspace arrays at the same point in memory and hence share workspace.

See MatrixBuilderFactory for an example.

Definition at line 203 of file MatrixBuilder.h.

203 :
204 _current(other._current),
205 _end(other._end),
206 _manager(other._manager)
207 {}

Member Function Documentation

◆ getManager()

template<typename T >
ndarray::Manager::Ptr lsst::shapelet::MatrixBuilderWorkspace< T >::getManager ( ) const
inline

Return the manager object that owns the block of memory.

Definition at line 224 of file MatrixBuilder.h.

224{ return _manager; }

◆ getRemaining()

template<typename T >
int lsst::shapelet::MatrixBuilderWorkspace< T >::getRemaining ( ) const
inline

Return the size (in units of sizeof(T)) of the unused memory in the workspace.

Definition at line 210 of file MatrixBuilder.h.

210{ return _end - _current; }

◆ increment()

template<typename T >
void lsst::shapelet::MatrixBuilderWorkspace< T >::increment ( int size)

Manually increment the current location.

◆ makeMatrix()

template<typename T >
Matrix lsst::shapelet::MatrixBuilderWorkspace< T >::makeMatrix ( int rows,
int cols )

Create a matrix from the workspace memory, and increment the current location accordingly.

◆ makeVector()

template<typename T >
Vector lsst::shapelet::MatrixBuilderWorkspace< T >::makeVector ( int size)

Create a vector from the workspace memory, and increment the current location accordingly.


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