Skip to content

Commit 0156348

Browse files
authored
Merge pull request #8 from Jack-Grogan/patch-2
Update raytrace_cpu.jl
2 parents 56e2eb3 + 396e463 commit 0156348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raytrace/raytrace_cpu.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function traverse_rays_leaves!(bvh, points, directions, src, intersections, num_
9999

100100
# Split computation into contiguous ranges of minimum 100 elements each; if only single thread
101101
# is needed, inline call
102-
tp = TaskPartitioner(num_src, options.num_threads, options.min_traversals_per_thread)
102+
tp = AK.TaskPartitioner(num_src, options.num_threads, options.min_traversals_per_thread)
103103
if tp.num_tasks == 1
104104
num_intersections = traverse_rays_leaves_range!(
105105
bvh, points, directions,

0 commit comments

Comments
 (0)