OptiX

From Wikipedia, the free encyclopedia
OptiX
Developer(s) NVIDIA Corporation
Stable release 3.0.1 / August 14, 2013 (2013-08-14)
Operating system Windows 7, Windows Vista, Windows XP, Mac OS X, Linux
Type Ray tracing
License Free to use
Website NVIDIA OptiX developer site

NVIDIA OptiX (officially, OptiX Application Acceleration Engine) is a real time ray tracing engine for CUDA-based video cards such as the GeForce, Quadro, and Tesla series.

According to NVIDIA, OptiX is designed to be flexible enough for "procedural definitions and hybrid rendering approaches." Aside from computer Graphics rendering, Optix also helps in optical & acoustical design, radiation and electromagnetic research,[1] artificial intelligence queries and collision analysis.[2]

Ray tracing with OptiX

A Julia set drawn with NVIDIA OptiX©. This is also a sample of the SDK

OptiX works by using user-supplied instructions (in the form of CUDA kernels) regarding what a ray should do in particular circumstances to simulate a complete tracing process.[3]

A light ray (or perhaps another kind of ray) might have a different behavior when hitting a particular surface rather than another one, OptiX allows to customize these hit conditions with user-provided programs. These programs are written in CUDA C or directly in PTX code and are linked together when used by the OptiX engine.

In order to use OptiX a CUDA-capable GPU must be available on the system and the CUDA toolkit must be installed.

Using the OptiX engine into a ray tracing application usually involves the following steps:

  • Defining programs for ray generation (e.g. rays can be shot in parallel, in a perspective fashion or like a gradient field), ray missing (when a ray doesn’t intersect any object), an optional exception program (when the ray cannot be shot for some reason), a bounding box program (the program that provides a bounding box intersection test for a given object) and an intersection program.

Several examples for these programs are available with the program's SDK

// Sample code using OptiX APIs //
 
/* Ray generation program */
rtProgramCreateFromPTXFile( *context, path_to_ptx, "pinhole_camera", &ray_gen_program );
rtContextSetRayGenerationProgram( *context, 0, ray_gen_program );
 
/* Miss program */
rtProgramCreateFromPTXFile( *context, path_to_ptx, "miss", &miss_program );
rtContextSetMissProgram( *context, 0, miss_program );
 
/* Bounding box and intersection program */
rtProgramCreateFromPTXFile( context, path_to_ptx, "box_bounds", &box_bounding_box_program );
rtGeometrySetBoundingBoxProgram( *box, box_bounding_box_program );
rtProgramCreateFromPTXFile( context, path_to_ptx, "box_intersect", &box_intersection_program );
rtGeometrySetIntersectionProgram( *box, box_intersection_program );

Bounding box programs are used to define bounding volumes used to accelerate ray tracing process within acceleration structures as kd-trees or bounding volume hierarchies

  • Create material any hit and closest hit programs: these two programs determine a ray behavior when encountering its first intersection (closest hit) or a generic intersection (any hit)
// Sample code using OptiX APIs //
 
rtProgramCreateFromPTXFile( context, path_to_ptx, "closest_hit_radiance", &closest_hit_program );
rtProgramCreateFromPTXFile( context, path_to_ptx, "any_hit_shadow", &any_hit_program );
 
/* Associate closest hit and any hit program with a material */
rtMaterialCreate( context, material );
rtMaterialSetClosestHitProgram( *material, 0, closest_hit_program );
rtMaterialSetAnyHitProgram( *material, 1, any_hit_program );
  • Define buffers, variables that might be used inside the supplied programs. Buffers are memory areas that allow host code (i.e. normal cpu code) to communicate with device code (i.e. the code that gets executed on the gpu) and vice versa. Variables are OptiX’s internal way of communicating and using buffers to transfer data back and forth.
  • Define the OptiX hierarchy of geometry objects, groups, selectors and other nodes to generate a tree graph of the entire scene to be rendered
A sample graph tree for the NVIDIA OptiX© engine

In order to render a complex scene or trace different paths for any ray OptiX takes advantage of gpgpu computing by exploiting NVIDIA CUDA platform. Since the process of shooting rays and setting their behavior is highly customizable, OptiX may be used in a variety of other applications aside from ray tracing.

Software using OptiX

  • At SIGGRAPH 2011 Adobe showcased OptiX in a technology demo of GPU ray tracing for motion graphics.[4]
  • At SIGGRAPH 2013 OptiX was featured in Pixar's realtime, GPU based lighting preview tool Katana.[5]
  • OptiX has been integrated into the GameWorks developers library along with PhysX and other CUDA powered graphics engines and frameworks. The library will also be used to develop SteamOS machines [6]

References

  1. "Electromagnetic wave propagation in the millimeter wave band using the NVIDIA OptiX GPU ray tracing engine". IEEE Xplore. 2012. Retrieved 2013-08-14. 
  2. Steven G. Parker,Heiko Friedrich,David Luebke,Keith Morley,James Bigler,Jared Hoberock,David McAllister,Austin Robison,Andreas Dietrich,Greg Humphreys, Morgan McGuire, Martin Stich (2013). "Magazine Communications of the ACM - GPU ray tracing". ACM. Retrieved 2013-08-14. 
  3. Steven G. Parker,Heiko Friedrich,David Luebke,Keith Morley,James Bigler,Jared Hoberock,David McAllister,Austin Robison,Andreas Dietrich,Greg Humphreys, Morgan McGuire, Martin Stich (2010). "OptiX: a general purpose ray tracing engine". ACM. Retrieved 2013-08-14. 
  4. "Adobe showcasing OptiX in a technology demo for ray tracing motion graphics with GPUs". NVIDIA. 2013. Retrieved 2013-08-14. 
  5. "SIGGRAPH 2013 tech talks". NVIDIA. 2013. Retrieved 2013-08-14. 
  6. "Nvidia announces Gameworks Program at Montreal 2013; supports SteamOS". NVIDIA. 2013. Retrieved 2013-10-29. 

External links

This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.