VTK-m  2.0
JoinSuperArcFinder.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 // After the core join tree is constructed, we need to assign each vertex to a join superarc
62 // This was previously done with a set of rocking iterations, which burned extra memory and
63 // work. The OpenMP version was therefore updated so that each vertex looped until it found
64 // it's destination arc.
65 //
66 // This functor implements that for use by a for_each call.
67 //
68 // Any vector needed by the functor for lookup purposes will be passed as a parameter to
69 // the constructor and saved, with the actual function call being the operator ()
70 //
71 // Vectors marked I/O are intrinsically risky unless there is an algorithmic guarantee
72 // that the read/writes are completely independent - which for our case actually occurs
73 // The I/O vectors should therefore be justified in comments both here & in caller
74 //
75 //=======================================================================================
76 
77 #ifndef vtkm_worklet_contourtree_join_super_arc_finder_h
78 #define vtkm_worklet_contourtree_join_super_arc_finder_h
79 
83 
84 namespace vtkm
85 {
86 namespace worklet
87 {
88 namespace contourtree
89 {
90 
91 // Worklet for finding join superarc - expressed as a unary functor since it is not
92 // guaranteed to write back
93 // There will be no out-of-sequence writes, since:
94 // 1. Critical points are already set and are simply skipped
95 // 2. Regular points only read from critical points
96 // 3. Regular points only write to critical points
97 //
98 template <typename T>
100 {
101 public:
103 
104  using ControlSignature = void(FieldIn vertex, // (input) index into sorted edges
105  WholeArrayIn values, // (input) data values
106  WholeArrayInOut saddles, // (in out) saddles
107  WholeArrayInOut extrema); // (in out) maxima
108  using ExecutionSignature = void(_1, _2, _3, _4);
109  using InputDomain = _1;
110 
112 
113  // Constructor
115  JoinSuperArcFinder(bool IsJoinTree)
116  : isJoinTree(IsJoinTree)
117  {
118  }
119 
120  template <typename InFieldPortalType, typename OutFieldPortalType>
121  VTKM_EXEC void operator()(const vtkm::Id& vertex,
122  const InFieldPortalType& values,
123  const OutFieldPortalType& saddles,
124  const OutFieldPortalType& extrema) const
125  {
127 
128  // local copies
129  vtkm::Id saddle = saddles.Get(vertex);
130  vtkm::Id extreme = extrema.Get(vertex);
131 
132  // now test for regular points
133  if (saddle != extreme)
134  return;
135 
136  // while loop
137  while (lessThan(saddle, vertex, isJoinTree))
138  { // saddle above vertex
139  extreme = extrema.Get(saddle);
140  saddle = saddles.Get(saddle);
141  // if we're in the trunk, break immediately
142  if (saddle == NO_VERTEX_ASSIGNED)
143  break;
144  } // saddle above vertex
145 
146  // when done, write back to the array
147  extrema.Set(vertex, extreme);
148  saddles.Set(vertex, saddle);
149  }
150 }; // JoinSuperArcFinder
151 }
152 }
153 }
154 
155 #endif
vtkm::worklet::contourtree::JoinSuperArcFinder::InputDomain
_1 InputDomain
Definition: JoinSuperArcFinder.h:109
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
VertexValueComparator.h
vtkm::worklet::contourtree::JoinSuperArcFinder::isJoinTree
bool isJoinTree
Definition: JoinSuperArcFinder.h:111
vtkm::worklet::contourtree::JoinSuperArcFinder::JoinSuperArcFinder
VTKM_EXEC_CONT JoinSuperArcFinder(bool IsJoinTree)
Definition: JoinSuperArcFinder.h:115
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::contourtree::JoinSuperArcFinder::operator()
VTKM_EXEC void operator()(const vtkm::Id &vertex, const InFieldPortalType &values, const OutFieldPortalType &saddles, const OutFieldPortalType &extrema) const
Definition: JoinSuperArcFinder.h:121
vtkm::worklet::WorkletMapField::FieldIn
A control signature tag for input fields.
Definition: WorkletMapField.h:49
vtkm::worklet::contourtree::JoinSuperArcFinder::ExecutionSignature
void(_1, _2, _3, _4) ExecutionSignature
Definition: JoinSuperArcFinder.h:108
NO_VERTEX_ASSIGNED
#define NO_VERTEX_ASSIGNED
Definition: filter/scalar_topology/worklet/contourtree/Types.h:77
vtkm::worklet::contourtree::VertexValueComparator
Definition: VertexValueComparator.h:83
vtkm::List
Definition: List.h:34
vtkm::worklet::contourtree::JoinSuperArcFinder
Definition: JoinSuperArcFinder.h:99
vtkm::worklet::contourtree::JoinSuperArcFinder::ControlSignature
void(FieldIn vertex, WholeArrayIn values, WholeArrayInOut saddles, WholeArrayInOut extrema) ControlSignature
Definition: JoinSuperArcFinder.h:107
Types.h
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38