Nsight Compute get stuck at cusparse function calling: CUDA_ERROR_NO_BINARY_FOR_GPU(209)

The issue here is that the GUI has the “Break on Error” (see screenshot below) turned on, which is the default. Sometimes the CUDA APIs throw errors that can still be handled by the application and it will run correctly. However, with this toggle on, it stops in an interactive profile. You should be able to “Run to Next Kernel” or “Run to Next API Call” in an interactive profiling session even if this error is encountered. You can also disable this toggle and it won’t stop here anymore.
image

1 Like