vtk-m/vtkm/worklet/Mask.h

107 lines
3.4 KiB
C
Raw Normal View History

2017-03-28 20:42:22 +00:00
//============================================================================
// 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.
//
// Copyright 2015 Sandia Corporation.
// Copyright 2015 UT-Battelle, LLC.
// Copyright 2015 Los Alamos National Security.
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
// Laboratory (LANL), the U.S. Government retains certain rights in
// this software.
//============================================================================
#ifndef vtkm_m_worklet_Mask_h
#define vtkm_m_worklet_Mask_h
#include <vtkm/worklet/DispatcherMapTopology.h>
#include <vtkm/worklet/WorkletMapTopology.h>
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/cont/ArrayHandleCounting.h>
#include <vtkm/cont/ArrayHandlePermutation.h>
2017-05-18 14:51:24 +00:00
#include <vtkm/cont/CellSetPermutation.h>
#include <vtkm/cont/DataSet.h>
2017-03-28 20:42:22 +00:00
#include <vtkm/cont/DeviceAdapterAlgorithm.h>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace worklet
{
2017-03-28 20:42:22 +00:00
// Subselect points using stride for now, creating new cellset of vertices
class Mask
{
public:
2017-05-18 14:29:41 +00:00
struct BoolType : vtkm::ListTagBase<bool>
{
};
template <typename CellSetType, typename DeviceAdapter>
vtkm::cont::CellSetPermutation<CellSetType> Run(const CellSetType& cellSet,
const vtkm::Id stride,
2017-05-18 14:29:41 +00:00
DeviceAdapter)
2017-03-28 20:42:22 +00:00
{
typedef typename vtkm::cont::DeviceAdapterAlgorithm<DeviceAdapter> DeviceAlgorithm;
typedef vtkm::cont::CellSetPermutation<CellSetType> OutputType;
vtkm::Id numberOfInputCells = cellSet.GetNumberOfCells();
vtkm::Id numberOfSampledCells = numberOfInputCells / stride;
vtkm::cont::ArrayHandleCounting<vtkm::Id> strideArray(0, stride, numberOfSampledCells);
DeviceAlgorithm::Copy(strideArray, this->ValidCellIds);
return OutputType(this->ValidCellIds, cellSet, cellSet.GetName());
}
// Permute cell data to match permuted cells
class PermuteCellData
{
public:
PermuteCellData(const vtkm::cont::ArrayHandle<vtkm::Id> validCellIds,
2017-05-18 14:29:41 +00:00
vtkm::cont::DynamicArrayHandle& data)
: ValidCellIds(validCellIds)
, Data(&data)
{
}
2017-03-28 20:42:22 +00:00
template <typename ArrayHandleType>
2017-05-18 14:29:41 +00:00
void operator()(const ArrayHandleType& input) const
2017-03-28 20:42:22 +00:00
{
*(this->Data) = vtkm::cont::DynamicArrayHandle(
vtkm::cont::make_ArrayHandlePermutation(this->ValidCellIds, input));
}
private:
vtkm::cont::ArrayHandle<vtkm::Id> ValidCellIds;
2017-05-18 14:29:41 +00:00
vtkm::cont::DynamicArrayHandle* Data;
2017-03-28 20:42:22 +00:00
};
vtkm::cont::Field ProcessCellField(const vtkm::cont::Field field) const
{
if (field.GetAssociation() != vtkm::cont::Field::ASSOC_CELL_SET)
{
throw vtkm::cont::ErrorBadValue("Expecting cell field.");
}
vtkm::cont::DynamicArrayHandle data;
CastAndCall(field, PermuteCellData(this->ValidCellIds, data));
return vtkm::cont::Field(
field.GetName(), field.GetAssociation(), field.GetAssocCellSet(), data);
2017-03-28 20:42:22 +00:00
}
private:
vtkm::cont::ArrayHandle<vtkm::Id> ValidCellIds;
};
}
} // namespace vtkm::worklet
#endif // vtkm_m_worklet_Mask_h