Customize intersection method for built-in triangle

I understand triangle is the built-in primitive for RT core. But if I set the OptixBuildInput.type OPTIX_BUILD_INPUT_TYPE_TRIANGLES when building GAS(means that I want to use triangle as primitive), can I define new intersection method for these triangles? I have defined a new intersection method in .cu file, but it is not called after optixLaunch.

The performance of ray-triangle intersection is great, but is the premise to use the built-in triangle intersection method?

can I define new intersection method for these triangles?

No, all built-in primitives inside OptiX (triangles, curves, spheres) use their own intersection program.

The one for built-in triangles is implicit and runs fully in hardware on the RTX boards.

For the other built-in primitives you must use the intersection program OptiX provides.
https://raytracing-docs.nvidia.com/optix7/guide/index.html#curves#curves-and-spheres
See optixBuiltinISModuleGet

The type of build input you define, decides what geometric primitive an acceleration structure contains.
https://raytracing-docs.nvidia.com/optix7/guide/index.html#acceleration_structures#accelstruct
See optixAccelBuild

You can only define your own intersection programs on custom geometric primitives.
That would allow implementing your own triangle intersection program.
For that you would use OptixBuildInputCustomPrimitiveArray and OPTIX_BUILD_INPUT_TYPE_CUSTOM_PRIMITIVES as build input with the AABBs around each of your custom primitives.

The RTX boards will still do the BVH traversal in hardware but call back into your custom intersection program for any primitive’s AABB the ray intersects. Such a custom triangle intersection calculation will be a lot slower than the hardware intersection routine obviously.

1 Like

OK great, that will help me on my way, thank you very much!
I have another question now, which confuses me lot.
I used custom geometric primitives and defined intersection program. At this time, I recorded the execution time of the optixLaunch method. Then I defined anyhit program but I did not use it, which means that I still set hitgroup_prog_group_desc.hitgroup.moduleAH and hitgroup_prog_group_desc.hitgroup.entryFunctionNameAH nullptr. I also recorded the execution time of the optixLaunch method. Curiously, the time increased a lot. I did not find out the reason. Why this happens?
Thanks advance.

There is not enough information to answer this.
Benchmarks require an explanation how you measured what exactly and absolute time results to be able to discuss them. I don’t know what “a lot” means for you.

For the measurement:
Please note that the optixLaunch call is asynchronous, like all OptiX API entry points taking a CUDA stream argument. Means you must add CUDA synchronization calls or CUDA event queries around asynchronous calls to be able to correctly measure exactly one of such calls on the host.

For the OptixProgramGroupDesc:
You would normally default-initialize all fields inside all OptixProgramGroupDesc to zero before filling them.
Means the hitgroup.moduleAH and hitgroup.entryFunctionNameAH shouldn’t have changed when explicitly setting them to nullptr.

So what exactly is the code change between the two measurements?

Did you add an OptixProgramGroupDesc with kind OPTIX_PROGRAM_GROUP_KIND_HITGROUP with all null programs?
Did you use that hitgroup inside the Shader Binding Table?

Is that unused anyhit program code inside its own module or together with all other programs?
Does your benchmark result change if you comment out the unused anyhit program code inside its module?

Maybe just post the exact code to be able to see what you programmed.

Thanks for answering! I do not know why this situation disappeared. I am sorry that I can not repeat this scene. Now the program can run normally.
Thank you again!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.