//============================================================================ // 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_VecVariable_h #define vtk_m_VecVariable_h #include #include #include #include #include namespace vtkm { /// \brief A short variable-length array with maximum length. /// /// The \c VecVariable class is a Vec-like class that holds a short array of /// some maximum length. To avoid dynamic allocations, the maximum length is /// specified at compile time. Internally, \c VecVariable holds a \c Vec of /// the maximum length and exposes a subsection of it. /// template class VecVariable { public: typedef T ComponentType; VTKM_EXEC_CONT VecVariable() : NumComponents(0) { } template VTKM_EXEC_CONT VecVariable(const vtkm::VecVariable& src) : NumComponents(src.GetNumberOfComponents()) { VTKM_ASSERT(this->NumComponents <= MaxSize); for (vtkm::IdComponent index = 0; index < this->NumComponents; index++) { this->Data[index] = src[index]; } } template VTKM_EXEC_CONT VecVariable(const vtkm::Vec& src) : NumComponents(SrcSize) { VTKM_ASSERT(this->NumComponents <= MaxSize); for (vtkm::IdComponent index = 0; index < this->NumComponents; index++) { this->Data[index] = src[index]; } } VTKM_EXEC_CONT vtkm::IdComponent GetNumberOfComponents() const { return this->NumComponents; } template VTKM_EXEC_CONT void CopyInto(vtkm::Vec& dest) const { vtkm::IdComponent numComponents = vtkm::Min(DestSize, this->NumComponents); for (vtkm::IdComponent index = 0; index < numComponents; index++) { dest[index] = this->Data[index]; } } VTKM_EXEC_CONT const ComponentType& operator[](vtkm::IdComponent index) const { return this->Data[index]; } VTKM_EXEC_CONT ComponentType& operator[](vtkm::IdComponent index) { return this->Data[index]; } VTKM_EXEC_CONT void Append(ComponentType value) { VTKM_ASSERT(this->NumComponents < MaxSize); this->Data[this->NumComponents] = value; this->NumComponents++; } private: vtkm::Vec Data; vtkm::IdComponent NumComponents; }; template struct TypeTraits> { typedef typename vtkm::TypeTraits::NumericTag NumericTag; typedef TypeTraitsVectorTag DimensionalityTag; VTKM_EXEC_CONT static vtkm::VecVariable ZeroInitialization() { return vtkm::VecVariable(); } }; template struct VecTraits> { typedef vtkm::VecVariable VecType; typedef typename VecType::ComponentType ComponentType; typedef vtkm::VecTraitsTagMultipleComponents HasMultipleComponents; typedef vtkm::VecTraitsTagSizeVariable IsSizeStatic; VTKM_EXEC_CONT static vtkm::IdComponent GetNumberOfComponents(const VecType& vector) { return vector.GetNumberOfComponents(); } VTKM_EXEC_CONT static const ComponentType& GetComponent(const VecType& vector, vtkm::IdComponent componentIndex) { return vector[componentIndex]; } VTKM_EXEC_CONT static ComponentType& GetComponent(VecType& vector, vtkm::IdComponent componentIndex) { return vector[componentIndex]; } VTKM_EXEC_CONT static void SetComponent(VecType& vector, vtkm::IdComponent componentIndex, const ComponentType& value) { vector[componentIndex] = value; } template VTKM_EXEC_CONT static void CopyInto(const VecType& src, vtkm::Vec& dest) { src.CopyInto(dest); } }; } // namespace vtkm #endif //vtk_m_VecVariable_h