VTK-m  2.0
SetFirstAttachmentPointInRoundWorklet.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 // Copyright (c) 2018, The Regents of the University of California, through
11 // Lawrence Berkeley National Laboratory (subject to receipt of any required approvals
12 // from the U.S. Dept. of Energy). All rights reserved.
13 //
14 // Redistribution and use in source and binary forms, with or without modification,
15 // are permitted provided that the following conditions are met:
16 //
17 // (1) Redistributions of source code must retain the above copyright notice, this
18 // list of conditions and the following disclaimer.
19 //
20 // (2) Redistributions in binary form must reproduce the above copyright notice,
21 // this list of conditions and the following disclaimer in the documentation
22 // and/or other materials provided with the distribution.
23 //
24 // (3) Neither the name of the University of California, Lawrence Berkeley National
25 // Laboratory, U.S. Dept. of Energy nor the names of its contributors may be
26 // used to endorse or promote products derived from this software without
27 // specific prior written permission.
28 //
29 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
30 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
31 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 // IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
33 // INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
34 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
36 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
37 // OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
38 // OF THE POSSIBILITY OF SUCH DAMAGE.
39 //
40 //=============================================================================
41 // The PPP2 algorithm and software were jointly developed by
42 // Hamish Carr (University of Leeds), Gunther H. Weber (LBNL), and
43 // Oliver Ruebel (LBNL)
44 //==============================================================================
45 
46 #ifndef vtk_m_worklet_contourtree_distributed_hierarchical_augmenter_set_first_attachment_point_in_round_worklet_h
47 #define vtk_m_worklet_contourtree_distributed_hierarchical_augmenter_set_first_attachment_point_in_round_worklet_h
48 
51 
52 namespace vtkm
53 {
54 namespace worklet
55 {
56 namespace contourtree_distributed
57 {
58 namespace hierarchical_augmenter
59 {
60 
64 {
65 public:
69  using ControlSignature = void(WholeArrayIn attachmentIds, // input
70  WholeArrayIn superparentRounds, // input
71  WholeArrayInOut firstAttachmentPointInRound // input/output
72 
73  );
74  using ExecutionSignature = void(InputIndex, _1, _2, _3);
75  using InputDomain = _1;
76 
77  // Default Constructor
80 
81  template <typename InFieldPortalType, typename InOutFieldPortalType>
82  VTKM_EXEC void operator()(const vtkm::Id& attachmentPoint,
83  const InFieldPortalType& attachmentIdsPortal,
84  const InFieldPortalType& superparentRoundsPortal,
85  const InOutFieldPortalType& firstAttachmentPointInRoundPortal) const
86  {
87  // per attachment point
88  // retrieve the ID of the attachment point
89  vtkm::Id attachmentPointId = attachmentIdsPortal.Get(attachmentPoint);
90  // the 0th element always starts a segment, so set the round's beginning
91  if (attachmentPoint == 0)
92  {
93  firstAttachmentPointInRoundPortal.Set(superparentRoundsPortal.Get(attachmentPointId),
94  static_cast<vtkm::Id>(0));
95  }
96  // otherwise, a segment begins when it's SP round is different from the next one down
97  else
98  { // not the beginning of the array
99  // retrieve the two attachment point IDs
100  vtkm::Id previousAttachmentPointId = attachmentIdsPortal.Get(attachmentPoint - 1);
101  // and the corresponding superparent rounds
102  vtkm::Id superparentRound = superparentRoundsPortal.Get(attachmentPointId);
103  vtkm::Id previousSuperparentRound = superparentRoundsPortal.Get(previousAttachmentPointId);
104  // detect where the segment ID changes & use that to set the value
105  if (superparentRound != previousSuperparentRound)
106  {
107  firstAttachmentPointInRoundPortal.Set(superparentRound, attachmentPoint);
108  }
109  } // not the beginning of the array
110 
111 
112  // In serial this worklet implements the following operation
113  /*
114  for (vtkm::Id attachmentPoint = 0; attachmentPoint < attachmentIDs.size(); attachmentPoint++)
115  { // per attachment point
116  // retrieve the ID of the attachment point
117  vtkm::Id attachmentPointID = attachmentIDs[attachmentPoint];
118  // the 0th element always starts a segment, so set the round's beginning
119  if (attachmentPoint == 0)
120  firstAttachmentPointInRound[superparentRounds[attachmentPointID]] = 0;
121  // otherwise, a segment begins when it's SP round is different from the next one down
122  else
123  { // not the beginning of the array
124  // retrieve the two attachment point IDs
125  vtkm::Id previousAttachmentPointID = attachmentIDs[attachmentPoint-1];
126  // and the corresponding superparent rounds
127  vtkm::Id superparentRound = superparentRounds[attachmentPointID];
128  vtkm::Id previousSuperparentRound = superparentRounds[previousAttachmentPointID];
129 
130  // detect where the segment ID changes & use that to set the value
131  if (superparentRound != previousSuperparentRound)
132  firstAttachmentPointInRound[superparentRound] = attachmentPoint;
133  } // not the beginning of the array
134 
135  } // per attachment point
136 
137  */
138  } // operator()()
139 }; // SetFirstAttachmentPointInRoundWorklet
140 
141 } // namespace hierarchical_augmenter
142 } // namespace contourtree_distributed
143 } // namespace worklet
144 } // namespace vtkm
145 
146 #endif
vtkm::worklet::contourtree_distributed::hierarchical_augmenter::SetFirstAttachmentPointInRoundWorklet
Worklet used in HierarchicalHyperSweeper.TransferWeights(...) to implement step 7b.
Definition: SetFirstAttachmentPointInRoundWorklet.h:63
VTKM_EXEC
#define VTKM_EXEC
Definition: ExportMacros.h:51
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
WorkletMapField.h
VTKM_EXEC_CONT
#define VTKM_EXEC_CONT
Definition: ExportMacros.h:52
vtkm::worklet::contourtree_distributed::hierarchical_augmenter::SetFirstAttachmentPointInRoundWorklet::SetFirstAttachmentPointInRoundWorklet
VTKM_EXEC_CONT SetFirstAttachmentPointInRoundWorklet()
Definition: SetFirstAttachmentPointInRoundWorklet.h:79
vtkm::worklet::contourtree_distributed::hierarchical_augmenter::SetFirstAttachmentPointInRoundWorklet::ExecutionSignature
void(InputIndex, _1, _2, _3) ExecutionSignature
Definition: SetFirstAttachmentPointInRoundWorklet.h:74
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::contourtree_distributed::hierarchical_augmenter::SetFirstAttachmentPointInRoundWorklet::InputDomain
_1 InputDomain
Definition: SetFirstAttachmentPointInRoundWorklet.h:75
Types.h
vtkm::worklet::contourtree_distributed::hierarchical_augmenter::SetFirstAttachmentPointInRoundWorklet::ControlSignature
void(WholeArrayIn attachmentIds, WholeArrayIn superparentRounds, WholeArrayInOut firstAttachmentPointInRound) ControlSignature
Control signature for the worklet NOTE: we need this to be in/out because any valyes we don't set her...
Definition: SetFirstAttachmentPointInRoundWorklet.h:73
vtkm::worklet::contourtree_distributed::hierarchical_augmenter::SetFirstAttachmentPointInRoundWorklet::operator()
VTKM_EXEC void operator()(const vtkm::Id &attachmentPoint, const InFieldPortalType &attachmentIdsPortal, const InFieldPortalType &superparentRoundsPortal, const InOutFieldPortalType &firstAttachmentPointInRoundPortal) const
Definition: SetFirstAttachmentPointInRoundWorklet.h:82
vtkm::exec::arg::InputIndex
The ExecutionSignature tag to use to get the input index.
Definition: InputIndex.h:42
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38