Skip to content

Commit 43c2030

Browse files
authored
Merge pull request NVIDIA#26 from ingowald/main
upstreaming second bugfix from aparis
2 parents eb7763e + 1ff1a40 commit 43c2030

2 files changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/Ubuntu.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ jobs:
2626
cuda: "13.0.2"
2727
gcc: 13
2828
config: Debug
29-
- os: ubuntu-24.04
30-
cuda: "12.6.0"
31-
gcc: 13
32-
config: Debug
3329
- os: ubuntu-22.04
3430
cuda: "12.0.0"
3531
gcc: 11

cuBQL/traversal/aggregateApproximate.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,11 @@ namespace cuBQL {
180180
}
181181

182182
if (node.count != 0) {
183-
for (int i=0;i<node.count;i++)
184-
processPrim(result,
185-
queryPrim,
186-
bvh.primIDs[node.offset+i],
187-
primitives);
183+
for (int i=0;i<node.count;i++)
184+
perPrimFct(result,
185+
queryPrim,
186+
bvh.primIDs[node.offset+i],
187+
primitives);
188188
}
189189
// ------------------------------------------------------------------
190190
// pop next un-traversed node from stack, discarding any nodes

0 commit comments

Comments
 (0)