Tagged Questions

GPGPU is an acronym for the field of computer science known as "General Purpose computing on the Graphics Processing Unit (GPU)"

learn more… | top users | synonyms

127
votes
12answers
23k views

Fastest sort of fixed length 6 int array

Answering to another StackOverflow question (this one) I stumbled upon an interesting sub-problem. What is the fastest way to sort an array of 6 ints ? As the question is very low level: we can't ...
89
votes
15answers
4k views

Why aren't we programming on the GPU?

So I finally took the time to learn CUDA and get it installed and configured on my computer and I have to say, I'm quite impressed! Here's how it does rendering the Mandelbrot set at 1280 x 678 ...
25
votes
3answers
3k views

OpenCL and CUDA

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

Best approach for GPGPU/CUDA/OpenCL in Java?

General-purpose computing on graphics processing units (GPGPU) is a very attractive concept to harness the power of the GPU for any kind of computing. I'd love to use GPGPU for image processing, ...
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 ...
16
votes
9answers
3k views

Have you successfully used a GPGPU?

I am interested to know whether anyone has written an application that takes advantage of a GPGPU by using, for example, nVidia CUDA. If so, what issues did you find and what performance gains did ...
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
324 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, ...
14
votes
4answers
14k views

CUDA Driver API vs. CUDA runtime

When writing CUDA applications, you can either work at the driver level or at the runtime level as illustrated on this image (The libraries are CUFFT and CUBLAS for advanced math): I assume the ...
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
6answers
7k views

How do you get around the maximum CUDA run-time?

I've noticed that CUDA applications tend to have a rough maximum run-time of 5-15 seconds before they will fail and exit out. I realize it's ideal to not have CUDA application run that long but ...
11
votes
5answers
785 views

How to create or manipulate GPU assembler?

Does any one have experience in creating/manipulating GPU machine code, possibly at run-time? I am interested in modifying GPU assembler code, possibly at run time with minimal overhead. ...
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
2answers
350 views

GPGPU vs. Multicore?

What are the key practical differences between GPGPU and regular multicore/multithreaded CPU programming, from the programmer's perspective? Specifically: What types of problems are better suited ...
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

What is the point of GLSL when there is OpenCL?

Consider this the complete form of the question in the title: Since OpenCL may be the common standard for serious GPU programming in the future (among other devices programming), why not when ...
8
votes
5answers
369 views

Easiest way to sign/certify text file in C++?

I want to verify if the text log files created by my program being run at my customer's site have been tampered with. How do you suggest I go about doing this? I searched a bunch here and google but ...
8
votes
6answers
1k views

Financial applications on GPGPU

I want to know what sort of financial applications can be implemented using a GPGPU. I'm aware of Option pricing/ Stock price estimation using Monte Carlo simulation on GPGPU using CUDA. Can someone ...
7
votes
2answers
192 views

Does R fully support the GPU computing?

I am considering to purchase a GPU workstation but the GPU computing is really new to me. As I know GPU computing is very powerful in terms of computing and modeling; and this is the main reason why I ...
6
votes
4answers
281 views

Sparse Cholesky factorization algorithm for GPU

Can anyone provide me with a parallel algorithm for calculating the sparse Cholesky factorization? It must be suitable for execution on a GPU. Any answers in CUDA, OpenCL, or even pseudo-code would ...
6
votes
1answer
207 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
600 views

Any Lisp extensions for CUDA?

I just noted that one of the first languages for the Connection-Machine of W.D. Hillis was *Lisp, an extension of Common Lisp with parallel constructs. The Connection-Machine was a massively parallel ...
6
votes
2answers
355 views

Untrusted GPGPU code (OpenCL etc) - is it safe? What risks?

There are many approaches when it goes about running untrusted code on typical CPU : sandboxes, fake-roots, virtualization... What about untrusted code for GPGPU (OpenCL,cuda or already compiled one) ...
6
votes
2answers
579 views

How to optimize Conway's game of life for CUDA?

I've written this CUDA kernel for Conway's game of life: __global__ void gameOfLife(float* returnBuffer, int width, int height) { unsigned int x = blockIdx.x*blockDim.x + threadIdx.x; ...
6
votes
1answer
291 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
7k views

Doing readback from Direct3D textures and surfaces

I need to figure out how to get the data from D3D textures and surfaces back to system memory. What's the fastest way to do such things and how? Also if I only need one subrect, how can one read ...
5
votes
3answers
111 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
1answer
302 views

Render Mona Lisa to PBO

After reading this article I wanted to try to do the same, but to speed things up the rendering part I've wanted to be performed on the GPU, needless to say why the triangles or any other geometric ...
5
votes
1answer
349 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 ...
5
votes
2answers
450 views

Getting started with GPU programming on Linux

I'm wanting to get started playing with GPU programming on Linux and have several questions: What graphics cards are recommended? I'd like a fairly inexpensive one that supports CUDA and/or OpenCL. ...
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 ...
5
votes
3answers
809 views

In a GLSL fragment shader, how to access to texel at a specific mipmap level?

I am using OpenGL to do some GPGPU computations through the combination of one vertex shader and one fragment shader. I need to do computations on a image at different scale. I would like to use ...
5
votes
5answers
498 views

What's the most trivial function that would benfit from being computed on a GPU?

I'm just starting out learning OpenCL. I'm trying to get a feel for what performance gains to expect when moving functions/algorithms to the GPU. The most basic kernel given in most tutorials is a ...
5
votes
6answers
408 views

Operations on arbitrary value types

This article describes a way, in C#, to allow the addition of arbitrary value types which have a + operator defined for them. In essence it allows the following code: public T Add(T val1, T val2) { ...
4
votes
4answers
118 views

Is it worth offloading FFT computation to an embedded GPU?

We are considering porting an application from a dedicated digital signal processing chip to run on generic x86 hardware. The application does a lot of Fourier transforms, and from brief research, it ...
4
votes
1answer
222 views

cpu vs gpu - when cpu is better [closed]

I know many examples when GPU is much faster than CPU. But exists algorithms (problems) which are very hard to parallelise. Could you give me some examples or tests when CPU can overcome GPU ? Edit: ...
4
votes
2answers
192 views

The peak throughput of cuda Kernel on NVIDA GPU

I have a question about the throughput of a kernel running on a GPU. Assuming its occupancy is 0.5, block size is 256: the programming guide states that it is better to have many blocks so they can ...
4
votes
1answer
311 views

Disassemble an OpenCL kernel?

I'm not sure if it's possible. I want to study OpenCL in-depth, so I was wondering if there is a tool to disassemble an compiled OpenCL kernel. For normal x86 executable, I can use objdump to get a ...
4
votes
1answer
107 views

Special mathematical functions implemented in GPU hardware

I learnt today that in NVIDIA GPUs there are in the vertex unit special hardware functions for calculating linear interpolation in a 3D regular grid. I wonder if there are more of this kind and more ...
4
votes
2answers
318 views

What is the fastest library for finding FFT on a GPU?

Which is the fastest library to find FFT on a GPU? Please give answers for both NVIDIA and ATI cards. Also, if possible give timing figures. Thanks.
4
votes
1answer
105 views

When can I release a source PBO?

I'm using PBOs to asynchronously move data between my cpu and gpu. When moving from the GPU i know I can delete the source texture after I have called glMapBuffer on the PBO. However, what about the ...
4
votes
3answers
1k views

CUDA Block and Grid size efficiencies

What is the advised way of dealing with dynamically-sized datasets in cuda? Is it a case of 'set the block and grid sizes based on the problem set' or is it worthwhile to assign block dimensions as ...
4
votes
5answers
198 views

GPGPU: Still Bleeding Edge? [closed]

Is GPGPU ready for production and prototyping use, or would you still consider it mostly a research/bleeding edge technology? I work in the computational biology field and it's starting to attract ...
4
votes
1answer
127 views

PyCUDA: C/C++ includes?

Something that isn't really mentioned anywhere (at least that I can see) is what library functions are exposed to inline CUDA kernels. Specifically I'm doing small / stupid matrix multiplications ...
4
votes
2answers
255 views

Efficient Matrix decomposition into square submatrices in C++

I have implemented a Matrix datatype in C++ by using 1D datatype and wrapping it into rows and columns. Now, I want to have this possibility to create square/blocked sub-matrices from this time and I ...
4
votes
2answers
497 views

What are the real C++ language constructs supported by CUDA device code?

Appendix D of the 3.2 version of the CUDA documentation refers to C++ support in CUDA device code. It is clearly mentioned that CUDA supports "Classes for devices of compute capability 2.x". However, ...
4
votes
5answers
1k views

OpenCL FFT lib for GPUs?

Is there any general FFT lib available for running on the GPU using OpenCL? As far as my knowledge goes, Apple sample code for power-of-two OpenCL FFT is the only such code available? Does any such ...
4
votes
1answer
343 views

Where can I find working code examples of object detection (cars, people) written in OpenCL or CUDA?

Where can I find working code of object detection (part of computer vision) written in OpenCL or CUDA? Greatly appreciate in advance.
4
votes
1answer
293 views

CUDA efficient polygons fill algorithm

I need efficient fill algorithm to fill closed polygons (like ex. Scanline fill), which I can run on CUDA. Have you got any suggestions? Thanks in advance for any replays!

1 2 3 4 5 6