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 immediately upon buffer creation vs. later? ie.

cl_mem memObj = clCreateBuffer( context, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR
, size, dataPtr, NULL);

or

cl_mem memObj = clCreateBuffer( context, CL_MEM_READ_ONLY , size, NULL, NULL);
clEnqueueWriteBuffer( commandQueue, memObj, CL_TRUE, 0, size, dataPtr, 0, NULL, NULL);

I'm brand new to OpenCL, so I'm just trying to figure things out ie. which method is best to use.

Thanks!

link|improve this question

oops, yes this is a duplicate – wallacer Apr 30 '11 at 6:16
feedback

closed as exact duplicate by Jeff Atwood Apr 30 '11 at 6:14

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

The whole point of the create/enqueue thing (in general, not just in opencl) is that once you create a buffer, you can write to it later after you compute what you want to write, and write an arbitrary number of times. There's no functional difference between initializing a buffer with data in it and making a buffer and then adding the data. Futhermore, any performace difference should be optimized away by your compiler.

link|improve this answer
feedback

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