Tagged Questions
This tag refers to the CUDA parallel computing architecture for harnessing the power of the GPU.
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
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 ...
18
votes
5answers
5k views
CUDA for .net?
I know that there are a lot of CUDA language bindings, such as PyCUDA, but are there any good bindings for .Net? The only one I've seen is this one, but I'd like to know if there are any others.
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?
16
votes
6answers
3k views
Can I program Nvidia's CUDA using only Python or do I have to learn C?
I guess the question speaks for itself. I'm interested in doing some serious computations but am not a programmer by trade. I can string enough python together to get done what I want. But can I ...
16
votes
4answers
21k views
How do I start a new CUDA project in Visual Studio 2008?
This is an incredibly basic question, but how do I start a new CUDA project in Visual Studio 2008? I have found tons and tons of documentation about CUDA related matters, but nothing about how to ...
16
votes
6answers
6k views
Good beginners tutorial on CUDA?
I am looking for some good beginners tutorial for learning the basics of CUDA.
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
8answers
8k views
CUDA vs FPGA?
I am developing a product with heavy 3D graphics computations, to a large extent closest point and range searches. Some hardware optimization would be useful. While I know little about this, my boss ...
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
7answers
2k views
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 ...
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 ...
12
votes
7answers
9k views
Compression library using Nvidia's CUDA
Does anyone know a project which implements standard compression methods (like Zip, GZip, BZip2, LZMA,...) using NVIDIA's CUDA library?
I was wondering if algorithms which can make use of a lot of ...
11
votes
4answers
692 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 ...
11
votes
2answers
1k views
Why is CUDA pinned memory so fast?
I observe substantial speedups in data transfer when I use pinned memory for CUDA data transfers. On linux, the underlying system call for achieving this is mlock. From the man page of mlock, it ...
11
votes
5answers
783 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. ...
11
votes
3answers
1k views
What is the best algorithm for this array-comparison problem?
What is the most efficient for speed algorithm to solve the following problem?
Given 6 arrays, D1,D2,D3,D4,D5 and D6 each containing 6 numbers like:
D1[0] = number D2[0] = number ...
10
votes
2answers
465 views
Exclusive compute mode with OpenCL+NVidia
I have a question to exclusive compute mode with NVidia+OpenCL.
I can set up exclusive compute mode (page 74 from cuda programming guide 3.0) with nvidia-smi on a nvidia-gpu . that means, only one ...
10
votes
5answers
6k views
Passing pointers between C and Java through JNI
At the moment, i'm trying to create a Java-application which uses CUDA-functionality. The connection between CUDA and Java works fine, but i've got another problem and wanted to ask, if my thoughts ...
10
votes
4answers
5k views
CUDA: Wrapping device memory allocation in C++
I'm starting to use CUDA at the moment and have to admit that I'm a bit disappointed with the C API. I understand the reasons for choosing C but had the language been based on C++ instead, several ...
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
190 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
2k views
OpenCL or CUDA Which way to go?
I'm investigating ways of using GPU in order to process streaming data. I had two choices but couldn't decide which way to go?
My criterias are as follows:
Ease of use (good API)
Community and ...
9
votes
7answers
914 views
Getting starting with Parallel programming
So it looks like multicore and all its associated complications are here to stay. I am planning a software project that will definitely benefit from parallelism. The problem is that I have very little ...
9
votes
4answers
5k views
raytracing with CUDA
I'm currently implementing a raytracer. Since raytracing is extremely computation heavy and since I am going to be looking into CUDA programming anyway, I was wondering if anyone has any experience ...
8
votes
2answers
335 views
why is my c program suddenly using 30g of virtual memory?
In top, I noticed that my c program (using CUDA 3.2) has a virtual size of 28g or more (looking at VIRT), on every run right from the beginning. This doesn't make ANY sense to me. The resident memory ...
8
votes
1answer
592 views
How to use graphics memory as RAM? [closed]
Since graphics cards provide large amounts of RAM (0.5GiB to 2GiB) and API access to the GPU is not that difficult with CUDA, Stream and more portable OpenCL I wondered if it is possible to use ...
8
votes
4answers
350 views
“Unrolling” a recursive function?
I'm writing a path tracer in C++ and I'd like to try and implement the most resource-intensive code into CUDA or OpenCL (I'm not sure which one to pick).
I've heard that my graphics card's version of ...
8
votes
2answers
373 views
Python Multiprocessing with PyCUDA
I've got a problem that I want to split across multiple CUDA devices, but I suspect my current system architecture is holding me back;
What I've set up is a GPU class, with functions that perform ...
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 ...
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 ...
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 ...
7
votes
1answer
144 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
2answers
192 views
Stack overflow in CUDA
I have a huge problem with the code I am programming.
I am not an expert, and i asked many people before coming here. corrected a lot of things, too. So, I guess I am ready to show you the code and ...
7
votes
1answer
269 views
Can I use __syncthreads() after having dropped threads?
I made a short and long version of my question if you want more detail.
Short question:
Can I use __syncthreads() in a block where I have purposedly dropped threads using return? Won't that create a ...
7
votes
1answer
591 views
Cuda and OpenGL Interop
I've been reading through the CUDA documentation and it seems to me, that every buffer that needs to interface with OpenGL needs to be created in the glBuffer.
According to the nvidia programming ...
7
votes
6answers
297 views
Best strategy for profiling memory usage of my code (open source) and 3rd party code(closed source)
I am soon going to be tasked with doing a proper memory profile of a code that is written in C/C++ and uses CUDA to take advantage of GPU processing.
My initial thoughts would be to create macros and ...
7
votes
5answers
627 views
Is there any possibility to write GPU-applications using CUDA under F sharp?
I am interested in using F# for numerical computation. How can I access the GPU using NVIDIA's CUDA standart under F#?
7
votes
4answers
12k views
How do I start a CUDA app in Visual Studio 2010?
Direct Question: How do I create a simple hello world CUDA project within visual studio 2010?
Background: I've written CUDA kernels. I'm intimately familiar with the .vcproj files from Visual ...
7
votes
7answers
486 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
328 views
Porting a project to OpenGL3
I'm working on a C++ cross-platform OpenGL application (Windows, Linux and MacOS) and I am wondering if some of you could share some advices on porting a large application to OpenGL 3. The reason I am ...
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
4answers
4k views
How Do You Profile & Optimize CUDA Kernels?
I am somewhat familiar with the CUDA visual profiler and the occupancy spreadsheet, although I am probably not leveraging them as well as I could. Profiling & optimizing CUDA code is not like ...
7
votes
6answers
2k views
Computing the null space of a matrix as fast as possible
I need to compute the nullspace of several thousand small matrices (8x9, not 4x3 as I wrote previously) in parallel (CUDA). All references point to SVD but the algorithm in numerical recipes seems ...
6
votes
2answers
204 views
How is CUDA memory managed?
When I run my CUDA program which allocates only a small amount of global memory (below 20 M), I got a "out of memory" error. (From other people's posts, I think the problem is related to memory ...
6
votes
4answers
275 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
...