warp.bvh_query_aabb_tiled#

warp.bvh_query_aabb_tiled(
id: uint64,
low: vec3f,
high: vec3f,
) BvhQueryTiled#
  • Kernel: true
  • Python: false
  • Differentiable: false

Construct an axis-aligned bounding box query against a warp.Bvh for thread-block parallel traversal.

Alias for tile_bvh_query_aabb(); see that function for usage details and an example.

Parameters:
  • id – The BVH identifier (must be the same for all threads in the block)

  • low – The lower bound of the query box, in BVH space (must be the same for all threads in the block)

  • high – The upper bound of the query box, in BVH space (must be the same for all threads in the block)

Returns:

A warp.BvhQueryTiled.

Deprecated since version 1.18: Use tile_bvh_query_aabb() instead.