VTK-m  2.0
CopySupernodes.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 #ifndef vtkm_worklet_contourtree_copy_supernodes_h
58 #define vtkm_worklet_contourtree_copy_supernodes_h
59 
61 
62 namespace vtkm
63 {
64 namespace worklet
65 {
66 namespace contourtree
67 {
68 
69 // Worklet for doing regular to candidate
71 {
72 public:
73  using ControlSignature = void(FieldIn isSupernode, // (input) is this a supernode
74  FieldIn regularID, // (input) candidate ID
75  FieldIn superID, // (input) supernode ID
76  FieldIn upCandidate, // (input)
77  FieldIn downCandidate, // (input)
78  WholeArrayOut regularToCritical, // (output)
79  WholeArrayOut supernodes, // (output) compacted supernodes
80  WholeArrayOut updegree, // (output) compacted updegree
81  WholeArrayOut downdegree); // (output) compacted downdegree
82  using ExecutionSignature = void(_1, _2, _3, _4, _5, _6, _7, _8, _9);
83  using InputDomain = _1;
84 
85  // Constructor
88 
89  template <typename OutFieldPortalType>
90  VTKM_EXEC void operator()(const vtkm::Id& isSupernode,
91  const vtkm::Id& regularID,
92  const vtkm::Id& superID,
93  const vtkm::Id& upCandidate,
94  const vtkm::Id& downCandidate,
95  const OutFieldPortalType& regularToCritical,
96  const OutFieldPortalType& supernodes,
97  const OutFieldPortalType& updegree,
98  const OutFieldPortalType& downdegree) const
99  {
100  if (isSupernode)
101  { // supernode
102  // update the inverse lookup, &c.
103  regularToCritical.Set(regularID, superID);
104  supernodes.Set(superID, regularID);
105  updegree.Set(superID, upCandidate);
106  downdegree.Set(superID, downCandidate);
107  }
108  }
109 }; // CopySupernodes
110 }
111 }
112 }
113 
114 #endif
vtkm::worklet::contourtree::CopySupernodes::ControlSignature
void(FieldIn isSupernode, FieldIn regularID, FieldIn superID, FieldIn upCandidate, FieldIn downCandidate, WholeArrayOut regularToCritical, WholeArrayOut supernodes, WholeArrayOut updegree, WholeArrayOut downdegree) ControlSignature
Definition: CopySupernodes.h:81
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::worklet::contourtree::CopySupernodes
Definition: CopySupernodes.h:70
VTKM_EXEC_CONT
#define VTKM_EXEC_CONT
Definition: ExportMacros.h:52
vtkm::worklet::contourtree::CopySupernodes::CopySupernodes
VTKM_EXEC_CONT CopySupernodes()
Definition: CopySupernodes.h:87
vtkm::Id
vtkm::Int32 Id
Represents an ID (index into arrays).
Definition: Types.h:191
vtkm::worklet::contourtree::CopySupernodes::ExecutionSignature
void(_1, _2, _3, _4, _5, _6, _7, _8, _9) ExecutionSignature
Definition: CopySupernodes.h:82
vtkm::worklet::WorkletMapField::FieldIn
A control signature tag for input fields.
Definition: WorkletMapField.h:49
vtkm::worklet::contourtree::CopySupernodes::InputDomain
_1 InputDomain
Definition: CopySupernodes.h:83
vtkm::worklet::contourtree::CopySupernodes::operator()
VTKM_EXEC void operator()(const vtkm::Id &isSupernode, const vtkm::Id &regularID, const vtkm::Id &superID, const vtkm::Id &upCandidate, const vtkm::Id &downCandidate, const OutFieldPortalType &regularToCritical, const OutFieldPortalType &supernodes, const OutFieldPortalType &updegree, const OutFieldPortalType &downdegree) const
Definition: CopySupernodes.h:90
vtkm::worklet::WorkletMapField
Base class for worklets that do a simple mapping of field arrays.
Definition: WorkletMapField.h:38