VTK-m  2.0
Mesh3D_DEM_SaddleStarter.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 replaces a parallel loop examining neighbours - again, for arbitrary
62 // meshes, it needs to be a reduction, but for regular meshes, it's faster this way.
63 //
64 // Any vector needed by the functor for lookup purposes will be passed as a parameter to
65 // the constructor and saved, with the actual function call being the operator ()
66 //
67 // Vectors marked I/O are intrinsically risky unless there is an algorithmic guarantee
68 // that the read/writes are completely independent - which for our case actually occurs
69 // The I/O vectors should therefore be justified in comments both here & in caller
70 //
71 //=======================================================================================
72 
73 #ifndef vtkm_worklet_contourtree_mesh3d_dem_saddle_starter_h
74 #define vtkm_worklet_contourtree_mesh3d_dem_saddle_starter_h
75 
79 
80 namespace vtkm
81 {
82 namespace worklet
83 {
84 namespace contourtree
85 {
86 
87 // Worklet for setting initial chain maximum value
89 {
90 public:
92 
93  using ControlSignature = void(FieldIn vertex, // (input) index into active vertices
94  FieldIn outDegFirstEdge, // (input) out degree/first edge of vertex
95  FieldIn valueIndex, // (input) index into regular graph
96  WholeArrayIn linkMask, // (input) neighbors of vertex
97  WholeArrayIn arcArray, // (input) chain extrema per vertex
98  WholeArrayIn inverseIndex, // (input) permutation of index
99  WholeArrayIn neighbourTable, // (input) table for neighbour offsets
100  WholeArrayIn caseTable, // (input) case table for neighbours
101  WholeArrayOut edgeNear, // (output) low end of edges
102  WholeArrayOut edgeFar, // (output) high end of edges
103  WholeArrayOut activeEdges); // (output) active edge list
104  using ExecutionSignature = void(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11);
105  using InputDomain = _1;
106 
107  vtkm::Id nRows; // (input) number of rows in 3D
108  vtkm::Id nCols; // (input) number of cols in 3D
109  vtkm::Id nSlices; // (input) number of cols in 3D
110  bool ascending; // (input) ascending or descending (join or split)
111 
112  // Constructor
114  Mesh3D_DEM_SaddleStarter(vtkm::Id NRows, vtkm::Id NCols, vtkm::Id NSlices, bool Ascending)
115  : nRows(NRows)
116  , nCols(NCols)
117  , nSlices(NSlices)
118  , ascending(Ascending)
119  {
120  }
121 
122  // operator() routine that executes the loop
123  template <typename InFieldPortalType,
124  typename NeighbourTableType,
125  typename CaseTableType,
126  typename OutFieldPortalType>
127  VTKM_EXEC void operator()(const vtkm::Id& vertex,
128  const vtkm::Pair<vtkm::Id, vtkm::Id>& outDegFirstEdge,
129  const vtkm::Id& valueIndex,
130  const InFieldPortalType& linkMask,
131  const InFieldPortalType& arcArray,
132  const InFieldPortalType& inverseIndex,
133  const NeighbourTableType& neighbourTable,
134  const CaseTableType& caseTable,
135  const OutFieldPortalType& edgeNear,
136  const OutFieldPortalType& edgeFar,
137  const OutFieldPortalType& activeEdges) const
138  {
139  vtkm::Id outdegree = outDegFirstEdge.first;
140  vtkm::Id firstEdge = outDegFirstEdge.second;
141  // skip local extrema
142  if (outdegree == 0)
143  return;
144 
145  // get the saddle mask for the vertex
146  vtkm::Id nbrMask = linkMask.Get(valueIndex);
147 
148  // get the row and column
149  vtkm::Id row = VERTEX_ROW_3D(valueIndex, nRows, nCols);
150  vtkm::Id col = VERTEX_COL_3D(valueIndex, nRows, nCols);
151  vtkm::Id slice = VERTEX_SLICE_3D(valueIndex, nRows, nCols);
152 
153  // we know which edges are outbound, so we count to get the outdegree
154  vtkm::Id outDegree = 0;
155  vtkm::Id farEnds[MAX_OUTDEGREE_3D];
156 
157  for (vtkm::Id edgeNo = 0; edgeNo < N_INCIDENT_EDGES_3D; edgeNo++)
158  {
159  if (caseTable.Get(nbrMask) & (1 << edgeNo))
160  {
161  vtkm::Id indx = edgeNo * 3;
162  vtkm::Id nbrSlice = slice + neighbourTable.Get(indx);
163  vtkm::Id nbrRow = row + neighbourTable.Get(indx + 1);
164  vtkm::Id nbrCol = col + neighbourTable.Get(indx + 2);
165  vtkm::Id nbr = VERTEX_ID_3D(nbrSlice, nbrRow, nbrCol, nRows, nCols);
166 
167  farEnds[outDegree++] = inverseIndex.Get(arcArray.Get(nbr));
168  }
169  }
170 
171  // now we check them against each other
172  if ((outDegree == 2) && (farEnds[0] == farEnds[1]))
173  { // outDegree 2 & both match
174  // treat as a regular point
175  outDegree = 1;
176  } // outDegree 2 & both match
177  else if (outDegree == 3)
178  { // outDegree 3
179  if (farEnds[0] == farEnds[1])
180  { // first two match
181  if (farEnds[0] == farEnds[2])
182  { // triple match
183  // all match - treat as regular point
184  outDegree = 1;
185  } // triple match
186  else
187  { // first two match, but not third
188  // copy third down one place
189  farEnds[1] = farEnds[2];
190  // and reset the count
191  outDegree = 2;
192  } //
193  } // first two match
194  else if ((farEnds[0] == farEnds[2]) || (farEnds[1] == farEnds[2]))
195  { // second one matches either of the first two
196  // decrease the count, keeping 0 & 1
197  outDegree = 2;
198  } // second one matches either of the first two
199  } // outDegree 3
200 
201  // now the farEnds array holds the far ends we can reach
202  for (vtkm::Id edge = 0; edge < outDegree; edge++)
203  {
204  // compute the edge index in the edge arrays
205  vtkm::Id edgeID = firstEdge + edge;
206 
207  // now set the near and far ends and save the edge itself
208  edgeNear.Set(edgeID, vertex);
209  edgeFar.Set(edgeID, farEnds[edge]);
210  activeEdges.Set(edgeID, edgeID);
211  } // per start
212  } // operator()
213 
214 }; // Mesh3D_DEM_SaddleStarter
215 }
216 }
217 }
218 
219 #endif
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::Mesh3D_DEM_SaddleStarter
VTKM_EXEC_CONT Mesh3D_DEM_SaddleStarter(vtkm::Id NRows, vtkm::Id NCols, vtkm::Id NSlices, bool Ascending)
Definition: Mesh3D_DEM_SaddleStarter.h:114
VTKM_EXEC
#define VTKM_EXEC
Definition: ExportMacros.h:51
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
Mesh3D_DEM_Triangulation_Macros.h
WorkletMapField.h
VTKM_EXEC_CONT
#define VTKM_EXEC_CONT
Definition: ExportMacros.h:52
VERTEX_ROW_3D
#define VERTEX_ROW_3D(V, NROWS, NCOLS)
Definition: Mesh3D_DEM_Triangulation_Macros.h:70
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
N_INCIDENT_EDGES_3D
#define N_INCIDENT_EDGES_3D
Definition: Mesh3D_DEM_Triangulation_Macros.h:66
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::ExecutionSignature
void(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11) ExecutionSignature
Definition: Mesh3D_DEM_SaddleStarter.h:104
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::InputDomain
_1 InputDomain
Definition: Mesh3D_DEM_SaddleStarter.h:105
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::ControlSignature
void(FieldIn vertex, FieldIn outDegFirstEdge, FieldIn valueIndex, WholeArrayIn linkMask, WholeArrayIn arcArray, WholeArrayIn inverseIndex, WholeArrayIn neighbourTable, WholeArrayIn caseTable, WholeArrayOut edgeNear, WholeArrayOut edgeFar, WholeArrayOut activeEdges) ControlSignature
Definition: Mesh3D_DEM_SaddleStarter.h:103
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::nSlices
vtkm::Id nSlices
Definition: Mesh3D_DEM_SaddleStarter.h:109
LinkComponentCaseTable3D.h
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::operator()
VTKM_EXEC void operator()(const vtkm::Id &vertex, const vtkm::Pair< vtkm::Id, vtkm::Id > &outDegFirstEdge, const vtkm::Id &valueIndex, const InFieldPortalType &linkMask, const InFieldPortalType &arcArray, const InFieldPortalType &inverseIndex, const NeighbourTableType &neighbourTable, const CaseTableType &caseTable, const OutFieldPortalType &edgeNear, const OutFieldPortalType &edgeFar, const OutFieldPortalType &activeEdges) const
Definition: Mesh3D_DEM_SaddleStarter.h:127
vtkm::worklet::WorkletMapField::FieldIn
A control signature tag for input fields.
Definition: WorkletMapField.h:49
vtkm::Pair::first
FirstType first
The pair's first object.
Definition: Pair.h:50
VERTEX_SLICE_3D
#define VERTEX_SLICE_3D(V, NROWS, NCOLS)
Definition: Mesh3D_DEM_Triangulation_Macros.h:76
vtkm::List
Definition: List.h:34
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::nRows
vtkm::Id nRows
Definition: Mesh3D_DEM_SaddleStarter.h:107
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter
Definition: Mesh3D_DEM_SaddleStarter.h:88
VERTEX_ID_3D
#define VERTEX_ID_3D(S, R, C, NROWS, NCOLS)
Definition: Mesh3D_DEM_Triangulation_Macros.h:79
VERTEX_COL_3D
#define VERTEX_COL_3D(V, NROWS, NCOLS)
Definition: Mesh3D_DEM_Triangulation_Macros.h:73
vtkm::Pair
A vtkm::Pair is essentially the same as an STL pair object except that the methods (constructors and ...
Definition: Pair.h:29
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::nCols
vtkm::Id nCols
Definition: Mesh3D_DEM_SaddleStarter.h:108
vtkm::Pair::second
SecondType second
The pair's second object.
Definition: Pair.h:55
MAX_OUTDEGREE_3D
#define MAX_OUTDEGREE_3D
Definition: Mesh3D_DEM_Triangulation_Macros.h:67
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38
vtkm::worklet::contourtree::Mesh3D_DEM_SaddleStarter::ascending
bool ascending
Definition: Mesh3D_DEM_SaddleStarter.h:110