casacore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
casacore::LatticeCache< T > Class Template Reference

a class for caching image access via tiles More...

#include <LatticeCache.h>

Public Member Functions

 LatticeCache (Lattice< T > &image, Int cacheSize, IPosition tileShape, Vector< Float > &tileOverlap, Bool additive)
 Constructor: cachesize in units of T. More...
 
 LatticeCache (const LatticeCache< T > &other)
 
LatticeCache< T > & operator= (const LatticeCache< T > &other)
 
virtual ~LatticeCache ()
 
Array< T > & tile (IPosition &cacheLoc, const IPosition &tileLoc, Bool discard=True)
 Return the tile for a given location. More...
 
Array< T > & tile (const IPosition &tileLoc, Bool discard=True)
 
const Array< T > & tile (const IPosition &tileLoc)
 const version is needed More...
 
IPositioncacheLocation (IPosition &cacheLoc, const IPosition &tileLoc)
 Return the IPosition for the start of this tile. More...
 
virtual void showCacheStatistics (ostream &os)
 Show the statistics of cache access. More...
 
virtual void clearCacheStatistics ()
 Clear the statistics of cache access. More...
 
virtual void flush ()
 Flush contents. More...
 

Protected Member Functions

 LatticeCache ()
 
Int getFreeTile (Bool readonly)
 
void writeTile (Int tile)
 
void readTile (Int tile, Bool readonly)
 

Protected Attributes

Int numberTiles
 
IPosition tileShape
 
Vector< InttileShapeVec
 
Vector< InttileOffsetVec
 
Vector< FloattileOverlap
 
Bool additive
 
Int cacheSize
 
Int cacheAccesses
 
Int cacheHits
 
Int cacheMisses
 
Int cacheReads
 
Int cacheWrites
 
Block< IPositiontileLocs
 
Block< InttileSequence
 
Block< Array< T > > tileContents
 
Lattice< T > * image_p
 

Detailed Description

template<class T>
class casacore::LatticeCache< T >

a class for caching image access via tiles

Intended use:

Public interface

Prerequisite

Etymology

This class divides an image into Tiles that are stored in a Cache.

Synopsis

An image is divided into tiles of a specified shape. Access to the image pixels is via these tiles. A cache of active tiles is kept in memory up to a specified limit in memory allocation. Tiles are flushed to disk using a Least-Recently-Used Criterion.

The tile size specified is the maximum dimension. Near the edge, smaller tiles are returned if necessary.

The offset needed to get back to true pixels is also available.

The cache hit rate for a sufficient number of random accesses goes as the ratio of cache size to image size.

Tiles may be overlapped. If there is any overlap then the caller is responsible for dealing with the overlap. Normally one will only want overlapping windows for additive operations in which case the additive flag to the constructor should be used.

Example

Motivation

To aid in gridding

Definition at line 95 of file LatticeCache.h.

Constructor & Destructor Documentation

template<class T>
casacore::LatticeCache< T >::LatticeCache ( Lattice< T > &  image,
Int  cacheSize,
IPosition  tileShape,
Vector< Float > &  tileOverlap,
Bool  additive 
)

Constructor: cachesize in units of T.

tileOverlap is the fractional overlap between neighbouring tile.

template<class T>
casacore::LatticeCache< T >::LatticeCache ( const LatticeCache< T > &  other)
template<class T>
virtual casacore::LatticeCache< T >::~LatticeCache ( )
virtual
template<class T>
casacore::LatticeCache< T >::LatticeCache ( )
inlineprotected

Definition at line 133 of file LatticeCache.h.

Member Function Documentation

template<class T>
IPosition& casacore::LatticeCache< T >::cacheLocation ( IPosition cacheLoc,
const IPosition tileLoc 
)

Return the IPosition for the start of this tile.

template<class T>
virtual void casacore::LatticeCache< T >::clearCacheStatistics ( )
virtual

Clear the statistics of cache access.

template<class T>
virtual void casacore::LatticeCache< T >::flush ( )
virtual

Flush contents.

template<class T>
Int casacore::LatticeCache< T >::getFreeTile ( Bool  readonly)
protected
template<class T>
LatticeCache<T>& casacore::LatticeCache< T >::operator= ( const LatticeCache< T > &  other)
template<class T>
void casacore::LatticeCache< T >::readTile ( Int  tile,
Bool  readonly 
)
protected
template<class T>
virtual void casacore::LatticeCache< T >::showCacheStatistics ( ostream &  os)
virtual

Show the statistics of cache access.

template<class T>
Array<T>& casacore::LatticeCache< T >::tile ( IPosition cacheLoc,
const IPosition tileLoc,
Bool  discard = True 
)

Return the tile for a given location.

template<class T>
Array<T>& casacore::LatticeCache< T >::tile ( const IPosition tileLoc,
Bool  discard = True 
)
template<class T>
const Array<T>& casacore::LatticeCache< T >::tile ( const IPosition tileLoc)

const version is needed

template<class T>
void casacore::LatticeCache< T >::writeTile ( Int  tile)
protected

Member Data Documentation

template<class T>
Bool casacore::LatticeCache< T >::additive
protected

Definition at line 139 of file LatticeCache.h.

template<class T>
Int casacore::LatticeCache< T >::cacheAccesses
protected

Definition at line 142 of file LatticeCache.h.

template<class T>
Int casacore::LatticeCache< T >::cacheHits
protected

Definition at line 143 of file LatticeCache.h.

template<class T>
Int casacore::LatticeCache< T >::cacheMisses
protected

Definition at line 144 of file LatticeCache.h.

template<class T>
Int casacore::LatticeCache< T >::cacheReads
protected

Definition at line 145 of file LatticeCache.h.

template<class T>
Int casacore::LatticeCache< T >::cacheSize
protected

Definition at line 141 of file LatticeCache.h.

template<class T>
Int casacore::LatticeCache< T >::cacheWrites
protected

Definition at line 146 of file LatticeCache.h.

template<class T>
Lattice<T>* casacore::LatticeCache< T >::image_p
protected

Definition at line 157 of file LatticeCache.h.

template<class T>
Int casacore::LatticeCache< T >::numberTiles
protected

Definition at line 133 of file LatticeCache.h.

template<class T>
Block<Array<T> > casacore::LatticeCache< T >::tileContents
protected

Definition at line 152 of file LatticeCache.h.

template<class T>
Block<IPosition> casacore::LatticeCache< T >::tileLocs
protected

Definition at line 150 of file LatticeCache.h.

template<class T>
Vector<Int> casacore::LatticeCache< T >::tileOffsetVec
protected

Definition at line 137 of file LatticeCache.h.

template<class T>
Vector<Float> casacore::LatticeCache< T >::tileOverlap
protected

Definition at line 138 of file LatticeCache.h.

template<class T>
Block<Int> casacore::LatticeCache< T >::tileSequence
protected

Definition at line 151 of file LatticeCache.h.

template<class T>
IPosition casacore::LatticeCache< T >::tileShape
protected

Definition at line 136 of file LatticeCache.h.

template<class T>
Vector<Int> casacore::LatticeCache< T >::tileShapeVec
protected

Definition at line 137 of file LatticeCache.h.


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