Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 813 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 813 Bytes

CUDARayTracer

1617905515202

Raytracers are part of embarrassingly parallel problems. The problems of this kind, require little or no effort to be divided into an arbitrary number of parallel tasks. In fact, in my implementation, a small group of pixels are computed independently from all the other pixels. In my opinion, this class of problems are very effective to practice CUDA because the parallelization itself is easy and one can focus on other trivial aspects of this API.

This code has been written as the final project of the course Computer Graphics at Sapienza University. The raytracer itself is based on "Raytracing in one weekend", "Raytracing the next week" and the slide of the course.