Module compilation failed on L20 and H20

I ran the SDK provided by OptiX on L20 and H20 GPUs and obtained the following results:

Ubuntu 22.04
L20, H20
Driver Version: 550.90.07
CUDA Version: 12.1
Optix Version: 7.7, 8.1

NVIDIA-OptiX-SDK-7.7.0-linux64-x86_64/SDK/build$ bin/optixHello
[ 4][ KNOBS]: All knobs on default.

[ 4][ DISKCACHE]: Opened database: "/var/tmp/OptixCache_zhengyulong/optix7cache.db"
[ 4][ DISKCACHE]: Cache data size: "0 Bytes"
[ 4][ DISKCACHE]: Cache miss for key: ptx-6792-keybafd77f26dfb101b5d65c755ee65c60b-sm_89-rtc1-drv550.90.07

[ 4][ COMPILER]: Info: Pipeline parameter "params" size is 16 bytes

[ 2][ COMPILER]: COMPILE ERROR: Module compilation failed
Info: Module Statistics
payload values : 0
attribute values : 0
Pipeline configuration: (default)
Info: Properties for entry function "__raygen__draw_solid_color"
semantic type : RAYGEN
trace call(s) : 0
continuation callable call(s): 0
direct callable call(s) : 0
basic block(s) : 1
instruction(s) : 75
Info: Compiled Module Summary
non-entry function(s): 0
basic block(s) : 0
instruction(s) : 0

Caught exception: OPTIX_ERROR_INTERNAL_COMPILER_ERROR: Optix call 'optixModuleCreate( context, &module_compile_options, &pipeline_compile_options, input, inputSize, LOG, &LOG_SIZE, &module )' failed: /home/zhengyulong/models/gaussian-raytracing/NVIDIA-OptiX-SDK-7.7.0-linux64-x86_64/SDK/optixHello/optixHello.cpp:150)
Log:
COMPILE ERROR: Module compilation failed
Info: Module Statistics
payload values : 0
attribute values : 0
Pipeline configuration: (default)
Info: Properties for entry function "__raygen__draw_solid_color"
semantic type : RAYGEN
trace call(s) : 0
continuation callable call(s): 0
direct callable call(s) : 0
basic block(s) : 1
instruction(s) : 75
Info: Compiled Module Summary
non-entry function(s): 0
basic block(s) : 0
instruction(s) : 0
Info: Pipeline parameter "params" size is 16 bytes

If I use a higher version of OptiX, such as 8.1, the following error occurs:

NVIDIA-OptiX-SDK-8.1.0-linux64-x86_64/SDK/build$ bin/optixHello
Caught exception: OPTIX_ERROR_UNSUPPORTED_ABI_VERSION: Optix call 'optixInit()' failed: /home/zhengyulong/models/gaussian-raytracing/NVIDIA-OptiX-SDK-8.1.0-linux64-x86_64/SDK/optixHello/optixHello.cpp:125)

I have tried various methods but still cannot resolve this issue.
Looking forward to your assistance. Thanks!

The error you are seeing when trying to use 8.1 is due to a too-old driver. 8.1 requires an 555+ driver.

Optix 7.7 should work with 12.1, but it has only been tested with 12.0.

Thank you. However, I tested OptiX 7.7 with CUDA 12.0 and still got the same results. Is it an issue with my driver version, or do L20 and H20 not support OptiX?

Hi everyone,

I am experiencing similar issues with module compilation failures on an H200 GPU, while the same setup works fine on an H100 GPU. Here are the details of the environment:

  • Driver Version: 570.86.15
  • CUDA Driver Version / Runtime Version: 12.8 / 12.1
  • Optix Versions tried: 8.0.0, 9.0.0

When building and running the OptiX SDK sample optixHello, it works fine on an H100, while I encounter the following error on the H200 (very similar to the one reported above):

user@worker:/home/user/optix/SDK/build/bin$ ./optixHello
[ 4][       KNOBS]: All knobs on default.

[ 4][   DISKCACHE]: Opened database: "/var/tmp/OptixCache_user/optix7cache.db"
[ 4][   DISKCACHE]:     Cache data size: "0 Bytes"
[ 4][   DISKCACHE]: Cache miss for key: ptx-7084-key07759fb807706d1d0443fda686bc5bb8-sm_90-rtc0-drv570.86.15

[ 4][    COMPILER]: Info: Pipeline parameter "params" size is 16 bytes

[ 2][    COMPILER]: COMPILE ERROR: Module compilation failed
Info: Module Statistics
        payload values        :          0
        attribute values      :          0
Info: Properties for entry function "__raygen__draw_solid_color"
        semantic type                :                 RAYGEN
        trace call(s)                :                      0
        continuation callable call(s):                      0
        basic block(s)               :                      1
        instruction(s)               :                     75
Info: Compiled Module Summary
        non-entry function(s):     0
        basic block(s)       :     0
        instruction(s)       :     0

Caught exception: OPTIX_ERROR_INTERNAL_COMPILER_ERROR: Optix call 'optixModuleCreate( context, &module_compile_options, &pipeline_compile_options, input, inputSize, LOG, &LOG_SIZE, &module )' failed: /home/user/optix/SDK/optixHello/optixHello.cpp:153)
Log:
COMPILE ERROR: Module compilation failed
Info: Module Statistics
        payload values        :          0
        attribute values      :          0
Info: Properties for entry function "__raygen__draw_solid_color"
        semantic type                :                 RAYGEN
        trace call(s)                :                      0
        continuation callable call(s):                      0
        basic block(s)               :                      1
        instruction(s)               :                     75
Info: Compiled Module Summary
        non-entry function(s):     0
        basic block(s)       :     0
        instruction(s)       :     0
Info: Pipeline parameter "params" size is 16 bytes 

Any insights or suggestions would be greatly appreciated. Thank you!