blender/intern/cycles/bvh
Sergey Sharybin 73f2056052 Cycles: Add BVH8 and packeted triangle intersection
This is an initial implementation of BVH8 optimization structure
and packated triangle intersection. The aim is to get faster ray
to scene intersection checks.

    Scene                BVH4      BVH8
barbershop_interior    10:24.94   10:10.74
bmw27                  02:41.25   02:38.83
classroom              08:16.49   07:56.15
fishy_cat              04:24.56   04:17.29
koro                   06:03.06   06:01.45
pavillon_barcelona     09:21.26   09:02.98
victor                 23:39.65   22:53.71

As memory goes, peak usage raises by about 4.7% in a complex
scenes.

Note that BVH8 is disabled when using OSL, this is because OSL
kernel does not get per-microarchitecture optimizations and
hence always considers BVH3 is used.

Original BVH8 patch from Anton Gavrikov.
Batched triangles intersection from Victoria Zhislina.
Extra work and tests and fixes from Maxym Dmytrychenko.
2018-08-29 15:03:09 +02:00
..
bvh2.cpp Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00
bvh2.h Cycles: Split BVH implementations into separate files 2017-04-13 10:55:46 +02:00
bvh4.cpp Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00
bvh4.h Cycles: Header cleanup in BVH: move self header to be the first one 2017-04-13 11:28:02 +02:00
bvh8.cpp Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00
bvh8.h Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00
bvh_binning.cpp Cleanup: strip trailing space for cycles 2018-07-06 10:17:58 +02:00
bvh_binning.h Cycles: Header cleanup in BVH: move self header to be the first one 2017-04-13 11:28:02 +02:00
bvh_build.cpp Cycles: Remove unneeded include statements 2018-01-19 15:19:45 +01:00
bvh_build.h Cycles: Header cleanup in BVH: move self header to be the first one 2017-04-13 11:28:02 +02:00
bvh_node.cpp Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00
bvh_node.h Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00
bvh_params.h Cycles: Cleanup, silence strict compiler warning 2018-06-11 13:02:10 +02:00
bvh_sort.cpp Cleanup: strip trailing space for cycles 2018-07-06 10:17:58 +02:00
bvh_sort.h Cycles: Header cleanup in BVH: move self header to be the first one 2017-04-13 11:28:02 +02:00
bvh_split.cpp Cycles: Header cleanup in BVH: move self header to be the first one 2017-04-13 11:28:02 +02:00
bvh_split.h Cycles: Make all #include statements relative to cycles source directory 2017-03-29 13:41:11 +02:00
bvh_unaligned.cpp Cycles: Remove unneeded include statements 2018-01-19 15:19:45 +01:00
bvh_unaligned.h Cycles: Header cleanup in BVH: move self header to be the first one 2017-04-13 11:28:02 +02:00
bvh.cpp Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00
bvh.h Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00
CMakeLists.txt Cycles: Add BVH8 and packeted triangle intersection 2018-08-29 15:03:09 +02:00