VTK-m  2.0
Mesh2D_DEM_VertexStarter.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_mesh2d_dem_vertex_starter_h
74 #define vtkm_worklet_contourtree_mesh2d_dem_vertex_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
88 template <typename T>
90 {
91 public:
93 
94  using ControlSignature = void(FieldIn vertex, // (input) index of vertex
95  WholeArrayIn values, // (input) values within mesh
96  FieldOut chain, // (output) modify the chains
97  FieldOut linkMask); // (output) modify the mask
98  using ExecutionSignature = void(_1, _2, _3, _4);
99  using InputDomain = _1;
100 
101  vtkm::Id nRows; // (input) number of rows in 2D
102  vtkm::Id nCols; // (input) number of cols in 2D
103  bool ascending; // ascending or descending (join or split tree)
104 
105  // Constructor
107  Mesh2D_DEM_VertexStarter(vtkm::Id NRows, vtkm::Id NCols, bool Ascending)
108  : nRows(NRows)
109  , nCols(NCols)
110  , ascending(Ascending)
111  {
112  }
113 
114  // Locate the next vertex in direction indicated
115  template <typename InFieldPortalType>
116  VTKM_EXEC void operator()(const vtkm::Id& vertex,
117  const InFieldPortalType& values,
118  vtkm::Id& chain,
119  vtkm::Id& linkMask) const
120  {
122  vtkm::Id row = VERTEX_ROW(vertex, nCols);
123  vtkm::Id col = VERTEX_COL(vertex, nCols);
124 
125  vtkm::Id destination = vertex;
126  vtkm::Id mask = 0;
127 
128  bool isLeft = (col == 0);
129  bool isRight = (col == nCols - 1);
130  bool isTop = (row == 0);
131  bool isBottom = (row == nRows - 1);
132 
133  for (vtkm::Id edgeNo = 0; edgeNo < N_INCIDENT_EDGES; edgeNo++)
134  { // per edge
135  vtkm::Id nbr;
136 
137  switch (edgeNo)
138  {
139  case 5: // up
140  if (isTop)
141  break;
142  nbr = vertex - nCols;
143  if (lessThan(vertex, nbr, ascending))
144  break;
145  mask |= 0x20;
146  destination = nbr;
147  break;
148 
149  case 4: // up left
150  if (isLeft || isTop)
151  break;
152  nbr = vertex - nCols - 1;
153  if (lessThan(vertex, nbr, ascending))
154  break;
155  mask |= 0x10;
156  destination = nbr;
157  break;
158 
159  case 3: // left
160  if (isLeft)
161  break;
162  nbr = vertex - 1;
163  if (lessThan(vertex, nbr, ascending))
164  break;
165  mask |= 0x08;
166  destination = nbr;
167  break;
168 
169  case 2: // down
170  if (isBottom)
171  break;
172  nbr = vertex + nCols;
173  if (lessThan(vertex, nbr, ascending))
174  break;
175  mask |= 0x04;
176  destination = nbr;
177  break;
178 
179  case 1: // down right
180  if (isBottom || isRight)
181  break;
182  nbr = vertex + nCols + 1;
183  if (lessThan(vertex, nbr, ascending))
184  break;
185  mask |= 0x02;
186  destination = nbr;
187  break;
188 
189  case 0: // right
190  if (isRight)
191  break;
192  nbr = vertex + 1;
193  if (lessThan(vertex, nbr, ascending))
194  break;
195  mask |= 0x01;
196  destination = nbr;
197  break;
198  } // switch on edgeNo
199  } // per edge
200 
201  linkMask = mask;
202  chain = destination;
203  } // operator()
204 
205 }; // Mesh2D_DEM_VertexStarter
206 }
207 }
208 }
209 
210 #endif
VTKM_EXEC
#define VTKM_EXEC
Definition: ExportMacros.h:51
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
Mesh2D_DEM_Triangulation_Macros.h
VERTEX_COL
#define VERTEX_COL(V, NCOLS)
Definition: Mesh2D_DEM_Triangulation_Macros.h:82
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
N_INCIDENT_EDGES
#define N_INCIDENT_EDGES
Definition: Mesh2D_DEM_Triangulation_Macros.h:75
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter::ascending
bool ascending
Definition: Mesh2D_DEM_VertexStarter.h:103
VertexValueComparator.h
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter::ControlSignature
void(FieldIn vertex, WholeArrayIn values, FieldOut chain, FieldOut linkMask) ControlSignature
Definition: Mesh2D_DEM_VertexStarter.h:97
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter::nCols
vtkm::Id nCols
Definition: Mesh2D_DEM_VertexStarter.h:102
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter::ExecutionSignature
void(_1, _2, _3, _4) ExecutionSignature
Definition: Mesh2D_DEM_VertexStarter.h:98
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter::nRows
vtkm::Id nRows
Definition: Mesh2D_DEM_VertexStarter.h:101
vtkm::worklet::WorkletMapField::FieldIn
A control signature tag for input fields.
Definition: WorkletMapField.h:49
VERTEX_ROW
#define VERTEX_ROW(V, NCOLS)
Definition: Mesh2D_DEM_Triangulation_Macros.h:79
vtkm::worklet::contourtree::VertexValueComparator
Definition: VertexValueComparator.h:83
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter::Mesh2D_DEM_VertexStarter
VTKM_EXEC_CONT Mesh2D_DEM_VertexStarter(vtkm::Id NRows, vtkm::Id NCols, bool Ascending)
Definition: Mesh2D_DEM_VertexStarter.h:107
vtkm::List
Definition: List.h:34
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter::operator()
VTKM_EXEC void operator()(const vtkm::Id &vertex, const InFieldPortalType &values, vtkm::Id &chain, vtkm::Id &linkMask) const
Definition: Mesh2D_DEM_VertexStarter.h:116
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter::InputDomain
_1 InputDomain
Definition: Mesh2D_DEM_VertexStarter.h:99
vtkm::worklet::contourtree::Mesh2D_DEM_VertexStarter
Definition: Mesh2D_DEM_VertexStarter.h:89
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38