-
Notifications
You must be signed in to change notification settings - Fork 45
ArborX::BoundingVolumeHierarchy::query
Andrey Prokopenko edited this page Jan 6, 2025
·
8 revisions
ArborX / Spatial indexes / ArborX::BVH
template <typename ExecutionSpace, typename Predicates, typename Callback>
void query(ExecutionSpace const& space,
Predicates const& predicates,
Callback const& callback) const; // (1)
template <typename ExecutionSpace, typename Predicates, typename Indices,
typename Offsets>
void query(ExecutionSpace const& space,
Predicates const& predicates,
Indices& indices,
Offsets& offsets) const; // (2)
template <typename ExecutionSpace, typename Predicates, typename Callback,
typename Values, typename Offsets>
void query(ExecutionSpace const& space,
Predicates const& predicates,
Callback const& callback,
Values& values,
Offsets& offsets) const; // (3)- Executes callbacks on all found results
For spatial predicates, the call finds all primitives meeting the passed predicates, invoking the callback when a primitive meets a predicate. Conceptually equivalent to
for (auto predicate : predicates)
for (auto primitive : primitives)
if (predicate(primitive))
callback(predicate, primitive);For nearest predicates, the call finds the specified number of the nearest primitives for each predicate, and invokes callback on those results. Conceptually equivalent to
for (auto predicate : predicates)
for (auto primitive : k_nearest_primitives_of_predicate)
callback(predicate, primitive);- Finds all primitives meeting the predicates and record results in
{values, offsets}.valuesstores the values of the objects stored in the tree that satisfy the predicates.offsetsstores the locations in thevaluesview that start a predicate, that is,predicates(i)is satisfied byprimitives(indexable_getter(values(j)))foroffsets(i) <= j < offsets(i+1). Following the usual convention,offsets(n) == values.size(), wherenis the number of queries that were performed andvalues.size()is the total number of collisions. - TODO
space |
- | execution space that specifies where to execute code |
predicates |
- | predicates to check against the primitives |
callback |
- | callable function object to invoke when a primitive satisfies a predicate |
values |
- | values whose indexables satisfy the predicates |
offsets |
- | predicate offsets in values
|
-
MemorySpacemust be accessible fromExecutionSpace. (Kokkos::SpaceAccessibility<ExecutionSpace, MemorySpace>::accessiblemust betrue.) - A specialization of
ArborX::AccessTraitsmust match thePredicatesas the template argument. - The member type
ArborX::AccessTraits<Predicates>::memory_spacemust be accessible fromExecutionSpace. - The static member function
ArborX::AccessTraits<Predicates>::get()return type must decay to a valid ArborX predicate. Such predicate may be generated by one of the functions listed below: -
Callbackmust be a valid ArborX callback -
ValuesandOffsetsmust be (managed) Kokkos views accessible fromExecutionSpace.
(none)
O(M log N) where M is the number of predicates (i.e. the value returned by ArborX::AccessTraits<Predicates>::size(predicates)) and N is the number of primitives stored in the data structure (this->size()).
Memory allocation with Kokkos may throw.