VTK-m  2.1
Public Types | Public Member Functions | List of all members
vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray > Class Template Reference

An ArrayHandle that converts an array of offsets to an array of Vec sizes. More...

#include <ArrayHandleOffsetsToNumComponents.h>

Inheritance diagram for vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >:
vtkm::cont::ArrayHandle< vtkm::IdComponent, vtkm::cont::StorageTagOffsetsToNumComponents< OffsetsArray::StorageTag > >

Public Types

using Thisclass = typename vtkm::cont::detail::GetTypeInParentheses< void(ArrayHandleOffsetsToNumComponents< OffsetsArray >) >::type
 
using Superclass = typename vtkm::cont::detail::GetTypeInParentheses< void(vtkm::cont::ArrayHandle< vtkm::IdComponent, vtkm::cont::StorageTagOffsetsToNumComponents< typename OffsetsArray::StorageTag > >) >::type
 
using ValueType = typename Superclass::ValueType
 
using StorageTag = typename Superclass::StorageTag
 
using StorageType = typename Superclass::StorageType
 
using ReadPortalType = typename Superclass::ReadPortalType
 
using WritePortalType = typename Superclass::WritePortalType
 
- Public Types inherited from vtkm::cont::ArrayHandle< vtkm::IdComponent, vtkm::cont::StorageTagOffsetsToNumComponents< OffsetsArray::StorageTag > >
using ValueType = vtkm::IdComponent
 
using StorageTag = vtkm::cont::StorageTagOffsetsToNumComponents< OffsetsArray::StorageTag >
 
using StorageType = vtkm::cont::internal::Storage< ValueType, StorageTag >
 
using ReadPortalType = typename StorageType::ReadPortalType
 
using WritePortalType = typename StorageType::WritePortalType
 

Public Member Functions

 ArrayHandleOffsetsToNumComponents ()
 
VTKM_CONT ArrayHandleOffsetsToNumComponents (const Thisclass &src)
 
VTKM_CONT ArrayHandleOffsetsToNumComponents (Thisclass &&src) noexcept
 
VTKM_CONT ArrayHandleOffsetsToNumComponents (const vtkm::cont::ArrayHandle< typename Superclass::ValueType, typename Superclass::StorageTag > &src)
 
VTKM_CONT ArrayHandleOffsetsToNumComponents (vtkm::cont::ArrayHandle< typename Superclass::ValueType, typename Superclass::StorageTag > &&src) noexcept
 
VTKM_CONT ArrayHandleOffsetsToNumComponents (const std::vector< vtkm::cont::internal::Buffer > &buffers)
 
VTKM_CONT ArrayHandleOffsetsToNumComponents (std::vector< vtkm::cont::internal::Buffer > &&buffers) noexcept
 
VTKM_CONT Thisclassoperator= (const Thisclass &src)
 
VTKM_CONT Thisclassoperator= (Thisclass &&src) noexcept
 
 ArrayHandleOffsetsToNumComponents (const OffsetsArray &array)
 
- Public Member Functions inherited from vtkm::cont::ArrayHandle< vtkm::IdComponent, vtkm::cont::StorageTagOffsetsToNumComponents< OffsetsArray::StorageTag > >
 ArrayHandle ()
 Constructs an empty ArrayHandle. More...
 
 ArrayHandle (const vtkm::cont::ArrayHandle< ValueType, StorageTag > &src)
 Copy constructor. More...
 
 ArrayHandle (vtkm::cont::ArrayHandle< ValueType, StorageTag > &&src) noexcept
 Move constructor. More...
 
 ArrayHandle (const std::vector< vtkm::cont::internal::Buffer > &buffers)
 Special constructor for subclass specializations that need to set the initial state array. More...
 
 ArrayHandle (std::vector< vtkm::cont::internal::Buffer > &&buffers) noexcept
 Special constructor for subclass specializations that need to set the initial state array. More...
 
 ~ArrayHandle ()
 Destructs an empty ArrayHandle. More...
 
vtkm::cont::ArrayHandle< ValueType, StorageTag > & operator= (const vtkm::cont::ArrayHandle< ValueType, StorageTag > &src)
 Shallow copies an ArrayHandle. More...
 
vtkm::cont::ArrayHandle< ValueType, StorageTag > & operator= (vtkm::cont::ArrayHandle< ValueType, StorageTag > &&src) noexcept
 Move and Assignment of an ArrayHandle. More...
 
bool operator== (const ArrayHandle< ValueType, StorageTag > &rhs) const
 Like a pointer, two ArrayHandles are considered equal if they point to the same location in memory. More...
 
bool operator== (const ArrayHandle< VT, ST > &) const
 
bool operator!= (const ArrayHandle< ValueType, StorageTag > &rhs) const
 
bool operator!= (const ArrayHandle< VT, ST > &) const
 
StorageType GetStorage () const
 Get the storage. More...
 
ReadPortalType ReadPortal () const
 Get an array portal that can be used in the control environment. More...
 
ReadPortalType ReadPortal (vtkm::cont::Token &token) const
 
WritePortalType WritePortal () const
 Get an array portal that can be used in the control environment. More...
 
WritePortalType WritePortal (vtkm::cont::Token &token) const
 Get an array portal that can be used in the control environment. More...
 
vtkm::Id GetNumberOfValues () const
 Returns the number of entries in the array. More...
 
vtkm::IdComponent GetNumberOfComponentsFlat () const
 Returns the total number of components for each value in the array. More...
 
void Allocate (vtkm::Id numberOfValues, vtkm::CopyFlag preserve, vtkm::cont::Token &token) const
 Allocates an array large enough to hold the given number of values. More...
 
void Allocate (vtkm::Id numberOfValues, vtkm::CopyFlag preserve=vtkm::CopyFlag::Off) const
 Allocates an array large enough to hold the given number of values. More...
 
void AllocateAndFill (vtkm::Id numberOfValues, const ValueType &fillValue, vtkm::CopyFlag preserve, vtkm::cont::Token &token) const
 Allocates an array and fills it with an initial value. More...
 
void AllocateAndFill (vtkm::Id numberOfValues, const ValueType &fillValue, vtkm::CopyFlag preserve=vtkm::CopyFlag::Off) const
 Allocates an array and fills it with an initial value. More...
 
void Fill (const ValueType &fillValue, vtkm::Id startIndex, vtkm::Id endIndex, vtkm::cont::Token &token) const
 Fills the array with a given value. More...
 
void Fill (const ValueType &fillValue, vtkm::Id startIndex, vtkm::Id endIndex) const
 Fills the array with a given value. More...
 
void Fill (const ValueType &fillValue, vtkm::Id startIndex=0) const
 Fills the array with a given value. More...
 
void ReleaseResourcesExecution () const
 Releases any resources being used in the execution environment (that are not being shared by the control environment). More...
 
void ReleaseResources () const
 Releases all resources in both the control and execution environments. More...
 
ReadPortalType PrepareForInput (vtkm::cont::DeviceAdapterId device, vtkm::cont::Token &token) const
 Prepares this array to be used as an input to an operation in the execution environment. More...
 
WritePortalType PrepareForInPlace (vtkm::cont::DeviceAdapterId device, vtkm::cont::Token &token) const
 Prepares this array to be used in an in-place operation (both as input and output) in the execution environment. More...
 
WritePortalType PrepareForOutput (vtkm::Id numberOfValues, vtkm::cont::DeviceAdapterId device, vtkm::cont::Token &token) const
 Prepares (allocates) this array to be used as an output from an operation in the execution environment. More...
 
bool IsOnDevice (vtkm::cont::DeviceAdapterId device) const
 Returns true if the ArrayHandle's data is on the given device. More...
 
bool IsOnHost () const
 Returns true if the ArrayHandle's data is on the host. More...
 
void SyncControlArray () const
 Synchronizes the control array with the execution array. More...
 
void Enqueue (const vtkm::cont::Token &token) const
 Enqueue a token for access to this ArrayHandle. More...
 
void DeepCopyFrom (const vtkm::cont::ArrayHandle< ValueType, StorageTag > &source) const
 Deep copies the data in the array. More...
 
const std::vector< vtkm::cont::internal::Buffer > & GetBuffers () const
 Returns the internal Buffer structures that hold the data. More...
 
std::vector< vtkm::cont::internal::Buffer > & GetBuffers ()
 

Additional Inherited Members

- Protected Member Functions inherited from vtkm::cont::ArrayHandle< vtkm::IdComponent, vtkm::cont::StorageTagOffsetsToNumComponents< OffsetsArray::StorageTag > >
void SetBuffer (vtkm::IdComponent index, const vtkm::cont::internal::Buffer &buffer)
 
void SetBuffers (const std::vector< vtkm::cont::internal::Buffer > &buffers)
 
void SetBuffers (std::vector< vtkm::cont::internal::Buffer > &&buffers)
 

Detailed Description

template<class OffsetsArray>
class vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >

An ArrayHandle that converts an array of offsets to an array of Vec sizes.

It is common in VTK-m to pack small vectors of variable sizes into a single contiguous array. For example, cells in an explicit cell set can each have a different amount of vertices (triangles = 3, quads = 4, tetra = 4, hexa = 8, etc.). Generally, to access items in this list, you need an array of components in each entry and the offset for each entry. However, if you have just the array of offsets in sorted order, you can easily derive the number of components for each entry by subtracting adjacent entries. This works best if the offsets array has a size that is one more than the number of packed vectors with the first entry set to 0 and the last entry set to the total size of the packed array (the offset to the end).

ArrayHandleOffsetsToNumComponents decorates an array in exactly this manner. It takes an offsets array and makes it behave like an array of counts. Note that the offsets array must conform to the conditions described above: the offsets are in sorted order and there is one additional entry in the offsets (ending in an offset pointing past the end of the array).

When packing data of this nature, it is common to start with an array that is the number of components. You can convert that to an offsets array using the vtkm::cont::ConvertNumComponentsToOffsets function. This will create an offsets array with one extra entry as previously described. You can then throw out the original number of components array and use the offsets with ArrayHandleOffsetsToNumComponents to represent both the offsets and num components while storing only one array.

Member Typedef Documentation

◆ ReadPortalType

template<class OffsetsArray >
using vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ReadPortalType = typename Superclass::ReadPortalType

◆ StorageTag

template<class OffsetsArray >
using vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::StorageTag = typename Superclass::StorageTag

◆ StorageType

template<class OffsetsArray >
using vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::StorageType = typename Superclass::StorageType

◆ Superclass

template<class OffsetsArray >
using vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::Superclass = typename vtkm::cont::detail::GetTypeInParentheses<void (vtkm::cont::ArrayHandle< vtkm::IdComponent, vtkm::cont::StorageTagOffsetsToNumComponents<typename OffsetsArray::StorageTag> >) >::type

◆ Thisclass

template<class OffsetsArray >
using vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::Thisclass = typename vtkm::cont::detail::GetTypeInParentheses<void (ArrayHandleOffsetsToNumComponents<OffsetsArray>) >::type

◆ ValueType

template<class OffsetsArray >
using vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ValueType = typename Superclass::ValueType

◆ WritePortalType

template<class OffsetsArray >
using vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::WritePortalType = typename Superclass::WritePortalType

Constructor & Destructor Documentation

◆ ArrayHandleOffsetsToNumComponents() [1/8]

template<class OffsetsArray >
vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ArrayHandleOffsetsToNumComponents ( )
inline

◆ ArrayHandleOffsetsToNumComponents() [2/8]

template<class OffsetsArray >
VTKM_CONT vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ArrayHandleOffsetsToNumComponents ( const Thisclass src)
inline

◆ ArrayHandleOffsetsToNumComponents() [3/8]

template<class OffsetsArray >
VTKM_CONT vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ArrayHandleOffsetsToNumComponents ( Thisclass &&  src)
inlinenoexcept

◆ ArrayHandleOffsetsToNumComponents() [4/8]

template<class OffsetsArray >
VTKM_CONT vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ArrayHandleOffsetsToNumComponents ( const vtkm::cont::ArrayHandle< typename Superclass::ValueType, typename Superclass::StorageTag > &  src)
inline

◆ ArrayHandleOffsetsToNumComponents() [5/8]

template<class OffsetsArray >
VTKM_CONT vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ArrayHandleOffsetsToNumComponents ( vtkm::cont::ArrayHandle< typename Superclass::ValueType, typename Superclass::StorageTag > &&  src)
inlinenoexcept

◆ ArrayHandleOffsetsToNumComponents() [6/8]

template<class OffsetsArray >
VTKM_CONT vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ArrayHandleOffsetsToNumComponents ( const std::vector< vtkm::cont::internal::Buffer > &  buffers)
inlineexplicit

◆ ArrayHandleOffsetsToNumComponents() [7/8]

template<class OffsetsArray >
VTKM_CONT vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ArrayHandleOffsetsToNumComponents ( std::vector< vtkm::cont::internal::Buffer > &&  buffers)
inlineexplicitnoexcept

◆ ArrayHandleOffsetsToNumComponents() [8/8]

template<class OffsetsArray >
vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::ArrayHandleOffsetsToNumComponents ( const OffsetsArray &  array)
inline

Member Function Documentation

◆ operator=() [1/2]

template<class OffsetsArray >
VTKM_CONT Thisclass& vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::operator= ( const Thisclass src)
inline

◆ operator=() [2/2]

template<class OffsetsArray >
VTKM_CONT Thisclass& vtkm::cont::ArrayHandleOffsetsToNumComponents< OffsetsArray >::operator= ( Thisclass &&  src)
inlinenoexcept

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