Spaces:
Sleeping
Sleeping
File size: 9,873 Bytes
66c9c8a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 | /** Copyright (c) 2022 NVIDIA CORPORATION. All rights reserved.
* NVIDIA CORPORATION and its licensors retain all intellectual property
* and proprietary rights in and to this software, related documentation
* and any modifications thereto. Any use, reproduction, disclosure or
* distribution of this software and related documentation without an express
* license agreement from NVIDIA CORPORATION is strictly prohibited.
*/
#pragma once
#include "builtin.h"
#include "intersect.h"
namespace wp
{
struct bounds3
{
CUDA_CALLABLE inline bounds3() : lower( FLT_MAX)
, upper(-FLT_MAX) {}
CUDA_CALLABLE inline bounds3(const vec3& lower, const vec3& upper) : lower(lower), upper(upper) {}
CUDA_CALLABLE inline vec3 center() const { return 0.5f*(lower+upper); }
CUDA_CALLABLE inline vec3 edges() const { return upper-lower; }
CUDA_CALLABLE inline void expand(float r)
{
lower -= vec3(r);
upper += vec3(r);
}
CUDA_CALLABLE inline void expand(const vec3& r)
{
lower -= r;
upper += r;
}
CUDA_CALLABLE inline bool empty() const { return lower[0] >= upper[0] || lower[1] >= upper[1] || lower[2] >= upper[2]; }
CUDA_CALLABLE inline bool overlaps(const vec3& p) const
{
if (p[0] < lower[0] ||
p[1] < lower[1] ||
p[2] < lower[2] ||
p[0] > upper[0] ||
p[1] > upper[1] ||
p[2] > upper[2])
{
return false;
}
else
{
return true;
}
}
CUDA_CALLABLE inline bool overlaps(const bounds3& b) const
{
if (lower[0] > b.upper[0] ||
lower[1] > b.upper[1] ||
lower[2] > b.upper[2] ||
upper[0] < b.lower[0] ||
upper[1] < b.lower[1] ||
upper[2] < b.lower[2])
{
return false;
}
else
{
return true;
}
}
CUDA_CALLABLE inline void add_point(const vec3& p)
{
lower = min(lower, p);
upper = max(upper, p);
}
CUDA_CALLABLE inline float area() const
{
vec3 e = upper-lower;
return 2.0f*(e[0]*e[1] + e[0]*e[2] + e[1]*e[2]);
}
vec3 lower;
vec3 upper;
};
CUDA_CALLABLE inline bounds3 bounds_union(const bounds3& a, const vec3& b)
{
return bounds3(min(a.lower, b), max(a.upper, b));
}
CUDA_CALLABLE inline bounds3 bounds_union(const bounds3& a, const bounds3& b)
{
return bounds3(min(a.lower, b.lower), max(a.upper, b.upper));
}
CUDA_CALLABLE inline bounds3 bounds_intersection(const bounds3& a, const bounds3& b)
{
return bounds3(max(a.lower, b.lower), min(a.upper, b.upper));
}
struct BVHPackedNodeHalf
{
float x;
float y;
float z;
unsigned int i : 31;
unsigned int b : 1;
};
struct BVH
{
BVHPackedNodeHalf* node_lowers;
BVHPackedNodeHalf* node_uppers;
// used for fast refits
int* node_parents;
int* node_counts;
int max_depth;
int max_nodes;
int num_nodes;
// pointer (CPU or GPU) to a single integer index in node_lowers, node_uppers
// representing the root of the tree, this is not always the first node
// for bottom-up builders
int* root;
// item bounds are not owned by the BVH but by the caller
vec3* item_lowers;
vec3* item_uppers;
int num_items;
// cuda context
void* context;
};
CUDA_CALLABLE inline BVHPackedNodeHalf make_node(const vec3& bound, int child, bool leaf)
{
BVHPackedNodeHalf n;
n.x = bound[0];
n.y = bound[1];
n.z = bound[2];
n.i = (unsigned int)child;
n.b = (unsigned int)(leaf?1:0);
return n;
}
// variation of make_node through volatile pointers used in build_hierarchy
CUDA_CALLABLE inline void make_node(volatile BVHPackedNodeHalf* n, const vec3& bound, int child, bool leaf)
{
n->x = bound[0];
n->y = bound[1];
n->z = bound[2];
n->i = (unsigned int)child;
n->b = (unsigned int)(leaf?1:0);
}
CUDA_CALLABLE inline int clz(int x)
{
int n;
if (x == 0) return 32;
for (n = 0; ((x & 0x80000000) == 0); n++, x <<= 1);
return n;
}
CUDA_CALLABLE inline uint32_t part1by2(uint32_t n)
{
n = (n ^ (n << 16)) & 0xff0000ff;
n = (n ^ (n << 8)) & 0x0300f00f;
n = (n ^ (n << 4)) & 0x030c30c3;
n = (n ^ (n << 2)) & 0x09249249;
return n;
}
// Takes values in the range [0, 1] and assigns an index based Morton codes of length 3*lwp2(dim) bits
template <int dim>
CUDA_CALLABLE inline uint32_t morton3(float x, float y, float z)
{
uint32_t ux = clamp(int(x*dim), 0, dim-1);
uint32_t uy = clamp(int(y*dim), 0, dim-1);
uint32_t uz = clamp(int(z*dim), 0, dim-1);
return (part1by2(uz) << 2) | (part1by2(uy) << 1) | part1by2(ux);
}
// making the class accessible from python
CUDA_CALLABLE inline BVH bvh_get(uint64_t id)
{
return *(BVH*)(id);
}
CUDA_CALLABLE inline int bvh_get_num_bounds(uint64_t id)
{
BVH bvh = bvh_get(id);
return bvh.num_items;
}
// stores state required to traverse the BVH nodes that
// overlap with a query AABB.
struct bvh_query_t
{
CUDA_CALLABLE bvh_query_t()
{
}
CUDA_CALLABLE bvh_query_t(int)
{
} // for backward pass
BVH bvh;
// BVH traversal stack:
int stack[32];
int count;
// inputs
bool is_ray;
wp::vec3 input_lower; // start for ray
wp::vec3 input_upper; // dir for ray
int bounds_nr;
};
CUDA_CALLABLE inline bvh_query_t bvh_query(
uint64_t id, bool is_ray, const vec3& lower, const vec3& upper)
{
// This routine traverses the BVH tree until it finds
// the first overlapping bound.
// initialize empty
bvh_query_t query;
query.bounds_nr = -1;
BVH bvh = bvh_get(id);
query.bvh = bvh;
query.is_ray = is_ray;
// optimization: make the latest
query.stack[0] = *bvh.root;
query.count = 1;
query.input_lower = lower;
query.input_upper = upper;
wp::bounds3 input_bounds(query.input_lower, query.input_upper);
// Navigate through the bvh, find the first overlapping leaf node.
while (query.count)
{
const int node_index = query.stack[--query.count];
BVHPackedNodeHalf node_lower = bvh.node_lowers[node_index];
BVHPackedNodeHalf node_upper = bvh.node_uppers[node_index];
wp::vec3 lower_pos(node_lower.x, node_lower.y, node_lower.z);
wp::vec3 upper_pos(node_upper.x, node_upper.y, node_upper.z);
wp::bounds3 current_bounds(lower_pos, upper_pos);
if (query.is_ray)
{
float t = 0.0f;
if (!intersect_ray_aabb(query.input_lower, query.input_upper, current_bounds.lower, current_bounds.upper, t))
// Skip this box, it doesn't overlap with our ray.
continue;
}
else
{
if (!input_bounds.overlaps(current_bounds))
// Skip this box, it doesn't overlap with our target box.
continue;
}
const int left_index = node_lower.i;
const int right_index = node_upper.i;
// Make bounds from this AABB
if (node_lower.b)
{
// found very first leaf index.
// Back up one level and return
query.stack[query.count++] = node_index;
return query;
}
else
{
query.stack[query.count++] = left_index;
query.stack[query.count++] = right_index;
}
}
return query;
}
CUDA_CALLABLE inline bvh_query_t bvh_query_aabb(
uint64_t id, const vec3& lower, const vec3& upper)
{
return bvh_query(id, false, lower, upper);
}
CUDA_CALLABLE inline bvh_query_t bvh_query_ray(
uint64_t id, const vec3& start, const vec3& dir)
{
return bvh_query(id, true, start, dir);
}
//Stub
CUDA_CALLABLE inline void adj_bvh_query_aabb(uint64_t id, const vec3& lower, const vec3& upper,
uint64_t, vec3&, vec3&, bvh_query_t&)
{
}
CUDA_CALLABLE inline void adj_bvh_query_ray(uint64_t id, const vec3& start, const vec3& dir,
uint64_t, vec3&, vec3&, bvh_query_t&)
{
}
CUDA_CALLABLE inline bool bvh_query_next(bvh_query_t& query, int& index)
{
BVH bvh = query.bvh;
wp::bounds3 input_bounds(query.input_lower, query.input_upper);
// Navigate through the bvh, find the first overlapping leaf node.
while (query.count)
{
const int node_index = query.stack[--query.count];
BVHPackedNodeHalf node_lower = bvh.node_lowers[node_index];
BVHPackedNodeHalf node_upper = bvh.node_uppers[node_index];
wp::vec3 lower_pos(node_lower.x, node_lower.y, node_lower.z);
wp::vec3 upper_pos(node_upper.x, node_upper.y, node_upper.z);
wp::bounds3 current_bounds(lower_pos, upper_pos);
if (query.is_ray)
{
float t = 0.0f;
if (!intersect_ray_aabb(query.input_lower, query.input_upper, current_bounds.lower, current_bounds.upper, t))
// Skip this box, it doesn't overlap with our ray.
continue;
}
else {
if (!input_bounds.overlaps(current_bounds))
// Skip this box, it doesn't overlap with our target box.
continue;
}
const int left_index = node_lower.i;
const int right_index = node_upper.i;
if (node_lower.b)
{
// found leaf
query.bounds_nr = left_index;
index = left_index;
return true;
}
else
{
query.stack[query.count++] = left_index;
query.stack[query.count++] = right_index;
}
}
return false;
}
CUDA_CALLABLE inline int iter_next(bvh_query_t& query)
{
return query.bounds_nr;
}
CUDA_CALLABLE inline bool iter_cmp(bvh_query_t& query)
{
bool finished = bvh_query_next(query, query.bounds_nr);
return finished;
}
CUDA_CALLABLE inline bvh_query_t iter_reverse(const bvh_query_t& query)
{
// can't reverse BVH queries, users should not rely on traversal ordering
return query;
}
// stub
CUDA_CALLABLE inline void adj_bvh_query_next(bvh_query_t& query, int& index, bvh_query_t&, int&, bool&)
{
}
CUDA_CALLABLE bool bvh_get_descriptor(uint64_t id, BVH& bvh);
CUDA_CALLABLE void bvh_add_descriptor(uint64_t id, const BVH& bvh);
CUDA_CALLABLE void bvh_rem_descriptor(uint64_t id);
#if !__CUDA_ARCH__
void bvh_destroy_host(wp::BVH& bvh);
void bvh_refit_host(wp::BVH& bvh);
void bvh_destroy_device(wp::BVH& bvh);
void bvh_refit_device(uint64_t id);
#endif
} // namespace wp
|