Tagged Questions

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 ...
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 ...
5
votes
3answers
2k views

OpenCL and GPU programming Roadmap

i would like to start stating that i know nothing of OpenCL/GPU programming but i am a advanced C# (general .Net) programmer without fear of C++ and i would like to learn OpenCL/GPU programming... my ...
4
votes
3answers
273 views

GPU Programming?

I'm new to the GPU Programming world, I've tried reading on Wikipedia and Googling, but I still have several questions: I downloaded some GPU Examples, for CUDA, there were some .cu files and some ...
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
430 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 ...
4
votes
1answer
1k views

RAR password recovery on GPU using ATI Stream processor

I'm newbie in GPU programming , and i work on brute force RAR Password Recovery on ATI Stream Processor using brook+ language, but i see that the kernel written in brook+ language doesn't allow any ...
4
votes
4answers
594 views

suggestions on a project in C++ / distributed systems / networks

I'd like to work on a 2-3 month long project (full time) that involves coding in C++ and is related to networks (protocol stacks). I was considering writing my own network stack but that doesn't seem ...
3
votes
2answers
360 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
4answers
254 views

I've got a Nvidia GPU, how can i code on it?

I've never really been into GPUs, not being a gamer but im aware of their parallel ability and wondered how could i get started programming on one? I recall (somewhere) there is a CUDA C-style ...
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
6answers
679 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
1answer
65 views

iPhone Large Matrix Multiplication on GPU

I've designed a learning AI for use in a iPad game but its prototype is written in matlab. I need to perform several actions such as: (capital denotes matrix) A = B > c; A = B * C; A = B' * C; A = ...
2
votes
3answers
268 views

Does Intel support CUDA

I have a very simple Toshiba Laptop with i3 processor. Also, I do not have any expensive graphics card. In the display settings, I see Intel(HD) Graphics as display adapter. I am planning to learn ...
2
votes
1answer
75 views

Will i use the power of GPU when using a OpenGL program?

I've got a pretty old ATI HD 3400 video card , which have no support of OpenCL , so i'm wondering if i can actually play around with OpenGL libraries provided by ATI catalyst driver ? If my algorithm ...
2
votes
1answer
150 views

GLSL fragment processing order for full screen quad

I'm using GLSL for some image processing stuff, so drawing a full screen quad and doing processing in the fragment shader. I'm wondering if we can expect fragments to be processed in any particular ...
2
votes
1answer
197 views

CUDA: please help me to find error in my code

There's code, that uses GPU: __global__ void gpu_process(float* input, float* weights, float* output, int psize, int size) { int i = blockIdx.x*blockDim.x + threadIdx.x; int j = ...
2
votes
2answers
891 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
162 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
110 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
1answer
155 views

Uploading Vertex and Index buffer to the GPU

I am creating a terrain engine and currently I am uploading the whole terrain VB (Vertex Buffer) and IB (Index Buffer) to the GPU at once since the terrain is not huge. It's 256x256 at the moment. ...
1
vote
2answers
216 views

GPU hiding memory access times

I'm aware that GPUs generally have high memory access times. However, performance isn't greatly hampered as the access time is 'hidden' by executing other instructions whilst waiting for the memory ...
1
vote
2answers
315 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
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
4answers
446 views

Developing with OpenCl on ATI and Nvidia on the same time

our workgroup is slowly trying a little bit of OpenCl in a side project. So far 'everybody' is working on NVIDIA Quadro FX 580. Now we are planning to buy new computers for new colleages and instead ...
1
vote
1answer
199 views

How to determine if an application is using the GPU

I'm looking for a way to determine how to know whether an application is using the GPU with Objective-C. I want to be able to determine if any applications currently running on the system have work ...
1
vote
2answers
1k views

Why do I get a CL_MEM_OBJECT_ALLOCATION_FAILURE?

I'm allocating a cl_mem buffer on a GPU and work on it, which works fine until a certain size is exceeded. In that case the allocation itself succeeds, but execution or copying does not. I do want to ...
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
2answers
75 views

Is there any Matlab toolbox for neural network that can run on GPU?

I tried with GPUmat, but the neural network toolbox from mathworks does´t support it. Otherwise I must change the nn-toolbox by myself. But it´s too hard for me. Any suggestion for me? Thank you! ...
0
votes
1answer
47 views

Different image block sizes using the GPU

I wish to apply filter motion for certain number of iteration on different images, each image will be divided into different block size. For example, if the image size is 1024*870,,How to divide ...
0
votes
1answer
40 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
1answer
136 views

How to build CUDA 4.0 samples with Visual Studio?

I'm using Visual Studio 2010 and want to build the examples under C:\ProgramData\NVIDIA Corporation\NVIDIA 4.0 GPU Computing Toolkit\C\src. I had lots of problems regarding include files, but they ...
0
votes
1answer
63 views

How to add common/inc folder to a CUDA project at Visual Studio?

I want to develop gpu computing algorithms using CUDA. I'm using Visual Studio 2010 Ultimate edition. After I install all the computing tools and SDK with samples, I see under project types ...
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
4answers
293 views

Java on GPU: Complete Method directly on GPUin plain Java

Firstly: Is it possible to use Java and let it (partly) run on or use GPUs? And if it's possible, is it possible to use the normal Java syntax and not using special cuda or opencl syntax? I want just ...
0
votes
1answer
256 views

Number of wavefronts that can fit on a SIMD

I'm reading an article about an AMD GPU and am confused by a particular example. Given a SIMD unit with a number of registers, how many wavefronts can occupy a SIMD if they require x amount of ...
0
votes
1answer
77 views

SIMT warp question

I'm having a bit of trouble understanding SIMT execution on a GPU. So far I have that threads are placed in 'warps' (eg. 32 threads/warp). These threads will be of the same type and can run in ...
0
votes
1answer
73 views

PyCUDA kernel timing errors

Simple enough start=cuda.Event() func(args,block=blockdims) cuda.memcpy_dtoh(d,h) end=cuda.Event() dur=start.time_till(end) print dur But I'm getting this error File "gpu.py", line 161, in ...
0
votes
2answers
249 views

Is it possible to use GPU for raytracing without CUDA/OpenCL etc?

I'm working on Windows Phone 7 which does not support features like CUDA or OpenCL. I'm new to the GPU side of things, Is there anything on the GPU that I can use to help speed up raytracing? Like ...
0
votes
4answers
1k views

CUDA kernels consistently returning bad results

I am a CUDA beginner who has successfully compiled and run several code samples using CUDA libraries such as CUFFT and CUBLAS. Lately, however, I have been trying to generate my own simple kernels ...
0
votes
3answers
241 views

Is there any online compiler with executer that would compile apps that use GPU speciffic C/C++ code?

Generally I need some online compiler that can compile and execute provided program and output execution speed and other statistics. All program can be in one C file and it would use any GPU C/C++ ...
0
votes
1answer
80 views

Benchmarking image enhancing algorithm

I have an algorithm that enhances images taken in low light and uses GPU for the computations. I need to benchmark the algorithm to see how many instructions or triangles it uses on a GPU? Any ideas ...
0
votes
1answer
656 views

Is it possible to make Flash 100% GPU accellerated, even if outside the browser?

I'm trying to figure out the extent of flash 10's GPU acceleration capabilities. Is it possible to get 100% of your code GPU accelerated, or is only certain sandboxed functions? Even if I have to go ...
-2
votes
2answers
211 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 ...