vtk-m/vtkm/VecFromPortalPermute.h

143 lines
4.1 KiB
C
Raw Normal View History

2015-08-14 14:10:17 +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 vtk_m_VecFromPortalPermute_h
#define vtk_m_VecFromPortalPermute_h
2015-08-14 14:10:17 +00:00
#include <vtkm/Math.h>
#include <vtkm/TypeTraits.h>
2017-05-18 14:51:24 +00:00
#include <vtkm/Types.h>
2015-08-14 14:10:17 +00:00
#include <vtkm/VecTraits.h>
namespace vtkm {
/// \brief A short vector from an ArrayPortal and a vector of indices.
///
/// The \c VecFromPortalPermute class is a Vec-like class that holds an array
/// portal and a second Vec-like containing indices into the array. Each value
/// of this vector is the value from the array with the respective index.
///
template<typename IndexVecType, typename PortalType>
class VecFromPortalPermute
{
public:
using ComponentType =
typename std::remove_const<typename PortalType::ValueType>::type;
2015-08-14 14:10:17 +00:00
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT
2015-08-14 14:10:17 +00:00
VecFromPortalPermute() { }
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT
VecFromPortalPermute(const IndexVecType *indices, const PortalType &portal)
2015-08-14 14:10:17 +00:00
: Indices(indices), Portal(portal) { }
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT
2015-08-14 14:10:17 +00:00
vtkm::IdComponent GetNumberOfComponents() const {
return this->Indices->GetNumberOfComponents();
2015-08-14 14:10:17 +00:00
}
VTKM_SUPPRESS_EXEC_WARNINGS
2015-08-14 14:10:17 +00:00
template<vtkm::IdComponent DestSize>
VTKM_EXEC_CONT
2015-08-14 14:10:17 +00:00
void CopyInto(vtkm::Vec<ComponentType,DestSize> &dest) const
{
vtkm::IdComponent numComponents =
vtkm::Min(DestSize, this->GetNumberOfComponents());
for (vtkm::IdComponent index = 0; index < numComponents; index++)
{
dest[index] = (*this)[index];
2015-08-14 14:10:17 +00:00
}
}
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT
2015-08-14 14:10:17 +00:00
ComponentType operator[](vtkm::IdComponent index) const
{
return this->Portal.Get((*this->Indices)[index]);
2015-08-14 14:10:17 +00:00
}
private:
const IndexVecType *Indices;
2015-08-14 14:10:17 +00:00
PortalType Portal;
};
template<typename IndexVecType, typename PortalType>
struct TypeTraits<
vtkm::VecFromPortalPermute<IndexVecType,PortalType> >
2015-08-14 14:10:17 +00:00
{
private:
typedef vtkm::VecFromPortalPermute<IndexVecType,PortalType>
2015-08-14 14:10:17 +00:00
VecType;
typedef typename PortalType::ValueType ComponentType;
public:
typedef typename vtkm::TypeTraits<ComponentType>::NumericTag NumericTag;
typedef TypeTraitsVectorTag DimensionalityTag;
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT
2015-08-14 14:10:17 +00:00
static VecType ZeroInitialization()
{
return VecType();
}
};
template<typename IndexVecType, typename PortalType>
struct VecTraits<
vtkm::VecFromPortalPermute<IndexVecType,PortalType> >
2015-08-14 14:10:17 +00:00
{
typedef vtkm::VecFromPortalPermute<IndexVecType,PortalType>
2015-08-14 14:10:17 +00:00
VecType;
typedef typename VecType::ComponentType ComponentType;
typedef vtkm::VecTraitsTagMultipleComponents HasMultipleComponents;
typedef vtkm::VecTraitsTagSizeVariable IsSizeStatic;
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT
2015-08-14 14:10:17 +00:00
static vtkm::IdComponent GetNumberOfComponents(const VecType &vector) {
return vector.GetNumberOfComponents();
}
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT
2015-08-14 14:10:17 +00:00
static ComponentType GetComponent(const VecType &vector,
vtkm::IdComponent componentIndex)
{
return vector[componentIndex];
}
VTKM_SUPPRESS_EXEC_WARNINGS
2015-08-14 14:10:17 +00:00
template<vtkm::IdComponent destSize>
VTKM_EXEC_CONT
2015-08-14 14:10:17 +00:00
static void CopyInto(const VecType &src,
vtkm::Vec<ComponentType,destSize> &dest)
{
src.CopyInto(dest);
}
};
} // namespace vtkm
#endif //vtk_m_VecFromPortalPermute_h