Skip to content

Commit 0b32e06

Browse files
authored
Merge pull request #2 from apaaris/fix/refit-aggregate-bvh3f-alias
fix: use BinaryBVH<T,D> instead of bvh3f alias in refit_aggregate function
2 parents 5b8bbec + a94d3eb commit 0b32e06

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cuBQL/builder/cuda/refit_aggregate.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace cuBQL {
2323
>
2424
void refit_aggregate(BinaryBVH<T,D> bvh,
2525
AggregateNodeData *d_aggregateNodeData,
26-
void (*aggregateFct)(bvh3f,
26+
void (*aggregateFct)(BinaryBVH<T,D>,
2727
AggregateNodeData[],
2828
int),
2929
cudaStream_t s =0,
@@ -35,7 +35,7 @@ namespace cuBQL {
3535
__global__
3636
void refit_aggregate_run(BinaryBVH<T,D> bvh,
3737
AggregateNodeData *aggregateNodeData,
38-
void (*aggregateFct)(bvh3f,
38+
void (*aggregateFct)(BinaryBVH<T,D>,
3939
AggregateNodeData[],
4040
int),
4141
uint32_t *refitData)
@@ -77,7 +77,7 @@ namespace cuBQL {
7777
typename AggregateNodeData>
7878
void refit_aggregate(BinaryBVH<T,D> bvh,
7979
AggregateNodeData *d_aggregateNodeData,
80-
void (*aggregateFct)(bvh3f,
80+
void (*aggregateFct)(BinaryBVH<T,D>,
8181
AggregateNodeData[],
8282
int),
8383
cudaStream_t s,

0 commit comments

Comments
 (0)