Tagged Questions

Acronym for "Graphics Processing Unit". For programming traditional graphical applications, see the tag entry for "graphics programming". For general-purpose programming using GPUs, see the tag entry for "gpgpu".

learn more… | top users | synonyms

107
votes
3answers
3k views

Once upon a time, when > was faster than < … Wait, what?

I am reading a wonderful OpenGL tutorial. It's unbelievably great, trust me. The topic I am currently at is Z-buffer. Aside from explaining what's it all about, the author mentions that we can perform ...
29
votes
8answers
3k views

Intro to GPU programming

Everyone has this huge massively parallelized supercomputer on their desktop in the form of a graphics card GPU. What is the "hello world" equivalent of the GPU community? What do I do, where do I ...
26
votes
8answers
6k views

C#: Perform Operations on GPU, not CPU (Calculate Pi)

I've recently read a lot about software (mostly scientific/math and encryption related) that moves part of their calculation onto the GPU which causes a 100-1000 (!) fold increase in speed for ...
25
votes
3answers
3k views

OpenCL and CUDA

Should i learn OpenCL if i only want to program NVIDIA GPUs ?
24
votes
8answers
9k views

Utilizing the GPU with c#

I am trying to get more processing power out of my grid. I am using all cpus/cores, is it possible to utilize the GPU with C#. Anyone know any libraries or got any sample code?
18
votes
2answers
2k views

How do I make an already written concurrent program run on a GPU array?

I have a neural network written in Erlang, and I just bought a GeForce GTX 260 card with a 240 core GPU on it. Is it trivial to use CUDA as glue to run this on the graphics card?
15
votes
4answers
14k views

How to obtain OpenCL SDK?

I was perusing http://www.khronos.org/ web site and only found headers for OpenCL (not OpenGL which I don't care about). How can I obtain OpenCL SDK?
14
votes
1answer
326 views

The variation of cache misses in GPU

I have been toying an OpenCL kernel that access 7 global memory buffers, do something on the values and store the result back to a 8th global memory buffer. As I observed, as the input size increases, ...
13
votes
4answers
573 views

How does OpenGL work at the lowest level? [closed]

I understand how to write OpenGL/DirectX programs, and I know the maths and the conceptual stuff behind it, but I'm curious how the GPU-CPU communication works on a low level. Say I've got an OpenGL ...
13
votes
5answers
2k views

Which OpenGL functions are not GPU-accelerated?

I was shocked when I read this (from the OpenGL wiki): glTranslate, glRotate, glScale Are these hardware accelerated? No, there are no known GPUs that execute this. The driver computes ...
13
votes
7answers
983 views

Can you program a pure GPU game?

I'm a CS master student, and next semester I will have to start working on my thesis. I've had trouble coming up with a thesis idea, but I decided it will be related to Computer Graphics as I'm ...
12
votes
3answers
245 views

Running MSIL on GPU

Maybe a crazy question but is it possible to run threads on the GPU? Reason I ask is I have some quite complicated computation to execute (it's mostly maths and arrays) and would like to see if I can ...
12
votes
2answers
2k views

Java GPU programming

Is it possible to do GPU programming in Java ? I mean without using native libraries. And how much of a performance improvement can one expect when we switch over to gpu's ? Edit: I am not looking ...
12
votes
2answers
3k views

Using Delphi to take advantage of GPGPU technology?

GPGPU is the principle of using the parallel processors on video cards for massive increases in performance. Does anyone have any ideas about using GPGPU in Delphi, using either OpenCL or CUDA? CUDA ...
12
votes
16answers
2k views

What future does the GPU have in computing?

Your CPU may be a quad-core, but did you know that some graphics cards today have over 200 cores? We've already seen what GPU's in today's graphics cards can do when it comes to graphics. Now they ...
11
votes
4answers
702 views

Python GPU programming

I am currently working on a project in python, and I would like to make use of the GPU for some calculations. At first glance it seems like there are many tools available; at second glance, I feel ...
10
votes
2answers
565 views

Learning GPGPU programming

My hands have been itching to learn GPGPU programming for some time. I finally have some time on my hands so I want to use it as wisely as possible. I'm really interested in your guys experience with ...
10
votes
8answers
1k views

Feasability of GPU as a CPU?

What do you think the future of GPU as a CPU initiatives like CUDA are? Do you think they are going to become mainstream and be the next adopted fad in the industry? Apple is building a new framework ...
9
votes
1answer
192 views

Library function capabilities of Mathematica

I am trying to use CUSP as an external linear solver for Mathematica to use the power of the GPU. Here is the CUSP Project webpage. I am asking for some suggestion how we can integrate CUSP with ...
9
votes
3answers
664 views

Programmatically fetch GPU utilization

Is there a standard way of getting the current load on the GPU? I'm looking for something similar to the Task Manager showing CPU%. Utilities such as GPU-Z show this value but I'm not sure how it gets ...
9
votes
3answers
2k views

Off screen rendering when laptop shuts screen down?

I have a lengthy number-crunching process which takes advantage of quite abit of OpenGL off-screen rendering. It all works well but when I leave it to work on its own while I go make a sandwich I ...
8
votes
2answers
200 views

Good books and resources on data parallel programming and algorithms

I've read the following and most of the NVIDIA manuals and other content. I was also at GTC last year for the papers and talks. CUDA by Example: An Introduction to General-Purpose GPU Programming ...
8
votes
3answers
1k views

How do I run MATLAB code on the GPU using CUDA?

I want to run MATLAB code on the GPU using NVIDIA's CUDA. I found a couple of 3rd-party engines: Jacket GPUMat Would anyone recommend these or are there better ones out there? Any tips or ...
8
votes
2answers
1k views

Any open source library for sparse linear algebra in OpenCL?

I am looking for some sparse linear algebra OpenCL kernels such as blas vector/vector operations and matrix / vector operations but with sparse data structures. Ideally that library would feature most ...
8
votes
12answers
2k views

Graph rendering using 3D acceleration

We generate graphs for huge datasets. We are talking 4096 samples per second, and 10 minutes per graph. A simple calculation makes for 4096 * 60 * 10 = 2457600 samples per linegraph. Each sample is a ...
7
votes
1answer
146 views

Using more than one GPU in matlab

this is the output of ginfo using Jacket/matlab: Detected CUDA-capable GPUs: CUDA driver 270.81, CUDA toolkit 4.0 GPU0 Tesla C1060, 4096 MB, Compute 1.3 (single,double) (in use) GPU1 Tesla C1060, ...
7
votes
1answer
828 views

FFmpeg Hardware Acceleration -> GPU + DirectShow

Is there a hardware accelerated version of FFmpeg (e.g. a version that utilizes the GPU)? Also, does anybody use FFmpeg with GPU support? Possibly for scaling and converting video format? Or, for ...
7
votes
4answers
2k views

Run C# code on GPU

I have no knowledge of GPU programming concepts and APIs. I have a few questions: Is it possible to write a piece of managed C# code and compile/translate it to some kind of module, which can be ...
7
votes
7answers
491 views

Using random numbers with GPUs

I'm investigating using nvidia GPUs for Monte-Carlo simulations. However, I would like to use the gsl random number generators and also a parallel random number generator such as SPRNG. Does anyone ...
7
votes
1answer
457 views

Is it possible to achieve Huffman decoding in GPU?

We have a database encoded with Huffman coding. The aim here is to copy on the GPU it with its associated decoder; then on the GPU, decod the database and do stuff on this decoded database without ...
7
votes
2answers
2k views

graph algorithms on GPU

the current GPU threads are somehow limited (memory limit, limit of data structures, no recursion...). do you think it would be feasible to implement a graph theory problem on GPU. for example ...
7
votes
26answers
760 views

Will optimizing code become unnecessary?

If Moore's Law holds true, and CPUs/GPUs become increasingly fast, will software (and, by association, you software developers) still push the boundaries to the extent that you still need to optimize ...
7
votes
2answers
975 views

Is there a task manager equivalent that shows GPU usage history?

Is there an application which can show me GPU usage history in the same way as I can bring up task manager to see CPU usage? I would like to be able to see how much load I am putting on the GPU with ...
6
votes
2answers
172 views

Loading Code onto GPU (Intel Sandy Bridge)

My question is not about GPGPU. I understand GPGPU pretty decently and that is not what I am looking for. Intel's Sand Bridge has supposedly some features that allow you to directly perform ...
6
votes
4answers
278 views

Generalized sliding-window computation on the GPU

Here's some Python code that implements a sliding-window computation on two 3D matrices, X and Y. import numpy def sliding_dot( X,Y ) : assert X.ndim == Y.ndim == 3 iw,ih,id = X.shape ...
6
votes
2answers
250 views

How to match OpenCL devices with a specific GPU given PCI vendor, device and bus IDs in a multi-GPU system?

I would like to be able to match OpenCL devices with GPUs in the system on multi-GPU systems identified by PCI IDs. For example, if I have a system with multiple GPUs, possibly from different ...
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
555 views

GPU MD5/SHA1 Hasher

I would like to make md5/sha1 hasher tool to calculate hash for large number of big files like movies. Basically this should be part of bigger project that will use that data to organize files. I can ...
6
votes
1answer
423 views

State-of-the-art GPU volume rendering

what is the current technique for implementing a GPU based volume renderer in the medical context, i.e. reasonable amounts of image data (512x512x1500 or more at 16bit) and interactive/real-time ...
6
votes
5answers
6k views

GPU Emulator for CUDA programming without the hardware

Question: Is there an emulator for a Geforce card that would allow me to program and test CUDA without having the actual hardware? Info: I'm looking to speed up a few simulations of mine in CUDA, ...
6
votes
4answers
972 views

Do graphic cards have instruction sets of their own?

Do graphic cards have instruction sets of their own? I assume they do, but I have been wondering if it is proprietary or if there is some sort of open standard. Is every GPU instruction preceded by a ...
6
votes
6answers
2k views

Detecting GPU rendering in Flash Player 10

Apparently, in Flash 10, you can use the GPU to calculate shaders, and if the user doesn't have a compatible gpu, it falls back to the cpu. The problem is that the cpu is very slow to calculate the ...
5
votes
3answers
84 views

Can I utilise cores in GPU from c# WITHOUT change to code?

I realise there are several questions on this subject but I believe my angle is unique. I have a mature C# app that I use for scientific number crunching. In the code I start 24 C# threads on my 24 ...
5
votes
1answer
105 views

Is CUDA hardware needed at compile time?

Is installed CUDA capable graphics card necessary (in Linux) for compiling CUDA programs with nvcc? Or one can compile programs everywhere and run only on such systems?
5
votes
1answer
164 views

Performance of integer and bitwise operations on GPU

Though GPUs are supposed for use with floating point data types, I'd be interested in how fast can GPU process bitwise operations. These are the fastest possible on CPU, but does GPU emulate bitwise ...
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
3answers
112 views

Fast rasterizing of text and vector art

Suppose there is a lot of vector shapes (Bezier curves which determine the boundary of a shape). For example a page full of tiny letters. What is the fastest way to create a bitmap out of it? I once ...
5
votes
2answers
244 views

Fastest Image Processing Library

We are developing a system that analyses high quality infrared image streams to determine the temperature using a chromaticity diagram. Can anyone suggest an image processing library that utilises ...
5
votes
5answers
429 views

Voxels… Honestly, I need to know where to begin

Okay, i understand that voxels are just basically a volumetric version of a pixel. After that, I have no idea what to even look for. Googling doesn't show any tutorials, I can't find a book on it ...
5
votes
1answer
352 views

What is the context switching mechanism in GPU?

As I know, GPUs switch between warps to hide the memory latency. But I wonder in which condition, a warp will be switched out? For example, if a warp perform a load, and the data is there in the cache ...

1 2 3 4 5 10