Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
2 votes
1 answer
323 views

Can Nsight Systems use debug info URLs?

So I am on Arch Linux and the libraries from the official repositories do not ship with debug symbols. To work around this in most debugging tools, one can use DEBUGINFOD_URLS=https://debuginfod....
TIL's user avatar
  • 35
-3 votes
1 answer
528 views

Cuda debugging using Single GPU with visual studio

I am working on Windows 7, Visual studio 2010. Can we debug cuda code using single GPU which also providing display to the monitor in the same PC? What tools are available ? NSIGHT seems to be working ...
gpuguy's user avatar
  • 4,595
1 vote
1 answer
401 views

Debugging Illegal Address Error within CUDA kernel using NVIDIA's Nsight (Ubuntu) [closed]

My cudaPeekAtLastError() call after my kernel execution is catching an "Illegal address" error. My block and grid sizes are large enough that I'm overwhelmed by trying to find out which access is ...
RayaneCTX's user avatar
  • 593
0 votes
1 answer
745 views

Missing Nsight Menu Visual Studio 2015

First of all , i have the following specs: -Visual studio 2015Pro version: 14.0.25123.00 update 2 -Nvidia GeForce GTX 765M (i know it is not in the supported gpus list) -Nsight 5.1 and Nsight 6.0 ...
Levente's user avatar
  • 151
0 votes
1 answer
509 views

NVidia Nsight Debugger - Geometry window doesn't work

I programmed an application that displays a quad, which works perfectly. However, if I try to debug my application with NVidia's Nsight debugger, the quad is not shown in the Geometry window. Even if ...
Philipp Neufeld's user avatar
1 vote
1 answer
944 views

Attach a running OpenGL to NSight for graphics debugging

How do i attach a running OpenGL program to NSight for graphics debugging? This link talks about how to attach a CUDA application but the same procedure is not applicable for performing graphics ...
user1919600's user avatar
5 votes
4 answers
4k views

NSight attach shows no available processes

I am having a weird problem that when trying to attach am application with NSight, there is no available processes showing up in the list. I am trying to debug CUDA code. So I attached my VS2012 ...
Nick X Tsui's user avatar
  • 2,902
2 votes
1 answer
1k views

NSight Graphics Debugging cannot start

I am trying to debug a HLSL shader in VS2012 using NSight, but it can't start. When I click on "Start Graphics Debugging", it seems like it starts the app for a moment, and then closes it (output ...
Lou's user avatar
  • 4,434
1 vote
0 answers
145 views

I can't see any shader in Shader List when debugging GLSL using NSight

Environment: This is the first time I using Nsight in VS2013. My GPU is GTX630M, and OS is win7 x64, version of OpenGL is 4.5, Nsight 4.6, GPU Driver 309.XX. My program using FreeGlut and glew, it is ...
HolyChen's user avatar
0 votes
1 answer
253 views

How to debug CUDA kernels in Visual Studio 2010 without monitor halting

I have CUDA 6.5 SDK with Parallel Nsight 4.2 installed on Win7 x64. I want to debug my CUDA kernels, but my monitor halts at break points. In my Nsigt montior options under CUDA menu I have Desktop ...
sajid sharlemin's user avatar
2 votes
1 answer
876 views

nsight debugging with OpenGL interop

Usually I program on Linux, now I'v setup a Windows environment just to debug with the nsight version of Visual Studio. But when I try to start the debugger (either Graphics or CUDA Debugging), it ...
Adam's user avatar
  • 659
1 vote
1 answer
914 views

Visual Studio 2010 debugger points to wrong line

The debugger in Visual Studio 2010 is recently pointing at the wrong lines and/or skipping lines and I have no idea why this is. This is a CUDA project and only happens in CUDA files. I've noticed the ...
Didii's user avatar
  • 1,343
0 votes
1 answer
755 views

How to debug host code in mixed cuda C++ program?

My work platforms are VS2010 and Nsight 3.1. With Nsight, breakpoints can be set in cuda kernel and the debugger works well. If the breakpoints are set in host code, Nsight just ignores them. I don'...
MeshFree's user avatar
1 vote
1 answer
1k views

Trying to wake up breaking points in gpu

I wan to debug with Nsight but the compiler do not stop in break points. I have enabled the option that generates debug information. Here is the command line: Driver API (NVCC Compilation Type is ....
Thoth's user avatar
  • 1,041
0 votes
1 answer
856 views

CUDA Dynamic Parallelism debugging is not supported in preemption mode. Breakpoints will be disabled

Now, I realize there is already a "solution" to this problem, but that solution doesn't work for me. My setup is very close to the one in this post : Can't debug CUDA: CUDA dynamic parallelism ...
Hair of Slytherin's user avatar
0 votes
1 answer
744 views

Why doesn't debugger break in kernel code

I have Eclipse Nsight 5.0 (CUDA 5.0) installed on a 64 Bit Ubuntu 12.04 Machine with two Graphic Cards: Geforce GT 240 Desktop UI and Geforce GTX 480 for debugging. I can compile and run the Cuda ...
user2773181's user avatar
0 votes
1 answer
264 views

Nsight Debug %1 is no a valid Win32 application

I have a VS 2010 project where I have a .cu file that adds two vectors. It is the one from cuda sdk 5.5 samples. Also, I have replaced the main function with a mexfunction and made the correct changes ...
Darkmoor's user avatar
  • 902
0 votes
2 answers
1k views

Nsight debugger doesn't hit breakpoints

My current configuration : Visual Studio 2010, CUDA 5.5, Nsight version 3.1, Graphics card driver version 327.23 (latest) The problem is that breakpoints in __global__ kernels are not hit when ...
Giuliano De Sabata's user avatar
2 votes
2 answers
1k views

Debug cuda kernel on mexfunction by attaching Matlab with Nsight GPU Debugger

I would like to ask how can we debug cuda kernel that is called from a mexfunction with VS 2010 and Nsight. I followed the instructions in http://http.developer.nvidia.com/NsightVisualStudio/2.2/...
Darkmoor's user avatar
  • 902
1 vote
0 answers
202 views

Nsight eclipse for linux remote debugging error [duplicate]

I'm using ubuntu12.10 x64 on my notebook and the nsight eclipse for linux to write cuda programs and I am trying to debug it on a server running CentOS6.0 x64 with 2 Geforce GTX 260 display cards. ...
Xiangyu.Guo's user avatar
4 votes
2 answers
494 views

Debug JCuda program

I'd like to know what is the best debugger for a JCuda project (if exists). I know that for normal CUDA applications there are tools like cuda-gdb and cuda-memcheck and I wonder if I can use any of ...
Rorrim's user avatar
  • 368
1 vote
2 answers
429 views

Differences between Nsight debug launch and normal OS launch

I'd like to know what sets the "Debug with Nsight" option apart from simply executing the binary through Visual Studio or the OS's command line. The reason I ask is because my program works fine if ...
Leo Brito's user avatar
  • 2,051
2 votes
1 answer
997 views

Continue N times in Visual Studio 2008

I'm using Visual Studio 2008 to debug some CUDA code (NSight v3) I'm working on. I've noticed several nice features of the VS2008 debugger, such as the ability to only break every N times or after N ...
Ryan Marcus's user avatar
  • 1,026
0 votes
1 answer
1k views

NSight skipping breakpoints while debugging

I have a cuda application which I am trying to debug using parallel Nsight debugger. I have a breakpoint in my kernel function. But when I am trying to debug the code the debugger is not stopping at ...
duttasankha's user avatar
6 votes
3 answers
2k views

Remote debugging and profiling of CUDA program running on Linux server

This is my scenario. I program my CUDA application on windows machine. I compile and run this application on remote linux (Debian) server (without graphical output) using putty. I want to ask what ...
stuhlo's user avatar
  • 1,507
0 votes
1 answer
760 views

Nvidia Nsight 3 with OpenGL 3.3 error: Thisversion of OpenGL does not support capabilities

If I start graphic debugging with Nsight 3 I get the following error: "This version of OpenGL does not support capabilities and extensions required by Nsight." Which OpenGL version should I use? Up ...
Tobias's user avatar
  • 447
2 votes
3 answers
4k views

debugging cuda files in visual studio

i have a cpp function (function.cpp") which i "mex"-ed. then i open the function.cpp file in visual studio and attach visual studio to a running matlab process. when i call the function in matlab i ...
user1612986's user avatar
  • 1,415
1 vote
1 answer
484 views

Unable to insert a break point in CUDA (.cu) file

When I try to insert a break point in my .cu file, I get a message "BreakPoint cannot be inserted at this point" I have installed Parallel NSight. Is there any setting I need to change or am I ...
Arjun K R's user avatar
  • 462
5 votes
1 answer
3k views

CUDA Unable to see shared memory values in Nsight debugging

I've been struggling for some time a problem I can't seem to find a solution to. The problem is that when I try to debug my CUDA code using Nvidia Nsight under Visual Studio 2008 I get strange results ...
Iam's user avatar
  • 401
1 vote
1 answer
1k views

Nvidia Nsight 2.2 OpenGL shader debugger - not working?

I've got NVidia's Parallel Nsight 2.2 system configured on my two computers. The target has a Geforce 450 gts with driver ver 301.42 and the host a Quadro 1000M with the same driver version. Loading ...
user1669479's user avatar
0 votes
1 answer
441 views

How to debug in Nsight in Visual studio when you have multiple gpus

Does anyone know how to switch between GPUs in Nsight in Visual Studio while debugging, I am programming 2 quadro cards. Code is in cuda C.
Bharat's user avatar
  • 2,179
2 votes
1 answer
4k views

How to debug CUDA kernels in Visual studio or Parallel Nsight

I have CUDA 4.1 SDK with Parallel Nsight 2.1 installed on Win7 x64. I want to debug my CUDA kernels, how to do this? Is this possible with one GPU? There is a utility Nsight Monitor. I have tried it, ...
Hlavson's user avatar
  • 319
3 votes
3 answers
3k views

NVIDIA Parallel Nsight and OpenCL

I'm little confuse with NVIDIA Parallel Nsight and OpenCL, can anyone confirm me that it is possible to debug OpenCL code using NVIDIA Parallel Nsight 1.5 or 2.0RC?
pierre tautou's user avatar