Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Exactly as the title suggests I am looking for how to effectively swap two OpenCL buffers. My kernel uses two gloabl buffers, one as input and one as output. However, I invoke my kernel in a for loop with the same NDRange, each time setting the kernel arguments, enqueueing the kernel, and swapping the buffers because the previous output buffer will be the input buffer seed for the next iteration.

What is the appropriate way here, to swap these two buffers? I imagine that copying the buffer back to the host to one of the already malloc'd arrays and copying it into the next input buffer using clEnqueueWriteBuffer() and clEnqueueReadBuffer() is an inefficient way to go. Otherwise I am just using a temporary cl_mem variable to do my swapping.

share|improve this question

1 Answer

up vote 4 down vote accepted

You don't need to, just set the right kernel args using clSetKernelArg before enqueuing your kernel a second time (using clEnqueueNDRangeKernel). The buffers will stay on the device, nothing will be copied back to the host.

Your buffer has to be created with CL_MEM_READ_WRITE in this case of course.

share|improve this answer
Well I thought about that. But it seems I would have to alternate the input and output kernel args every iteration no? – user985609 Jun 14 '12 at 21:16
1  
Yes - you will. Swap and set them on each iteration. This is ping-ponging (mathematik.uni-dortmund.de/~goeddeke/gpgpu/…) – ananthonline Jun 14 '12 at 21:20
Ok well I certainly thought about that. But sorry if I didnt make it clear in my question. "Second time" implies two times. Not millions. Otherwise what is the point of massive parallelism. Thanks to you both. – user985609 Jun 14 '12 at 21:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.