I'm writing a comparatively straightforward raytracer/path tracer in D (http://dsource.org/projects/stacy), but even with full optimization it still needs several thousand processor cycles per ray. Is there anything else I can do to speed it up? More generally, do you know of good optimizations / faster approaches for ray tracing?
Edit: this is what I'm already doing.
- Code is already running highly parallel
- temporary data is structured in a cache-efficient fashion as well as aligned to 16b
- Screen divided into 32x32-tiles
- Destination array is arranged in such a way that all subsequent pixels in a tile are sequential in memory
- Basic scene graph optimizations are performed
- Common combinations of objects (plane-plane CSG as in boxes) are replaced with preoptimized objects
- Vector struct capable of taking advantage of GDC's automatic vectorization support
- Subsequent hits on a ray are found via lazy evaluation; this prevents needless calculations for CSG
- Triangles neither supported nor priority. Plain primitives only, as well as CSG operations and basic material properties
- Bounding is supported
