Fermat
kd_builder.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2016, NVIDIA Corporation
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of NVIDIA Corporation nor the
13  * names of its contributors may be used to endorse or promote products
14  * derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
32 #pragma once
33 
34 #include <cugar/basic/vector.h>
35 #include <cugar/kd/kd_node.h>
36 #include <cugar/linalg/vector.h>
37 #include <cugar/linalg/bbox.h>
41 
42 namespace cugar {
43 namespace cuda {
44 
49 template <typename Integer>
131 {
140  template <typename OutputTree, typename Iterator, typename BboxType>
141  void build(
142  OutputTree& out_tree,
143  vector<device_tag, uint32>& out_index,
144  const BboxType bbox,
145  const Iterator points_begin,
146  const Iterator points_end,
147  const uint32 max_leaf_size);
148 
150  caching_device_vector<Integer> m_temp_codes;
151  caching_device_vector<uint32> m_temp_index;
152  uint32 m_node_count;
153  uint32 m_leaf_count;
154 
155  cuda::Radixtree_context m_kd_context;
156 };
157 
161 } // namespace cuda
162 } // namespace cugar
163 
164 #include <cugar/kd/cuda/kd_builder_inline.h>
Defines the context class for the binary tree generate() function.
Define basic k-d tree node structure.
Define CUDA based scan primitives.
Defines an axis-aligned bounding box class.
Definition: vector.h:117
Define a vector_view POD type and plain_view() for std::vector.
Definition: diff.h:38
Definition: radixtree_context.h:49
void build(OutputTree &out_tree, vector< device_tag, uint32 > &out_index, const BboxType bbox, const Iterator points_begin, const Iterator points_end, const uint32 max_leaf_size)
Definition: kd_builder_inline.h:216
Definition: kd_builder.h:130
Defines a simple binary tree context implementation to be used with the generate_radix_tree() functio...