warp.tile_bvh_query_ray#

warp.tile_bvh_query_ray(
id: uint64,
start: vec3f,
dir: vec3f,
) BvhQueryTiled#
  • Kernel

Construct a ray query against a BVH object for thread-block parallel traversal.

This query can be used in tiled kernels to cooperatively traverse a BVH across a thread block.

param id:

The BVH identifier

param start:

The ray origin (must be the same for all threads in the block)

param dir:

The ray direction (must be the same for all threads in the block)

Note

This is an alias for bvh_query_ray_tiled().