VTK-m  2.0
OutputIndex.h
Go to the documentation of this file.
1 //============================================================================
2 // Copyright (c) Kitware, Inc.
3 // All rights reserved.
4 // See LICENSE.txt for details.
5 //
6 // This software is distributed WITHOUT ANY WARRANTY; without even
7 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8 // PURPOSE. See the above copyright notice for more information.
9 //============================================================================
10 #ifndef vtk_m_exec_arg_OutputIndex_h
11 #define vtk_m_exec_arg_OutputIndex_h
12 
14 #include <vtkm/exec/arg/Fetch.h>
15 
16 namespace vtkm
17 {
18 namespace exec
19 {
20 namespace arg
21 {
22 
30 {
31 };
32 
43 {
44  // The index does not really matter because the fetch is going to ignore it.
45  // However, it still has to point to a valid parameter in the
46  // ControlSignature because the templating is going to grab a fetch tag
47  // whether we use it or not. 1 should be guaranteed to be valid since you
48  // need at least one argument for the output domain.
49  static constexpr vtkm::IdComponent INDEX = 1;
51 };
52 
53 template <typename FetchTag, typename ExecObjectType>
54 struct Fetch<FetchTag, vtkm::exec::arg::AspectTagOutputIndex, ExecObjectType>
55 {
57 
58  template <typename ThreadIndicesType>
59  VTKM_EXEC vtkm::Id Load(const ThreadIndicesType& indices, const ExecObjectType&) const
60  {
61  return indices.GetOutputIndex();
62  }
63 
64  template <typename ThreadIndicesType>
65  VTKM_EXEC void Store(const ThreadIndicesType&, const ExecObjectType&, const ValueType&) const
66  {
67  // Store is a no-op.
68  }
69 };
70 }
71 }
72 } // namespace vtkm::exec::arg
73 
74 #endif //vtk_m_exec_arg_OutputIndex_h
vtkm::exec::arg::Fetch< FetchTag, vtkm::exec::arg::AspectTagOutputIndex, ExecObjectType >::ValueType
vtkm::Id ValueType
Definition: OutputIndex.h:56
VTKM_EXEC
#define VTKM_EXEC
Definition: ExportMacros.h:51
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
vtkm::exec::arg::ExecutionSignatureTagBase
The base class for all tags used in an ExecutionSignature.
Definition: ExecutionSignatureTagBase.h:37
vtkm::IdComponent
vtkm::Int32 IdComponent
Represents a component ID (index of component in a vector).
Definition: Types.h:168
vtkm::exec::arg::OutputIndex
The ExecutionSignature tag to use to get the output index.
Definition: OutputIndex.h:42
vtkm::exec::arg::Fetch
Class for loading and storing values in thread instance.
Definition: Fetch.h:49
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
ExecutionSignatureTagBase.h
vtkm::exec::arg::OutputIndex::INDEX
static constexpr vtkm::IdComponent INDEX
Definition: OutputIndex.h:49
vtkm::exec::arg::Fetch< FetchTag, vtkm::exec::arg::AspectTagOutputIndex, ExecObjectType >::Load
VTKM_EXEC vtkm::Id Load(const ThreadIndicesType &indices, const ExecObjectType &) const
Definition: OutputIndex.h:59
Fetch.h
vtkm::exec::arg::Fetch< FetchTag, vtkm::exec::arg::AspectTagOutputIndex, ExecObjectType >::Store
VTKM_EXEC void Store(const ThreadIndicesType &, const ExecObjectType &, const ValueType &) const
Definition: OutputIndex.h:65
vtkm::exec::arg::AspectTagOutputIndex
Aspect tag to use for getting the work index.
Definition: OutputIndex.h:29