Fermat
radixtree_context.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/types.h>
35 #include <cugar/basic/vector.h>
36 
37 namespace cugar {
38 namespace cuda {
39 
42 
45 
50 {
51  struct Split_task
52  {
53  CUGAR_HOST_DEVICE Split_task() {}
54  CUGAR_HOST_DEVICE Split_task(const uint32 parent, const uint32 begin, const uint32 end, const uint32 level)
55  : m_parent( parent ), m_begin( begin ), m_end( end ), m_level( level ) {}
56  CUGAR_HOST_DEVICE Split_task(const uint4 u)
57  : m_parent(u.x), m_begin(u.y), m_end(u.z), m_level(u.w) {}
58 
59  CUGAR_HOST_DEVICE operator uint4() const { return make_uint4(m_parent,m_begin,m_end,m_level); }
60 
61  uint32 m_parent;
62  uint32 m_begin;
63  uint32 m_end;
64  uint32 m_level;
65  };
66  struct Counters
67  {
68  uint32 node_counter;
69  uint32 leaf_counter;
70  uint32 task_counter;
71  uint32 work_counter;
72  };
73 
76  caching_device_vector<uint32> m_skip_nodes;
77  uint32 m_nodes;
78  uint32 m_leaves;
79 };
80 
83 
84 } // namespace cuda
85 } // namespace cugar
Definition: vector.h:304
thrust::device_vector< T >::iterator begin(thrust::device_vector< T > &vec)
Definition: thrust_view.h:89
Definition: radixtree_context.h:51
Define a vector_view POD type and plain_view() for std::vector.
Definition: diff.h:38
Definition: radixtree_context.h:66
Definition: radixtree_context.h:49