Tagged Questions
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 ...
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 ...
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
...
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. ...
4
votes
2answers
254 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
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
426 views
Is there algorithm for sorting array of strings for GPU?
Array to sort has approximately one million strings, where every string can have length up to one million characters.
I am looking for any implementation of sorting algorithm for GPU.
I have a block ...
3
votes
1answer
163 views
Unable to identify some C# syntax with GPU.NET. (VB.NET Programmer)
this is my first post on Stack Overflow, so please excuse or correct any faux pas of mine. Thanks in advance.
I'm translating some example code line by line from C# to VB.NET in an effort to ...
3
votes
2answers
285 views
GPU-based search for all possible paths between two nodes on a graph
My work makes extensive use of the algorithm by Migliore, Martorana and Sciortino for finding all possible simple paths, i.e. ones in which no node is encountered more than once, in a graph as ...
3
votes
6answers
678 views
Is GPGPU a hack?
I had started working on GPGPU some days ago and successfully implemented cholesky factorization with good performacne and I attended a conference on High Performance Computing where some people said ...
2
votes
2answers
308 views
CUDA memcheck address - how to determine location in code?
cuda-memcheck is reporting this information for a release mode CUDA kernel:
========= Error: process didn't terminate successfully
========= Invalid __global__ read of size 4
========= at ...
2
votes
2answers
890 views
Is it possible to use OpenCL for PowerVR SGX530 GPU device?
Is it possible to use OpenCL for PowerVR SGX530 GPU device? I have to write image recognition software that would run on Droid X smartphone. Greatly appreciate if someone could provide links, ...
1
vote
2answers
161 views
GL/CL interoperability: Shared Texture [closed]
I intend to make Graphics calculation with OpenCL such as ray casting, ray marching and others. And I want to use OpenGL to display result of this calculations (pixel images). I use texture buffer ...
1
vote
1answer
59 views
independent searches on GPU — how to synchronize its finish?
Assume I have some algorithm generateRandomNumbersAndTestThem() which returns true with probability p and false with probability 1-p. Typically p is very small, e.g. p=0.000001.
I'm trying to build a ...
1
vote
1answer
93 views
Strange behavior with NVIDIA CUDA 4.1 RC2 and Parallel NSight 2.1
I am having a strange problem debugging my CUDA code in Nsight 2.1. I have two global functions that get called from my main.cu like so:
dim3 block(threadsPerBlock);
dim3 grid(numBlocks);
...
1
vote
1answer
108 views
simple CUDA program execution without GPU harware using NVIDIA GPU computing SDK 4.0 and microsft VC++ 2010 express
I am new to GPU computing , but somewhere I've read that it's possible to execute a CUDA program without a GPU card using a simulator/ emulator. I have installed NVIDIA's GPU Computing SDK 4.0 and ...
1
vote
4answers
88 views
A question about the details about the distribution from blocks to SMs in CUDA
Let me take the hardware with computation ability 1.3 as an example.
30 SMs are available. Then at most 240 blocks are able to be running at the same time(Considering the limit of register and shared ...
1
vote
1answer
179 views
CUDA Convex Hull program crashes on large input
I am trying to implement quickHull algorithm (for convex hull) parallely in CUDA. It works correctly for input_size <= 1 million. When I try 10 million points, the program crashes. My graphic card ...
1
vote
2answers
83 views
Is there method able to block some blocks until some conditions satisfied?
I want to block some blocks until one variable is set to a particular value. So I write this code to test if a simple do-while loop will work.
__device__ int tag = 0;
__global__ void kernel() {
...
1
vote
1answer
72 views
Is Myers Diff amenable to running on GPUs?
I'm interested in making a faster Myers diff implementation by running it on a GPU, i.e. with OpenCL. I have a good understanding of the algorithm but am new to GPU programming. My hunch is that the ...
1
vote
2answers
311 views
Conditionals in GPU programming
I have a quick question. If you have work items executing in a wavefront and there is a conditional such as:
if(x){
...
}
else{
....
}
What do the work-items execute? is it ...
1
vote
1answer
137 views
OpenCL to search array and set a flag
I'm brand new to using OpenCL, and this seems like it should be very simple, so bear with me.
I'm writing a simple kernel to scan an array and look for a particular value. If that value is found ...
1
vote
3answers
211 views
How to launch another thread from OpenCL code?
My algorithm consists from two steps:
Data generation. On this step I generate data array in cycle as some function result
Data processing. For this step I written OpenCL kernel which process data ...
1
vote
2answers
868 views
ATI Stream SDK on ubuntu 9.04
I have used ATI Stream SDK on windows XP SP3 and implemented one algorithm on GPU. But Now I am interested in scaling this algorithm on multiple GPUs on mutiple machines I switched to UBUNTU to use ...
0
votes
1answer
39 views
What are the seminal papers/books on GPGPU computing?
I'm looking for the best books/paper on general purpose GPU computing, I wonder if any of you
know of any particularly seminal works.
Thanks very much
0
votes
2answers
91 views
OpenCL structure declarations in different memory spaces
In OpenCL what will be the consequences and differences between the following struct declarations. And if they are illegal, why?
struct gr_array
{
int ndims;
__global m_integer* dim_size;
...
0
votes
2answers
120 views
Repeated calling of enqueueNDRangeKernel in OpenCL
What other OpenCL functions should be called when enqueueNDRangeKernel is called repeatedly?
I have not been able to find a tutorial that shows the use of enqueueNDRangeKernel in this fashion and my ...
0
votes
3answers
278 views
Hash table implementation for GPU
I am looking for a hash table implementation that I can use for CUDA coding. are there any good one's out there. Something like the Python dictionary . I will use strings as my keys
0
votes
2answers
457 views
OpenCL image histogram
I'm trying to write a histogram kernel in OpenCL to compute 256 bin R, G, and B histograms of an RGBA32F input image. My kernel looks like this:
const sampler_t mSampler = ...
0
votes
1answer
162 views
OpenCL write to buffer choices [closed]
Possible Duplicate:
Two ways to create a buffer object in opencl: clCreateBuffer vs. clCreateBuffer + clEnqueueWriteBuffer
What is the difference between copying data to the device ...
0
votes
1answer
414 views
Please recommend a graphics card for GPU programming
I'm looking for a recommendation for a graphics card for use in experimenting with GPU programming. I'm leaning more towards OpenCL over CUDA. Also looking for a card that's reasonably priced (is ...
-2
votes
2answers
209 views
Cuda error: function has already been defined in another .cu.obj file
I am trying to compile a cuda project that someone sent me. Though the compile stage passes, the link stage is failing. Below is an example of the error:
Error 298 error LNK2005: "int __cdecl ...