an introduction to nvidia optix
play

AN INTRODUCTION TO NVIDIA OPTIX Ankit Patel, Detlef Roettger, - PowerPoint PPT Presentation

GTC 2018 San Jose, S8518 Tutorial AN INTRODUCTION TO NVIDIA OPTIX Ankit Patel, Detlef Roettger, 2018-03-26 OptiX Overview Programming with OptiX AGENDA New Example Applications Motion Blur DL Denoiser 2 volume scattering and dispersion


  1. GTC 2018 San Jose, S8518 Tutorial AN INTRODUCTION TO NVIDIA OPTIX Ankit Patel, Detlef Roettger, 2018-03-26

  2. OptiX Overview Programming with OptiX AGENDA New Example Applications Motion Blur DL Denoiser 2

  3. volume scattering and dispersion OptiX NVIDIA GPU Ray Casting API High-level GPU accelerated ray-casting API C-API to setup scene and data Multiple program domains and per ray payload under developer's control Flexible single ray programming model Supports multi-GPU and NVLINK Develop "to the algorithm" https://developer.nvidia.com/optix hair intersection and shading 3

  4. Programming with OptiX Prerequisites Windows, Linux, Mac OS NVIDIA GPU (Kepler, Maxwell, Pascal, Volta) Display Driver supporting CUDA 9.0 OptiX SDK CUDA Toolkit Host compiler supported by the CUDA Toolkit 4

  5. OptiX Program Domains Developer controls the algorithm via CUDA C++ programs Miss RayGeneration Exception BoundingBox Intersection ClosestHit AnyHit * per geometric primitive type * per entry point * per ray type 5

  6. Acceleration Structures Bounding Volume Hierarchy (BVH) 6

  7. OptiX Scene Hierarchy OptiX C-API to create and connect scene data GeometryGroup Acceleration ClosestHit GeometryInstance Material AnyHit BoundingBox Geometry Intersection 7

  8. OptiX Scene Hierarchy Instancing Sub-Trees Group Acceleration ... Transform Transform GeometryGroup Acceleration GeometryInstance Material Geometry 8

  9. 9

  10. OptiX Scene Hierarchy Acceleration Structure Sharing Group Acceleration Transform Transform GeometryGroup Acceleration GeometryGroup Material A GeometryInstance GeometryInstance Material B Geometry 10

  11. 11

  12. OptiX Introduction Example Programs 12

  13. optixIntro_01 13

  14. optix::Context::create() setDevices(begin, end); setEntryPointCount(num_entry_points) createProgramFromPTXFile(filename, program_name) RayGeneration setRayGenerationProgram(index, program) setRayTypeCount(num_ray_types) setStackSize(bytes) createBuffer(type, format, width, height) context["variable_name"]->set(buffer); buffer->map(level, flags) launch(entry_point, width, height) buffer->unmap() 14

  15. RayGeneration Program rtBuffer< float4, 2 > sysOutputBuffer ; // RGBA32F rtDeclareVariable (uint2, theLaunchIndex , rtLaunchIndex , ); rtDeclareVariable (float3, sysColorBackground , , ); RT_PROGRAM void raygeneration() { sysOutputBuffer[ theLaunchIndex ] = make_float4( sysColorBackground , 1.0f); } 15

  16. Exception Program rtBuffer< float4, 2 > sysOutputBuffer ; // RGBA32F rtDeclareVariable ( uint2, theLaunchIndex , rtLaunchIndex , ); RT_PROGRAM void exception() { rtPrintExceptionDetails (); sysOutputBuffer[ theLaunchIndex ] = make_float4(1000000.0f, 0.0f, 1000000.0f, 1.0f); } 16

  17. optixIntro_02 17

  18. Pinhole Camera sysCameraV rtLaunchDim sysCameraU sysCameraW rtLaunchIndex [0, 0] sysCameraPosition 18

  19. Tracing Rays context[" sysTopObject "]->set(group); Group rtDeclareVariable ( rtObject , sysTopObject , , ); optix::Ray ray = optix::make_Ray(origin, direction, raytype, t_min, t_max); PerRayData prd ; rtTrace ( sysTopObject , ray , prd ); 19

  20. Variable Semantics Access per ray data in other program domains rtTrace ( sysTopObject , ray , time , prd ); rtCurrentRay rtPayload rtCurrentTime rtDeclareVariable (optix::Ray, theRay , rtCurrentRay , ); rtDeclareVariable (float, theTime , rtCurrentTime , ); rtDeclareVariable (PerRayData, thePrd , rtPayload , ); rtDeclareVariable (float, theDistance , rtIntersectionDistance , ); 20

  21. optixIntro_03 21

  22. BoundingBox Program RT_PROGRAM void boundingbox_triangle_indexed( int primitiveIndex, float result[6] ) { // uint3 indices = ... ; // vertex indices of the triangle at primitiveIndex // float3 v0, v1, v2 = ... ; // vertex positions const float area = optix::length(optix::cross(v1 - v0, v2 - v0)); optix::Aabb* aabb = (optix::Aabb*) result; if (0.0f < area && !isinf(area)) { aabb->m_min = fminf(fminf(v0, v1), v2); aabb->m_max = fmaxf(fmaxf(v0, v1), v2); } else { aabb->invalidate(); } } 22

  23. Intersection Program rtDeclareVariable (optix::Ray, theRay , rtCurrentRay , ); rtDeclareVariable (float3, varNormal , attribute NORMAL , ); RT_PROGRAM void intersection_triangle_indexed( int primitiveIndex ) { // uint3 indices = ... ; // vertex indices of the triangle at primitiveIndex // float3 v0, v1, v2 = ... ; // vertex positions float3 n; float t, beta, gamma; if (intersect_triangle( theRay , v0, v1, v2, n, t, beta, gamma)) { if ( rtPotentialIntersection (t)) { // float3 n0, n1, n2 = ... ; // vertex normals const float alpha = 1.0f – beta – gamma; varNormal = n0 * alpha + n1 * beta + n2 * gamma; // interpolate shading normal rtReportIntersection (0); } } } 23

  24. ClosestHit Program rtDeclareVariable (PerRayData, thePrd , rtPayload , ); rtDeclareVariable (optix::float3, varNormal , attribute NORMAL , ); RT_PROGRAM void closesthit() { const float3 normal = optix::normalize( rtTransformNormal (RT_OBJECT_TO_WORLD, varNormal )); thePrd .radiance = normal * 0.5f + 0.5f; } 24

  25. optixIntro_04 25

  26. Integrator Unidirectional Path Tracer Throughput 26

  27. optixIntro_05 27

  28. RayGeneration AnyHit shadow ray radiance ray RT_PROGRAM void anyhit_shadow() { thePrdShadow .visible = false; rtTerminateRay(); 28 }

  29. Next Event Estimation 1spp 16spp 64spp 256spp 1spp 16spp 64spp 256spp 29

  30. optixIntro_06 30

  31. Adding more BSDF and Light Types How much code do you really need? closest_hit closest_hit closest_hit calc state calc state calc state sample BSDF sample BSDF sample BSDF ... direct lighting? direct lighting? direct lighting? sample light sample light sample light eval BSDF eval BSDF eval BSDF calc radiance calc radiance calc radiance 31

  32. Buffers of Bindless Callable Program IDs Implement fixed-function elements as bindless callable programs closest_hit sysSampleBSDF calc state diffuse_reflection sample BSDF specular_reflection specular_reflection_transmission sysSampleLight ... direct lighting? light_constant sysEvalBSDF sample light light_env diffuse_reflection light_area eval BSDF ... (specular_reflection) (specular_reflection_transmission) ... calc radiance 32

  33. Lens Shaders Fisheye Spherical Pinhole 33

  34. Bindless Callable Program Declaration of Buffer of IDs and Example rtBuffer < rtCallableProgramId <return_typename(typename arg0, …, typename argN)> > name; RT_CALLABLE_PROGRAM void lens_shader_pinhole( const float2 pixel, const float2 screen, const float2 sample, float3& origin, float3& direction) { const float2 fragment = pixel + sample; sysCameraV rtLaunchDim const float2 ndc = (fragment / screen) * 2.0f - 1.0f; origin = sysCameraPosition ; sysCameraU sysCameraW direction = optix::normalize( sysCameraU * ndc.x + sysCameraV * ndc.y + rtLaunchIndex [0, 0] sysCameraW ); } sysCameraPosition 34

  35. Variable Scopes Organize your parameters Program Type Search Order ClosestHit Program GeometryInstance Material Context AnyHit BoundingBox Program GeometryInstance Geometry Context Intersection Raygeneration Exception Program Context Miss Bindless Callable Program Visit Program Node 35

  36. optixIntro_07 36

  37. 37

  38. Cutout Opacity Or how to use AnyHit programs RT_PROGRAM void anyhit_cutout() { if (getOpacity() < threshold) rtIgnoreIntersection (); } RT_PROGRAM void anyhit_shadow_cutout() { if (getOpacity() < threshold) { rtIgnoreIntersection (); } else { Raygeneration thePrdShadow .visible = false; rtTerminateRay (); } } 38

  39. MaxAnisotropy WrapMode FilteringMode MipLevelClamp TextureSampler ReadMode MipLevelBias getId() IndexingMode rtTex* <typename>( id , u, v, …) Buffer MipLevelCount 1D 2D 3D CUBEMAP 39

  40. optixIntro_08 40

  41. Motion Blur Motion in Transform nodes New functions for the Transform node rtTransformSetMotionKeys(), rtTransformSetMotionRange(), rtTransformSetMotionBorderMode() Two motion key types: A linearly interpolated 3x4 matrix or 16 elements from a Scale- Rotation-Translation (SRT) transformation 41

  42. Motion Blur Motion in Geometry Nodes (Morphing) New BoundingBox program function signature RT_PROGRAM void boundingbox_motionblur(int prim_index, int motion_index, float result[6]); New functions for the Geometry node rtGeometrySetMotionSteps(), rtGeometrySetMotionRange(), rtGeometrySetMotionBorderMode() 42

  43. Rolling shutters 43

  44. optixIntro_09 44

  45. Post-Processing Pipeline Tonemap beauty tonemapped Denoise Render denoised albedo normal 45

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend