vtk-m/vtkm/exec/ConnectivityStructured.h

126 lines
3.4 KiB
C
Raw Normal View History

2015-05-15 16:03:52 +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 2014 Sandia Corporation.
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014 Los Alamos National Security.
2015-05-15 16:03:52 +00:00
//
// 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_exec_ConnectivityStructured_h
#define vtk_m_exec_ConnectivityStructured_h
2015-04-15 14:45:39 +00:00
#include <vtkm/TopologyElementTag.h>
#include <vtkm/Types.h>
#include <vtkm/internal/ConnectivityStructuredInternals.h>
2015-04-15 14:45:39 +00:00
namespace vtkm {
namespace exec {
2015-05-15 20:22:00 +00:00
template<typename FromTopology,
typename ToTopology,
2015-05-14 20:18:30 +00:00
vtkm::IdComponent Dimension>
class ConnectivityStructured
{
VTKM_IS_TOPOLOGY_ELEMENT_TAG(FromTopology);
VTKM_IS_TOPOLOGY_ELEMENT_TAG(ToTopology);
typedef vtkm::internal::ConnectivityStructuredInternals<Dimension>
InternalsType;
typedef vtkm::internal::ConnectivityStructuredIndexHelper<
FromTopology,ToTopology,Dimension> Helper;
public:
typedef typename InternalsType::SchedulingRangeType SchedulingRangeType;
VTKM_EXEC_CONT_EXPORT
ConnectivityStructured():
Internals()
2015-04-15 14:45:39 +00:00
{
2015-04-15 14:45:39 +00:00
}
VTKM_EXEC_CONT_EXPORT
ConnectivityStructured(const InternalsType &src):
Internals(src)
{
}
VTKM_EXEC_CONT_EXPORT
ConnectivityStructured(const ConnectivityStructured &src):
Internals(src.Internals)
{
}
template<typename IndexType>
VTKM_EXEC_EXPORT
vtkm::IdComponent GetNumberOfIndices(const IndexType &index) const {
return Helper::GetNumberOfIndices(this->Internals, index);
}
// This needs some thought. What does cell shape mean when the to topology
// is not a cell?
typedef typename InternalsType::CellShapeTag CellShapeTag;
VTKM_EXEC_EXPORT
CellShapeTag GetCellShape(vtkm::Id=0) const {
return CellShapeTag();
}
typedef typename Helper::IndicesType IndicesType;
template<typename IndexType>
VTKM_EXEC_EXPORT
IndicesType GetIndices(const IndexType &index) const
2015-05-14 20:26:59 +00:00
{
return Helper::GetIndices(this->Internals, index);
2015-05-14 20:26:59 +00:00
}
2015-05-18 21:08:15 +00:00
VTKM_EXEC_CONT_EXPORT
SchedulingRangeType
FlatToLogicalFromIndex(vtkm::Id flatFromIndex) const
{
return Helper::FlatToLogicalFromIndex(this->Internals, flatFromIndex);
}
VTKM_EXEC_CONT_EXPORT
vtkm::Id LogicalToFlatFromIndex(
const SchedulingRangeType &logicalFromIndex) const
{
return Helper::LogicalToFlatFromIndex(this->Internals, logicalFromIndex);
}
VTKM_EXEC_CONT_EXPORT
SchedulingRangeType
FlatToLogicalToIndex(vtkm::Id flatToIndex) const
{
return Helper::FlatToLogicalToIndex(this->Internals, flatToIndex);
}
VTKM_EXEC_CONT_EXPORT
vtkm::Id LogicalToFlatToIndex(
const SchedulingRangeType &logicalToIndex) const
{
return Helper::LogicalToFlatToIndex(this->Internals, logicalToIndex);
}
private:
InternalsType Internals;
2015-04-15 14:45:39 +00:00
};
}
} // namespace vtkm::exec
2015-04-15 14:45:39 +00:00
#endif //vtk_m_exec_ConnectivityStructured_h