Tagged Questions

10
votes
6answers
1k views

How do I test OpenCL on GPU when logged in remotely on Mac?

My OpenCL program can find the GPU device when I am logged in at the console, but not when I am logged in remotely with ssh. Further, if I run the program as root in the ssh session, the program can ...
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 ...
5
votes
2answers
451 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
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 ...
3
votes
1answer
124 views

Kernel code is not working for NVIDIA GPU but working in CPU mode

Recently I've tried to run a program, which was correctly compiled and executed on AMD Radeon 5670 GPU which is running Windows 7. Now, when I wanted to run on NVIDIA GPU Tesla 2500, it was not ...
3
votes
0answers
184 views

Candidate Excel Functions for GPU acceleration [closed]

I'm currently looking into writing an OpenCL Excel plugin. This would expose a set of functions that offer calculations to be performed on the GPU from Excel. As a proof of concept I've written an ...
3
votes
2answers
314 views

Is there really a timeout for kernels on nvidia gpus?

searching for answers for why my kernels produce strange error messages or "0" only results I found this answer on SO that mentions that there is a timeout of 5s for kernels running on nvidia gpus? I ...
3
votes
6answers
2k views

Can we benchmark how fast CUDA or OpenCL is compared to CPU performance?

How much faster can an algorithm on CUDA or OpenCL code run compared to a general single processor core? (considering the algorithm is written and optimized for both the CPU and GPU target). I know ...
2
votes
2answers
895 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
60 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
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
3answers
918 views

OpenCL doesn't find ATI card

I have a notebook with ATI Mobility Radeon HD 5650, and want to use the card for computing =) After installing AMD APP SDK v.2 (installation was OK) I tried to run code samples, provided with AMD. But ...
1
vote
2answers
217 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
317 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
141 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
268 views

OpenCL fake bitfield

Is it possible AT ALL? I know that OpenCL doesn't support normal bitfields right now. Could there be a way to get a definite 64-bits out of bool myBool[64] or something like union newType{ ...
1
vote
1answer
173 views

How to calculate the cost of calculations in CPU vs. cost of sending the data to GPU+performing calculations+getting data back?

How to calculate the cost of calculations in CPU vs. cost of sending the data to GPU+performing calculations+getting data back?
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
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 ...
0
votes
2answers
93 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
123 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
2answers
109 views

dealing with files and streams via OpenCL (GPU)

I want to write in a file from the kernel of OpenCL .. something like fwrite() in C .. Are there any function like that .. or what I have to do to write in a file from GPU?
0
votes
2answers
186 views

Elementwise operations in OpenCL (Cuda)

I build a kernel for elementwise multiplication of two matrices, but at least with my configurations my OpenCL kernel is only faster when each matrices is larger than 2GB. So I was wondering, if it is ...
0
votes
2answers
463 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
163 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
61 views

system build research

I'm in the research phase of my next computer build. I have the idea in my head of running a hypervisor as the base of the system, but i would want to be able to take a shot at programming opencl with ...
0
votes
1answer
415 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 ...