Isaac Sim does not function on RTX 4070 Laptop GPU

Isaac Sim Version

4.2.0.2 (isaacsim · PyPI)
Running on Python 3.10.15

Operating System

Windows 11

GPU Information

Model: NVIDIA RTX 4070 Laptop GPU
Driver: GeForce Game Ready Driver 566.14 (Release Date: 11/12/2024)

anchu@AK ~ > nvidia-smi
NVIDIA-SMI 566.14 Driver Version: 566.14 CUDA Version: 12.7

anchu@AK ~ > nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2024 NVIDIA Corporation
Built on Thu_Mar_28_02:30:10_Pacific_Daylight_Time_2024
Cuda compilation tools, release 12.4, V12.4.131
Build cuda_12.4.r12.4/compiler.34097967_0

Topic Description

Detailed Description

I am attempting to run a standalone Python script for Isaac Sim using SimulationApp. However, I encounter several errors upon execution. The IsaacSim application itself starts, but the rendering window is completely black and inaccessible.

Steps to Reproduce

Run a script similar to the following:

from isaacsim import SimulationApp  
  
simulation_app = SimulationApp({  
  
    "headless": False,  
    "multi_gpu": False,  
    "active_gpu": 0  
  
})  
  
simulation_app.close()

Error Messages

Terminal:
2024-11-13 20:23:40 [6,797ms] [Error] [carb.graphics-vulkan.plugin] Flags 0x6 must be the same for both device and instance.
2024-11-13 20:30:05 [22,323ms] [Error] [gpu.foundation.plugin] Raytracing is not supported on GPU: 0. Hardware, driver or Operating system upgrade is required.
2024-11-13 20:30:05 [22,323ms] [Error] [carb.scenerenderer-rtx.plugin] rtx driver verification failed.

Application:
HydraEngine rtx failed creating scene renderer.

Full terminal output:

Screenshots or Videos

Additional Information

IsaacSim works as expected from the NVIDIA Omniverse Launcher.

Related Issues

Please try the recommended driver version stated in the documentation.

Also, do any of the examples under standalone_examples run successfully? Could you share nvidia-smi and the compatilibity cheker output?

anchu@AK ~ > nvidia-smi

Tue Nov 26 13:16:57 2024
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 566.14                 Driver Version: 566.14         CUDA Version: 12.7     |
|-----------------------------------------+------------------------+----------------------+
| GPU  Name                  Driver-Model | Bus-Id          Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |
|                                         |                        |               MIG M. |
|=========================================+========================+======================|
|   0  NVIDIA GeForce RTX 4070 ...  WDDM  |   00000000:01:00.0 Off |                  N/A |
| N/A   48C    P8             11W /  100W |     779MiB /   8188MiB |     12%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+

This Solution doesn’t work for me . I have the same Issue with Driver Version 566.14 on Win 11. I downgrade my Driver to 566.03 as recommended in the documentation, but the Error still there.

1 Like

I have also downgraded the driver to 566.03 as recommended and the error persists. I do not recall marking the suggestion as the solution, and I am still facing the same problem.

The Win11 output shows that there are two graphics cards, one of which seems to be virtual. I don’t know if this is the cause of the problem. After trying for a long time ,I gave up Win11 and turn to Ubuntu 22.04, and everything is working now.

Please see if Linux Troubleshooting — Omniverse Developer Guide is helpful.