Nsight skips (ignores) over break points in VS10 Cuda when debugging remotely but if debug locally on the target machine it works fine

StackOverflow https://stackoverflow.com/questions/14525203

  •  05-03-2022
  •  | 
  •  

Question

when I debugging my cuda project remotely on the host it ignore breakpoints but execute completely . but when I debug my project locally on the target machine it works fine .

I checked my driver version it was 301.42 and my nsight version is 2.2

my target machine has Geforce 8600GT and host machine has Geforce 6200 turboCache .I think that my host machine's GPU is not TCC enable.

nsight Analysis activity work fine in both locally and remotely but cuda debugging is work only in local mode

Was it helpful?

Solution

This is most likely a driver version problem. My experience is that not every driver version works with Nsight. Currently i am running the latest driver version (310.90) and Nsight 3.0 is working fine locally and also remotely. When in doubt, use the driver version that is listed on the Nsight download page.

OTHER TIPS

that problem was because I bring project that already has built on my target to the host , but when I clean the project on host and rebuild it it dosent work because of one link error I search the link error and find the solution

solution was doing flowing instruction : project -> propertiy->configuration properties->linker->general -> enable Incremental linking and update it to NO(/INCREMENT:NO)

and then debugging is work remotely

I am sorry about my ignorance :D

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top