Skip to content

Commit eb7763e

Browse files
authored
Merge pull request NVIDIA#25 from ingowald/main
Compile fix for recently aggregate_refit
2 parents 5b8bbec + 0b32e06 commit eb7763e

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)