Tagged Questions

An American global technology company based in Santa Clara, California, best known for its graphics processors (GPU's).

learn more… | top users | synonyms

25
votes
8answers
11k views

Horrible redraw performance of the DataGridView on one of my two screens

I've actually solved this, but I'm posting it for posterity. I ran into a very odd issue with the DataGridView on my dual-monitor system. The issue manifests itself as an EXTREMELY slow repaint of ...
19
votes
5answers
5k views

NVIDIA vs AMD: GPGPU performance

I'd like to hear from people with experience of coding for both. Myself, I only have experience with NVIDIA. NVIDIA CUDA seems to be a lot more popular than the competition. (Just counting question ...
9
votes
5answers
1k views

Does GPL code linking with proprietary library depend which is created first?

Microsoft creates their windows and MFC DLL library, etc. An open source develop write a new MFC application and release the source code as GPL. The app has to link with the MS DLL/libraries to ...
8
votes
3answers
557 views

Is it possible to run Java3D applications on Nvidia 3D Vision hardware?

Is is possible to run a Java3D application on Nvidia 3D Vision hardware? I've got an existing Java3D application that can run in stereoscopic 3D. In the past, I've always run the application on ...
8
votes
2answers
3k views

What is a bank conflict? (Doing Cuda/OpenCL programming)

I have been reading the programming guide for CUDA and OpenCL, and I cannot figure out what a bank conflict is. They just sort of dive into how to solve the problem without elaborating on the subject ...
8
votes
1answer
2k views

Streaming multiprocessors, Blocks and Threads (CUDA)

What is the relationship between a CUDA core, a streaming multiprocessor and the CUDA model of blocks and threads? What gets mapped to what and what is parallelized and how? and what is more ...
6
votes
1answer
208 views

Synchronizations in GPUs

I have some question about how GPUs perform synchronizations. As I know, when a warp encounters a barrier (assuming it is in OpenCL), and it knows that the other warps of the same group haven't been ...
6
votes
1answer
293 views

Concurrency, 4 CUDA Applications competing to get GPU resources

What would happen if there are four concurrent CUDA Applications competing for resources in one single GPU so they can offload the work to the graphic card?. The Cuda Programming Guide 3.1 mentions ...
6
votes
1answer
116 views

How do I see the commands that are run by GNU make?

I'm trying to debug a complex Makefile. How do you get GNU make to print all the commands it runs? I couldn't find the answer in the man page (using the -d flag doesn't seem to print it). (This ...
6
votes
1answer
326 views

nVidia SLI Tricks

I'm optimizing a directx graphics application to take advantage of nVidia's SLI technology. I'm currently investigating some of the techniques mentioned in their 'Best Practices' web page, but wanted ...
5
votes
2answers
120 views

How do you calculate the load on a nvidia (cuda capable), gpu card?

I want to know how to display percentage of the graphics card ability upon tasks being sent to the card. Like a Gnome's system monitor. Moreover, how to obtain device parameters to calculate a ...
5
votes
1answer
1k views

cudaMemcpy invalid argument

My program runs 2 threads - Thread A (for input) and B (for processing). I also have a pair of pointers to 2 buffers, so that when Thread A has finished copying data into Buffer 1, Thread B starts ...
5
votes
1answer
2k views

NVIDIA CUDA: What is the developer driver?

To develop NVIDIA CUDA programs, the tools needed are: Developer drivers CUDA Toolkit GPU Computing SDK What is this developer driver? Installing it silently overrides any NVIDIA graphics driver ...
5
votes
1answer
341 views

CUDA kernels throw different results on 2 different GPUs(GeForce 8600M GT vs Quadro FX 770M)

I've been working on an AES CUDA application and I have a kernel which performs ECB encryption on the GPU. In order to assure the logic of the algorithm is not modified when running in parallel I send ...
4
votes
1answer
3k views

Issue with production release of CUDA Toolkit 4.0 and Nsight 2.0

I previously had the release candidates of both programs, then I uninstalled them and installed the production releases of the programs. This includes the CUDA toolkit, Parallel Nsight, and the GPU ...
4
votes
1answer
212 views

Detecting if the monitor is powered off

I have a kiosk type application and I need to be notified if the LCD TV is powered off so I can chastise someone. I'm running Ubuntu 10.10 with nVidia video cards and the nVidia drivers. The TVs are ...
4
votes
1answer
260 views

Where does Cuda kernel code reside on nvidia GPU?

I have gone through Cuda programming guide but still not clear where does cuda kernel reside on GPU? In other words, in which memory segment does it reside? Also, How do I know what is the max ...
4
votes
3answers
972 views

Why aren't there bank conflicts in global memory for Cuda/OpenCL?

One thing I haven't figured out and google isn't helping me, is why is it possible to have bank conflicts with shared memory, but not in global memory? Can there be bank conflicts with registers? ...
4
votes
3answers
438 views

Can I use openCL in a application that I distribute to non developper machine?

I recently started to learn how to use openCL to speed up some part of my code. So far the speed gain is impressive. In one case the code ran up to 50X faster than on the CPU. However I wonder if can ...
3
votes
1answer
70 views

Kernel silently fails to execute

I am trying to write MergeSort in OpenCL (I know, BitonicSort is faster, but I want to compare them) and currently I have came accross a strange problem: If I set global size to 1 << 24 and ...
3
votes
1answer
142 views

optimal pixel-read back strategy

I need to render certain scenes and read the whole image back in main memory. I've search for this and it seems that most video cards will accelerate the rendering but the read-back will be very slow. ...
3
votes
1answer
659 views

How to control stereo-frames separately with C#? (NVIDIA 3D shutter glasses)

I’m trying to make a very simple application which would display different images on each eye. I have Asus VG236H monitor and NVIDIA 3D Vision kit, the stereo 3D shutter glasses. The I’m using C#, ...
3
votes
2answers
314 views

Is there really a timeout for kernels on nvidia gpus?

searching for answers for why my kernels produce strange error messages or "0" only results I found this answer on SO that mentions that there is a timeout of 5s for kernels running on nvidia gpus? I ...
3
votes
2answers
362 views

Mysterious CUDA profiler error

So I have successfully installed the CUDA toolkit and GPU computing SDK on a Mac Pro running OS X version 10.6.6. The sample CUDA programs provided with the SDK as well as some programs of my own ...
3
votes
5answers
2k views

CUDA determining threads per block, blocks per grid

I'm new to the CUDA paradigm. My question is in determining the number of threads per block, and blocks per grid. Does a bit of art and trial play into this? What I've found is that many examples have ...
3
votes
3answers
2k views

CUDA Matrix multiplication breaks for large matrices

I have the following matrix multiplication code, implemented using CUDA 3.2 and VS 2008. I am running on Windows server 2008 r2 enterprise. I am running a Nvidia GTX 480. The following code works fine ...
3
votes
1answer
293 views

Rationalizing what is going on in my simple OpenCL kernel in regards to global memory

const char programSource[] = "__kernel void vecAdd(__global int *a, __global int *b, __global int *c)" "{" " int gid = get_global_id(0);" "for(int i=0; i<10; ...
3
votes
4answers
842 views

OpenGL without X.org in linux

I'd like to open an OpenGL context without X in linux. Is there any way at all to do it? I know it's bossible for integrated intel graphics card hardware, though most people have nvidia cards in ...
3
votes
1answer
618 views

Issues with nVidia nView desktop manager and Delphi applications?

I've recently had a customer report an issue with my applications and NVidia nView desktop manager. Basically nView seems to 'unhide' hidden secondary forms when moving an application between ...
3
votes
5answers
11k views

Dynamic Allocation of Constant memory in CUDA

I'm trying to take advantage of the constant memory, but I'm having a hard time figuring out how to nest arrays. What I have is an array of data that has counts for internal data but those are ...
3
votes
6answers
18k views

CUDA global (as in C) dynamic arrays allocated to device memory

So, im trying to write some code that utilizes Nvidia's CUDA architecture. I noticed that copying to and from the device was really hurting my overall performance, so now I am trying to move a large ...
2
votes
1answer
61 views

Cuda-memcheck not reporting out of bounds shared memory access

I am runnig the follwoing code using shared memory: __global__ void computeAddShared(int *in , int *out, int sizeInput){ //not made parameters gidata and godata to emphasize that parameters ...
2
votes
3answers
170 views

CUDA Matrix Addition Seg faults

I just have a question about my cuda program that I wrote. It allows me to enter the size of the matrix, col and rows. Say I enter ~1124 and it computes fine. However say I enter 1149 it Seg faults ...
2
votes
3answers
92 views

Error compiling CUDA from Command Prompt

I'm trying to compile a cuda test program on Windows 7 via Command Prompt, I'm this command: nvcc test.cu But all I get is this error: nvcc fatal : Cannot find compiler 'cl.exe' in PATH What ...
2
votes
2answers
362 views

what is the difference between a NVIDIA Quadro 6000 and Tesla C2075 graphic cards?

I am looking into GPU computing and I can't figure out what the technical / performance differences are between a NVIDIA Quadro 6000 and a NVIDIA Tesla C2075 graphics card. They both have 6GB of RAM ...
2
votes
2answers
214 views

Inter-block barrier on CUDA

I want to implement a Inter-block barrier on CUDA, but encountering a serious problem. I cannot figure out why it does not work. #include <iostream> #include <cstdlib> #include ...
2
votes
1answer
263 views

NV_STEREO_IMAGE_SIGNATURE and DirectX 10/11 (nVidia 3D Vision)

I'm trying to use SlimDX and DirectX10 or 11 to control the stereoization process on the nVidia 3D Vision Kit. Thanks to this question I've been able to make it work in DirectX 9. However, due to ...
2
votes
1answer
201 views

CUDA binary search implementation

I am trying to speed up the CPU binary search. Unfortunately, GPU version is always much slower than CPU version. Perhaps the problem is not suitable for GPU or am I doing something wrong ? CPU ...
2
votes
2answers
98 views

Control flow for CUDA program

Below is a small program that i wrote to see how race conditions can happen in CUDA but i was surprised by the output. #include<cutil.h> #include<iostream> __global__ void testLocal(int ...
2
votes
1answer
179 views

How to determine the power status of a monitor/TV in Linux

I asked this same question a few months ago, but I've run into another roadblock and I'm hoping someone will have a flash of insight. The is the previous thread: Detecting if the monitor is powered ...
2
votes
0answers
240 views

Enable/Disable multiple monitors via Win32 API or NVidia API?

I'm trying to write a small utility that will enable/disable monitors under Windows 7 with my nVidia graphics card. (ie. "Extend the desktop onto this monitor", etc) The reason is that my nVidia ...
2
votes
2answers
96 views

Cuda char* variable assignment

This is a follow up question to the selected answer in this post: Output of cuda program is not what was expected. While the below functions works: __global__ void setVal(char **word) { char ...
2
votes
1answer
128 views

Output of CUDA program is empty [closed]

Possible Duplicate: Output of cuda program is not what was expected I am running this simple CUDA program: #include <cuda_runtime.h> #include <cuda.h> #include <stdio.h> ...
2
votes
2answers
200 views

Fragment shaders on ATI cards versus NVIDIA ones

I use this fragent shader (inspired from some tutorial found on the NVIDIA site some time ago). It basically compute bi-linear interpolation of a 2D texture. uniform sampler2D myTexture; uniform vec2 ...
2
votes
4answers
719 views

AMD CPU versus Intel CPU openCL

With some friends we want to use openCL. For this we look to buy a new computer, but we asked us the best between AMD and Intel for use of openCL. The graphics card will be a Nvidia and we don't have ...
2
votes
1answer
595 views

How do I bring up (embedded) Linux on a Tegra Ventana development board?

I have a Tegra Ventana development kit, on which I want to run Linux. (NVIDIA only makes Android 2.3 and 2.2 images available for the Ventana: see "Ventana Specific Downloads" at the bottom of ...
2
votes
2answers
294 views

Enabling Anti-Aliasing in NVIDIA Control Panel causes line distortion in orthographic projection

On this OpenGL application that I'm developing on Windows 7 with Visual Studio, I tried to enable Anti-Aliasing on the NVIDIA Control Panel (only for the application .exe). Enabling that causes a ...
2
votes
2answers
472 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?
2
votes
2answers
128 views

How to get card specs programatically in CUDA

I'm just starting out with CUDA. Is there a way of getting the card specs programatically?
2
votes
2answers
255 views

cudaErrorNoDevice GTS250 gentoo

first question is cudaGetDeviceCount return cudaErrorNoDevice: This indicates that no CUDA-capable devices were detected by the installed CUDA driver. cat /proc/driver/nvidia/version NVRM version: ...

1 2 3 4 5