vtk-m/vtkm/exec/ConnectivityExplicit.h
2019-04-17 10:57:13 -06:00

82 lines
2.5 KiB
C++

//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
//
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//============================================================================
#ifndef vtk_m_exec_ConnectivityExplicit_h
#define vtk_m_exec_ConnectivityExplicit_h
#include <vtkm/CellShape.h>
#include <vtkm/Types.h>
#include <vtkm/VecFromPortal.h>
namespace vtkm
{
namespace exec
{
template <typename ShapePortalType,
typename NumIndicesPortalType,
typename ConnectivityPortalType,
typename IndexOffsetPortalType>
class ConnectivityExplicit
{
public:
using SchedulingRangeType = vtkm::Id;
ConnectivityExplicit() {}
ConnectivityExplicit(const ShapePortalType& shapePortal,
const NumIndicesPortalType& numIndicesPortal,
const ConnectivityPortalType& connPortal,
const IndexOffsetPortalType& indexOffsetPortal)
: Shapes(shapePortal)
, NumIndices(numIndicesPortal)
, Connectivity(connPortal)
, IndexOffset(indexOffsetPortal)
{
}
VTKM_EXEC
SchedulingRangeType GetNumberOfElements() const { return this->Shapes.GetNumberOfValues(); }
using CellShapeTag = vtkm::CellShapeTagGeneric;
VTKM_EXEC
CellShapeTag GetCellShape(vtkm::Id index) const { return CellShapeTag(this->Shapes.Get(index)); }
VTKM_EXEC
vtkm::IdComponent GetNumberOfIndices(vtkm::Id index) const { return this->NumIndices.Get(index); }
using IndicesType = vtkm::VecFromPortal<ConnectivityPortalType>;
/// Returns a Vec-like object containing the indices for the given index.
/// The object returned is not an actual array, but rather an object that
/// loads the indices lazily out of the connectivity array. This prevents
/// us from having to know the number of indices at compile time.
///
VTKM_EXEC
IndicesType GetIndices(vtkm::Id index) const
{
vtkm::Id offset = this->IndexOffset.Get(index);
vtkm::IdComponent length = this->NumIndices.Get(index);
return IndicesType(this->Connectivity, length, offset);
}
private:
ShapePortalType Shapes;
NumIndicesPortalType NumIndices;
ConnectivityPortalType Connectivity;
IndexOffsetPortalType IndexOffset;
};
} // namespace exec
} // namespace vtkm
#endif // vtk_m_exec_ConnectivityExplicit_h