VTK-m  2.0
ActiveEdgeTransferrer.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) 2016, Los Alamos National Security, LLC
11 // All rights reserved.
12 //
13 // Copyright 2016. Los Alamos National Security, LLC.
14 // This software was produced under U.S. Government contract DE-AC52-06NA25396
15 // for Los Alamos National Laboratory (LANL), which is operated by
16 // Los Alamos National Security, LLC for the U.S. Department of Energy.
17 // The U.S. Government has rights to use, reproduce, and distribute this
18 // software. NEITHER THE GOVERNMENT NOR LOS ALAMOS NATIONAL SECURITY, LLC
19 // MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LIABILITY FOR THE
20 // USE OF THIS SOFTWARE. If software is modified to produce derivative works,
21 // such modified software should be clearly marked, so as not to confuse it
22 // with the version available from LANL.
23 //
24 // Additionally, redistribution and use in source and binary forms, with or
25 // without modification, are permitted provided that the following conditions
26 // are met:
27 //
28 // 1. Redistributions of source code must retain the above copyright notice,
29 // this list of conditions and the following disclaimer.
30 // 2. Redistributions in binary form must reproduce the above copyright notice,
31 // this list of conditions and the following disclaimer in the documentation
32 // and/or other materials provided with the distribution.
33 // 3. Neither the name of Los Alamos National Security, LLC, Los Alamos
34 // National Laboratory, LANL, the U.S. Government, nor the names of its
35 // contributors may be used to endorse or promote products derived from
36 // this software without specific prior written permission.
37 //
38 // THIS SOFTWARE IS PROVIDED BY LOS ALAMOS NATIONAL SECURITY, LLC AND
39 // CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
40 // BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
41 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LOS ALAMOS
42 // NATIONAL SECURITY, LLC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
43 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
44 // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
45 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
46 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
47 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
48 // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
49 //============================================================================
50 
51 // This code is based on the algorithm presented in the paper:
52 // “Parallel Peak Pruning for Scalable SMP Contour Tree Computation.”
53 // Hamish Carr, Gunther Weber, Christopher Sewell, and James Ahrens.
54 // Proceedings of the IEEE Symposium on Large Data Analysis and Visualization
55 // (LDAV), October 2016, Baltimore, Maryland.
56 
57 //=======================================================================================
58 //
59 // COMMENTS:
60 //
61 // This functor identifies for each vertex which edges to keep. For arbitrary meshes,
62 // this should use reductions. For regular meshes, this way is faster due to low bounded
63 // updegree.
64 //
65 // Any vector needed by the functor for lookup purposes will be passed as a parameter to
66 // the constructor and saved, with the actual function call being the operator ()
67 //
68 // Vectors marked I/O are intrinsically risky unless there is an algorithmic guarantee
69 // that the read/writes are completely independent - which for our case actually occurs
70 // The I/O vectors should therefore be justified in comments both here & in caller
71 //
72 //=======================================================================================
73 
74 #ifndef vtk_m_worklet_contourtree_active_edge_transferrer_h
75 #define vtk_m_worklet_contourtree_active_edge_transferrer_h
76 
78 
79 namespace vtkm
80 {
81 namespace worklet
82 {
83 namespace contourtree
84 {
85 
86 // Worklet: set initial chain maximum value
88 {
89 public:
90  using ControlSignature = void(FieldIn vertexID, // (input) active vertex ID
91  FieldIn newPosition, // (input) new position of edge in array
92  FieldIn newOutdegree, // (input) the new updegree computed
93  WholeArrayIn activeEdges, // (input) active edges
94  WholeArrayIn prunesTo, // (input) where a vertex prunes to
95  WholeArrayInOut firstEdge, // (i/o) first edge of each active vertex
96  WholeArrayInOut outdegree, // (i/o) existing vertex updegrees
97  WholeArrayInOut chainExtremum, // (i/o) chain extremum for vertices
98  WholeArrayInOut edgeFar, // (i/o) high end of each edge
99  WholeArrayOut newActiveEdges); // (output) new active edge list
100  using ExecutionSignature = void(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10);
101  using InputDomain = _1;
102 
103  // WARNING: POTENTIAL RISK FOR I/O
104  // chainMaximum is safe for I/O here because:
105  // we have previously eliminated maxima from the active vertex list
106  // we lookup chainMaximum of edgeHigh, which is guaranteed to be a maximum
107  // therefore, the chainMaximum entries edited are *NEVER* also accessed & v.v.
108  // edgeHigh is safe to edit, because each element only accesses it's own, and
109  // reads the current value before writing to it
110  // the same is true of firstEdge and updegree
111 
112  template <typename InFieldPortalType, typename InOutFieldPortalType, typename OutFieldPortalType>
113  VTKM_EXEC void operator()(const vtkm::Id& vertexID,
114  const vtkm::Id& newPosition,
115  const vtkm::Id& newOutdegree,
116  const InFieldPortalType& activeEdges,
117  const InFieldPortalType& prunesTo,
118  const InOutFieldPortalType& firstEdge,
119  const InOutFieldPortalType& outdegree,
120  const InOutFieldPortalType& chainExtremum,
121  const InOutFieldPortalType& edgeFar,
122  const OutFieldPortalType& newActiveEdges) const
123  {
124  // retrieve actual vertex ID & first edge
125  vtkm::Id edgeFirst = firstEdge.Get(vertexID);
126 
127  // internal counter for # of edges
128  vtkm::Id whichEdge = newPosition;
129 
130  // walk through the vertex edges, counting as we go
131  for (vtkm::Id edge = 0; edge < outdegree.Get(vertexID); edge++)
132  {
133  // compute the index and edge ID of this edge
134  vtkm::Id edgeIndex = edgeFirst + edge;
135  vtkm::Id edgeID = activeEdges.Get(edgeIndex);
136 
137  // retrieve the vertex ID for the high end & update for pruning
138  vtkm::Id highEnd = prunesTo.Get(chainExtremum.Get(edgeFar.Get(edgeID)));
139 
140  // we want to ignore edges that lead back to this vertex
141  if (highEnd != vertexID)
142  {
143  // reset the high end of the edge, copying downwards
144  edgeFar.Set(edgeID, highEnd);
145 
146  // and keep the edge around
147  newActiveEdges.Set(whichEdge++, edgeID);
148 
149  // and reset the chain maximum for good measure
150  chainExtremum.Set(vertexID, highEnd);
151  }
152  }
153 
154  // now reset the firstEdge variable for this vertex
155  outdegree.Set(vertexID, newOutdegree);
156  firstEdge.Set(vertexID, newPosition);
157  }
158 }; // ActiveEdgeTransferrer
159 }
160 }
161 }
162 
163 #endif
vtkm::worklet::contourtree::ActiveEdgeTransferrer::ExecutionSignature
void(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10) ExecutionSignature
Definition: ActiveEdgeTransferrer.h:100
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::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::contourtree::ActiveEdgeTransferrer
Definition: ActiveEdgeTransferrer.h:87
vtkm::worklet::contourtree::ActiveEdgeTransferrer::operator()
VTKM_EXEC void operator()(const vtkm::Id &vertexID, const vtkm::Id &newPosition, const vtkm::Id &newOutdegree, const InFieldPortalType &activeEdges, const InFieldPortalType &prunesTo, const InOutFieldPortalType &firstEdge, const InOutFieldPortalType &outdegree, const InOutFieldPortalType &chainExtremum, const InOutFieldPortalType &edgeFar, const OutFieldPortalType &newActiveEdges) const
Definition: ActiveEdgeTransferrer.h:113
vtkm::worklet::contourtree::ActiveEdgeTransferrer::InputDomain
_1 InputDomain
Definition: ActiveEdgeTransferrer.h:101
vtkm::worklet::WorkletMapField::FieldIn
A control signature tag for input fields.
Definition: WorkletMapField.h:49
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38
vtkm::worklet::contourtree::ActiveEdgeTransferrer::ControlSignature
void(FieldIn vertexID, FieldIn newPosition, FieldIn newOutdegree, WholeArrayIn activeEdges, WholeArrayIn prunesTo, WholeArrayInOut firstEdge, WholeArrayInOut outdegree, WholeArrayInOut chainExtremum, WholeArrayInOut edgeFar, WholeArrayOut newActiveEdges) ControlSignature
Definition: ActiveEdgeTransferrer.h:99