VTK-m  2.0
SaddleAscentFunctor.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 // Any vector needed by the functor for lookup purposes will be passed as a parameter to
62 // the constructor and saved, with the actual function call being the operator ()
63 //
64 // Vectors marked I/O are intrinsically risky unless there is an algorithmic guarantee
65 // that the read/writes are completely independent - which for our case actually occurs
66 // The I/O vectors should therefore be justified in comments both here & in caller
67 //
68 //=======================================================================================
69 
70 #ifndef vtkm_worklet_contourtree_saddle_ascent_functor_h
71 #define vtkm_worklet_contourtree_saddle_ascent_functor_h
72 
75 
76 namespace vtkm
77 {
78 namespace worklet
79 {
80 namespace contourtree
81 {
82 
83 // Worklet for setting initial chain maximum value
85 {
86 public:
87  using ControlSignature = void(FieldIn vertexID, // (input) index into active vertices
88  WholeArrayIn firstEdge, // (input) first edge for each active vertex
89  WholeArrayIn outdegree, // (input) updegree of vertex
90  WholeArrayIn activeEdges, // (input) active edges
91  WholeArrayIn chainExtemum, // (input) chain extemum for vertices
92  WholeArrayInOut edgeFar, // (input) high ends of edges
93  FieldOut newOutdegree); // (output) new updegree of vertex
94  using ExecutionSignature = _7(_1, _2, _3, _4, _5, _6);
95  using InputDomain = _1;
96 
97  // Constructor
100 
101  template <typename InFieldPortalType, typename InOutFieldPortalType>
103  const InFieldPortalType& firstEdge,
104  const InFieldPortalType& outdegree,
105  const InFieldPortalType& activeEdges,
106  const InFieldPortalType& chainExtremum,
107  const InOutFieldPortalType& edgeFar) const
108  {
109  vtkm::Id newOutdegree;
110 
111  // first ascent found
112  vtkm::Id firstMax = NO_VERTEX_ASSIGNED;
113  bool isGenuineSaddle = false;
114 
115  // loop through edges
116  for (vtkm::Id edge = 0; edge < outdegree.Get(vertexID); edge++)
117  {
118  // retrieve the edge ID and the high end of the edge
119  vtkm::Id edgeID = activeEdges.Get(firstEdge.Get(vertexID) + edge);
120  vtkm::Id nbrHigh = chainExtremum.Get(edgeFar.Get(edgeID));
121  edgeFar.Set(edgeID, nbrHigh);
122 
123  // test for first one found
124  if (firstMax == NO_VERTEX_ASSIGNED)
125  firstMax = nbrHigh;
126  else // otherwise, check for whether we have an actual join saddle
127  if (firstMax != nbrHigh)
128  { // first non-matching
129  isGenuineSaddle = true;
130  } // first non-matching
131  } // per edge
132 
133  // if it's not a genuine saddle, ignore the edges by setting updegree to 0
134  if (!isGenuineSaddle)
135  newOutdegree = 0;
136  else
137  newOutdegree = outdegree.Get(vertexID);
138  return newOutdegree;
139  }
140 }; // SaddleAscentFunctor
141 }
142 }
143 }
144 
145 #endif
vtkm::worklet::contourtree::SaddleAscentFunctor::InputDomain
_1 InputDomain
Definition: SaddleAscentFunctor.h:95
VTKM_EXEC
#define VTKM_EXEC
Definition: ExportMacros.h:51
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
vtkm::worklet::contourtree::SaddleAscentFunctor::operator()
VTKM_EXEC vtkm::Id operator()(const vtkm::Id &vertexID, const InFieldPortalType &firstEdge, const InFieldPortalType &outdegree, const InFieldPortalType &activeEdges, const InFieldPortalType &chainExtremum, const InOutFieldPortalType &edgeFar) const
Definition: SaddleAscentFunctor.h:102
WorkletMapField.h
VTKM_EXEC_CONT
#define VTKM_EXEC_CONT
Definition: ExportMacros.h:52
vtkm::worklet::WorkletMapField::FieldOut
A control signature tag for output fields.
Definition: WorkletMapField.h:60
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::contourtree::SaddleAscentFunctor::ControlSignature
void(FieldIn vertexID, WholeArrayIn firstEdge, WholeArrayIn outdegree, WholeArrayIn activeEdges, WholeArrayIn chainExtemum, WholeArrayInOut edgeFar, FieldOut newOutdegree) ControlSignature
Definition: SaddleAscentFunctor.h:93
vtkm::worklet::WorkletMapField::FieldIn
A control signature tag for input fields.
Definition: WorkletMapField.h:49
NO_VERTEX_ASSIGNED
#define NO_VERTEX_ASSIGNED
Definition: filter/scalar_topology/worklet/contourtree/Types.h:77
vtkm::worklet::contourtree::SaddleAscentFunctor::SaddleAscentFunctor
VTKM_EXEC_CONT SaddleAscentFunctor()
Definition: SaddleAscentFunctor.h:99
vtkm::worklet::contourtree::SaddleAscentFunctor::ExecutionSignature
_7(_1, _2, _3, _4, _5, _6) ExecutionSignature
Definition: SaddleAscentFunctor.h:94
Types.h
vtkm::worklet::contourtree::SaddleAscentFunctor
Definition: SaddleAscentFunctor.h:84
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38