Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cuBQL/builder/cuda/refit_aggregate.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace cuBQL {
>
void refit_aggregate(BinaryBVH<T,D> bvh,
AggregateNodeData *d_aggregateNodeData,
void (*aggregateFct)(bvh3f,
void (*aggregateFct)(BinaryBVH<T,D>,
AggregateNodeData[],
int),
cudaStream_t s =0,
Expand All @@ -35,7 +35,7 @@ namespace cuBQL {
__global__
void refit_aggregate_run(BinaryBVH<T,D> bvh,
AggregateNodeData *aggregateNodeData,
void (*aggregateFct)(bvh3f,
void (*aggregateFct)(BinaryBVH<T,D>,
AggregateNodeData[],
int),
uint32_t *refitData)
Expand Down Expand Up @@ -77,7 +77,7 @@ namespace cuBQL {
typename AggregateNodeData>
void refit_aggregate(BinaryBVH<T,D> bvh,
AggregateNodeData *d_aggregateNodeData,
void (*aggregateFct)(bvh3f,
void (*aggregateFct)(BinaryBVH<T,D>,
AggregateNodeData[],
int),
cudaStream_t s,
Expand Down