VTK-m  2.0
VertexMergeComparator.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 // Basically, we have a single functor (so far), whose job is to work out the downwards
62 // join neighbour of each vertex.
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 //=======================================================================================
68 
69 #ifndef vtkm_worklet_contourtree_vertex_merge_comparator_h
70 #define vtkm_worklet_contourtree_vertex_merge_comparator_h
71 
72 #include <vtkm/cont/ArrayHandle.h>
74 
75 namespace vtkm
76 {
77 namespace worklet
78 {
79 namespace contourtree
80 {
81 
82 //=======================================================================================
83 //
84 // VertexMergeComparator
85 //
86 // A comparator that sorts the vertices on the join maximum (assuming already sorted on
87 // indexed value)
88 //
89 //=======================================================================================
90 
91 template <typename T, typename StorageType>
93 {
94 public:
97 
101 
102  VTKM_CONT
103  VertexMergeComparator(ValueArrayType values, IdArrayType extrema, bool isJoinTree)
104  : Values(values)
105  , Extrema(extrema)
106  , IsJoinTree(isJoinTree)
107  {
108  }
109 
111  {
112  public:
115 
119 
120  VTKM_CONT
121  ExecObject(ValuePortalType values, IdPortalType extrema, bool isJoinTree)
122  : Values(values)
123  , Extrema(extrema)
124  , IsJoinTree(isJoinTree)
125  {
126  }
127 
128  VTKM_EXEC
129  bool operator()(const vtkm::Id& i, const vtkm::Id& j) const
130  {
131  // retrieve the pseudo-extremum the vertex belongs to
132  vtkm::Id pseudoExtI = this->Extrema.Get(i);
133  vtkm::Id pseudoExtJ = this->Extrema.Get(j);
134 
135  if (pseudoExtI < pseudoExtJ)
136  return false ^ this->IsJoinTree;
137  if (pseudoExtJ < pseudoExtI)
138  return true ^ this->IsJoinTree;
139 
140  T valueI = this->Values.Get(i);
141  T valueJ = this->Values.Get(j);
142 
143  if (valueI < valueJ)
144  {
145  return false ^ this->IsJoinTree;
146  }
147  if (valueI > valueJ)
148  {
149  return true ^ this->IsJoinTree;
150  }
151  if (i < j)
152  {
153  return false ^ this->IsJoinTree;
154  }
155  if (j < i)
156  {
157  return true ^ this->IsJoinTree;
158  }
159  return false; // true ^ isJoinTree;
160  }
161  };
162 
164  vtkm::cont::Token& token) const
165  {
166  return ExecObject(this->Values.PrepareForInput(device, token),
167  this->Extrema.PrepareForInput(device, token),
168  this->IsJoinTree);
169  }
170 }; // VertexMergeComparator
171 }
172 }
173 }
174 
175 #endif
vtkm::cont::ArrayHandle< T, StorageType >
ArrayHandle.h
vtkm::worklet::contourtree::VertexMergeComparator
Definition: VertexMergeComparator.h:92
vtkm::worklet::contourtree::VertexMergeComparator::ExecObject::Extrema
IdPortalType Extrema
Definition: VertexMergeComparator.h:117
VTKM_EXEC
#define VTKM_EXEC
Definition: ExportMacros.h:51
vtkm::worklet::contourtree::VertexMergeComparator::ExecObject::IdPortalType
typename IdArrayType::ReadPortalType IdPortalType
Definition: VertexMergeComparator.h:114
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
vtkm::cont::ArrayHandle::PrepareForInput
VTKM_CONT ReadPortalType PrepareForInput(vtkm::cont::DeviceAdapterId device, vtkm::cont::Token &token) const
Prepares this array to be used as an input to an operation in the execution environment.
Definition: ArrayHandle.h:574
vtkm::cont::ArrayHandle< T, StorageType >::ReadPortalType
typename StorageType::ReadPortalType ReadPortalType
Definition: ArrayHandle.h:294
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::contourtree::VertexMergeComparator::ExecObject::ValuePortalType
typename ValueArrayType::ReadPortalType ValuePortalType
Definition: VertexMergeComparator.h:113
vtkm::cont::Token
A token to hold the scope of an ArrayHandle or other object.
Definition: Token.h:35
vtkm::worklet::contourtree::VertexMergeComparator::ExecObject::operator()
VTKM_EXEC bool operator()(const vtkm::Id &i, const vtkm::Id &j) const
Definition: VertexMergeComparator.h:129
vtkm::worklet::contourtree::VertexMergeComparator::ExecObject::ExecObject
VTKM_CONT ExecObject(ValuePortalType values, IdPortalType extrema, bool isJoinTree)
Definition: VertexMergeComparator.h:121
vtkm::worklet::contourtree::VertexMergeComparator::Values
ValueArrayType Values
Definition: VertexMergeComparator.h:98
VTKM_CONT
#define VTKM_CONT
Definition: ExportMacros.h:57
vtkm::worklet::contourtree::VertexMergeComparator::ExecObject::Values
ValuePortalType Values
Definition: VertexMergeComparator.h:116
vtkm::worklet::contourtree::VertexMergeComparator::ExecObject::IsJoinTree
bool IsJoinTree
Definition: VertexMergeComparator.h:118
vtkm::cont::ExecutionObjectBase
Base ExecutionObjectBase for execution objects to inherit from so that you can use an arbitrary objec...
Definition: ExecutionObjectBase.h:31
vtkm::cont::DeviceAdapterId
Definition: DeviceAdapterTag.h:52
vtkm::worklet::contourtree::VertexMergeComparator::VertexMergeComparator
VTKM_CONT VertexMergeComparator(ValueArrayType values, IdArrayType extrema, bool isJoinTree)
Definition: VertexMergeComparator.h:103
vtkm::worklet::contourtree::VertexMergeComparator::PrepareForExecution
VTKM_CONT ExecObject PrepareForExecution(vtkm::cont::DeviceAdapterId device, vtkm::cont::Token &token) const
Definition: VertexMergeComparator.h:163
vtkm::worklet::contourtree::VertexMergeComparator::Extrema
IdArrayType Extrema
Definition: VertexMergeComparator.h:99
ExecutionObjectBase.h
vtkm::worklet::contourtree::VertexMergeComparator::ExecObject
Definition: VertexMergeComparator.h:110
vtkm::worklet::contourtree::VertexMergeComparator::IsJoinTree
bool IsJoinTree
Definition: VertexMergeComparator.h:100