vtk-m/vtkm/worklet/CellDeepCopy.h

110 lines
3.9 KiB
C
Raw Normal View History

2016-11-05 03:23:07 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2016-11-05 03:23:07 +00:00
// 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_worklet_CellDeepCopy_h
#define vtk_m_worklet_CellDeepCopy_h
#include <vtkm/cont/ArrayHandleConstant.h>
#include <vtkm/cont/ArrayHandleGroupVecVariable.h>
#include <vtkm/cont/CellSetExplicit.h>
2016-11-06 22:15:22 +00:00
#include <vtkm/cont/DynamicCellSet.h>
2016-11-05 03:23:07 +00:00
#include <vtkm/worklet/DispatcherMapTopology.h>
#include <vtkm/worklet/WorkletMapTopology.h>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace worklet
{
2016-11-05 03:23:07 +00:00
/// Container for worklets and helper methods to copy a cell set to a new
/// \c CellSetExplicit structure
///
struct CellDeepCopy
{
struct CountCellPoints : vtkm::worklet::WorkletVisitCellsWithPoints
2016-11-05 03:23:07 +00:00
{
using ControlSignature = void(CellSetIn inputTopology, FieldOut numPointsInCell);
using ExecutionSignature = _2(PointCount);
2016-11-05 03:23:07 +00:00
VTKM_EXEC
2017-05-18 14:29:41 +00:00
vtkm::IdComponent operator()(vtkm::IdComponent numPoints) const { return numPoints; }
2016-11-05 03:23:07 +00:00
};
struct PassCellStructure : vtkm::worklet::WorkletVisitCellsWithPoints
2016-11-05 03:23:07 +00:00
{
using ControlSignature = void(CellSetIn inputTopology, FieldOut shapes, FieldOut pointIndices);
using ExecutionSignature = void(CellShape, PointIndices, _2, _3);
2016-11-05 03:23:07 +00:00
2017-05-18 14:29:41 +00:00
template <typename CellShape, typename InPointIndexType, typename OutPointIndexType>
VTKM_EXEC void operator()(const CellShape& inShape,
const InPointIndexType& inPoints,
vtkm::UInt8& outShape,
OutPointIndexType& outPoints) const
2016-11-05 03:23:07 +00:00
{
(void)inShape; //C4100 false positive workaround
2016-11-05 03:23:07 +00:00
outShape = inShape.Id;
vtkm::IdComponent numPoints = inPoints.GetNumberOfComponents();
VTKM_ASSERT(numPoints == outPoints.GetNumberOfComponents());
2017-05-18 14:29:41 +00:00
for (vtkm::IdComponent pointIndex = 0; pointIndex < numPoints; pointIndex++)
2016-11-05 03:23:07 +00:00
{
outPoints[pointIndex] = inPoints[pointIndex];
}
}
};
template <typename InCellSetType,
typename ShapeStorage,
typename ConnectivityStorage,
typename OffsetsStorage>
VTKM_CONT static void Run(
const InCellSetType& inCellSet,
vtkm::cont::CellSetExplicit<ShapeStorage, ConnectivityStorage, OffsetsStorage>& outCellSet)
2016-11-05 03:23:07 +00:00
{
2016-11-06 22:15:22 +00:00
VTKM_IS_DYNAMIC_OR_STATIC_CELL_SET(InCellSetType);
2016-11-05 03:23:07 +00:00
vtkm::cont::ArrayHandle<vtkm::IdComponent> numIndices;
2016-11-05 03:23:07 +00:00
vtkm::worklet::DispatcherMapTopology<CountCellPoints> countDispatcher;
2016-11-05 03:23:07 +00:00
countDispatcher.Invoke(inCellSet, numIndices);
2017-05-18 14:29:41 +00:00
vtkm::cont::ArrayHandle<vtkm::UInt8, ShapeStorage> shapes;
vtkm::cont::ArrayHandle<vtkm::Id, ConnectivityStorage> connectivity;
2016-11-05 03:23:07 +00:00
2017-05-18 14:29:41 +00:00
vtkm::cont::ArrayHandle<vtkm::Id, OffsetsStorage> offsets;
2016-11-05 03:23:07 +00:00
vtkm::Id connectivitySize;
vtkm::cont::ConvertNumIndicesToOffsets(numIndices, offsets, connectivitySize);
2016-11-05 03:23:07 +00:00
connectivity.Allocate(connectivitySize);
vtkm::worklet::DispatcherMapTopology<PassCellStructure> passDispatcher;
passDispatcher.Invoke(
inCellSet, shapes, vtkm::cont::make_ArrayHandleGroupVecVariable(connectivity, offsets));
2017-05-18 14:29:41 +00:00
vtkm::cont::CellSetExplicit<ShapeStorage, ConnectivityStorage, OffsetsStorage> newCellSet;
newCellSet.Fill(inCellSet.GetNumberOfPoints(), shapes, connectivity, offsets);
2016-11-05 03:23:07 +00:00
outCellSet = newCellSet;
}
template <typename InCellSetType>
VTKM_CONT static vtkm::cont::CellSetExplicit<> Run(const InCellSetType& inCellSet)
2016-11-05 03:23:07 +00:00
{
2016-11-06 22:15:22 +00:00
VTKM_IS_DYNAMIC_OR_STATIC_CELL_SET(InCellSetType);
2016-11-05 03:23:07 +00:00
vtkm::cont::CellSetExplicit<> outCellSet;
Run(inCellSet, outCellSet);
2016-11-05 03:23:07 +00:00
return outCellSet;
}
};
}
} // namespace vtkm::worklet
#endif //vtk_m_worklet_CellDeepCopy_h